-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathrun.sh
More file actions
executable file
·24 lines (20 loc) · 769 Bytes
/
run.sh
File metadata and controls
executable file
·24 lines (20 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
## Compile as 'javac -d bin/ -classpath .:libs/* -Xlint `find src | grep java$`'
## Uses 1G of memory and specialized garbage collector for parallel programs.
java -Xms1g -Xmx1g -XX:+UseTLAB -XX:+UseConcMarkSweepGC -cp .:bin/:libs/* main.RAEBuilder \
-DataDir data/mov \
-MaxIterations 20 \
-ModelFile data/mov/tunedTheta.rae \
-ClassifierFile data/mov/Softmax.clf \
-NumCores 3 \
-TrainModel True \
-ProbabilitiesOutputFile data/mov/prob.out \
-TreeDumpDir data/mov/trees
#java -Xms1g -Xmx1g -XX:+UseTLAB -XX:+UseConcMarkSweepGC -cp .:bin/:libs/* main.RAEBuilder \
#-DataDir data/
#-MaxIterations 80
#-ModelFile data/mov/tunedTheta.rae
#-ClassifierFile data/mov/Softmax.clf
#-NumCores 2
#-TrainModel False
#-ProbabilitiesOutputFile data/tiny/prob.out