Dchris
Dchris

Reputation: 3057

Cannot convert .csv to .arff file

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

Answers (1)

chech
chech

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

Related Questions