- Timestamp:
- Oct 9, 2010, 12:24:38 PM (14 years ago)
- Location:
- script
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
script/ripetiprova.sh
r25 r26 1 1 #!/bin/bash 2 2 index=0 3 execution= 53 execution=10 4 4 file=../../reteUtentiMikeHidden.arff 5 5 lib=../../lib/* … … 7 7 curDir=`pwd` 8 8 9 outputFolder=$curDir/output/ random/10 prefixOutput= random11 random= true9 outputFolder=$curDir/output/metis/ 10 prefixOutput=metis 11 random=false 12 12 13 suffixOutput=. dat13 suffixOutput=.xml 14 14 15 15 cd $bin … … 17 17 do 18 18 echo "Clustering task #$index" 19 java -Xms256m -Xmx1024m -cp .:$lib weka.clusterers.MetisMQIClusterer -V 0 -R $random -S 100 -N 50 -t $file > $outputFolder$prefixOutput$index$suffixOutput 19 fileOutput=$outputFolder$prefixOutput$index$suffixOutput 20 logOutput=$outputFolder$prefixOutput$index.log 21 java -Xms256m -Xmx1024m -cp .:$lib weka.clusterers.MetisMQIClusterer -V 0 -R $random -S 100 -N 30 -o $fileOutput -t $file >> $logOutput 20 22 index=`expr $index + 1` 21 23 done
Note: See TracChangeset
for help on using the changeset viewer.