Reputation: 3057
I run the following command: java weka.core.converters.CSVLoader filename.csv > filename.arff
but i have an error telling me: Could not find or load main class weka.core.converters.CSVLoder.
What is the problem?
Upvotes: 1
Views: 2075
Reputation: 1105
The problem is in my opinion that weka.jar is not in your classpath.
You can either add weka.jar to your classpath, or run the same command but adding the classpath for weka:
java -cp "%CLASSPATH;C:\progs\Weka-3-6\weka.jar" weka.core.converters.CSVLoader filename.csv > filename.arff
Upvotes: 4