forked from LightSideWorkbench/LightSide
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLightSIDE.bat
18 lines (11 loc) · 891 Bytes
/
LightSIDE.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@echo off
(echo Launching LightSide! Console output and errors are being saved to lightside_log.) >CON
set memory=1G
set other_args=-XX:+UseConcMarkSweepGC -Dswing.defaultlaf=com.sun.java.swing.plaf.windows.WindowsLookAndFeel
set classpath="bin;plugins/genesis.jar;lib/*;lib/xstream/*"
set wekafiles=wekafiles/packages/chiSquaredAttributeEval/chiSquaredAttributeEval.jar;wekafiles/packages/bayesianLogisticRegression/bayesianLogisticRegression.jar;wekafiles/packages/LibLINEAR/lib/liblinear-java-1.96-SNAPSHOT.jar;wekafiles/packages/LibLINEAR/LibLINEAR.jar;wekafiles/packages/LibSVM/lib/libsvm.jar;wekafiles/packages/LibSVM/LibSVM.jar
set splash=toolkits/icons/logo.png
set mainclass=edu.cmu.side.Workbench
( echo %date% %time%
java.exe -Xmx"%memory%" %other_args% -splash:"%splash%" -classpath "%classpath%";"%wekafiles%" "%mainclass%"
) >>lightside_log.log 2>&1