├── .classpath ├── .project ├── LICENSE ├── README.md ├── lib ├── libsvm.jar ├── weka-src.jar └── weka.jar └── src ├── java └── com │ └── parakweet │ └── emailintent │ └── WekaEmailIntentClassifier.java └── resources ├── Ask0729-fixed.arff.bin ├── Ask0729-fixed.txt ├── testSet-qualifiedBatch-fixed.arff.bin └── testSet-qualifiedBatch-fixed.txt /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParakweetLabs/EmailIntentDataSet/HEAD/.classpath -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParakweetLabs/EmailIntentDataSet/HEAD/.project -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParakweetLabs/EmailIntentDataSet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParakweetLabs/EmailIntentDataSet/HEAD/README.md -------------------------------------------------------------------------------- /lib/libsvm.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParakweetLabs/EmailIntentDataSet/HEAD/lib/libsvm.jar -------------------------------------------------------------------------------- /lib/weka-src.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParakweetLabs/EmailIntentDataSet/HEAD/lib/weka-src.jar -------------------------------------------------------------------------------- /lib/weka.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParakweetLabs/EmailIntentDataSet/HEAD/lib/weka.jar -------------------------------------------------------------------------------- /src/java/com/parakweet/emailintent/WekaEmailIntentClassifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParakweetLabs/EmailIntentDataSet/HEAD/src/java/com/parakweet/emailintent/WekaEmailIntentClassifier.java -------------------------------------------------------------------------------- /src/resources/Ask0729-fixed.arff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParakweetLabs/EmailIntentDataSet/HEAD/src/resources/Ask0729-fixed.arff.bin -------------------------------------------------------------------------------- /src/resources/Ask0729-fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParakweetLabs/EmailIntentDataSet/HEAD/src/resources/Ask0729-fixed.txt -------------------------------------------------------------------------------- /src/resources/testSet-qualifiedBatch-fixed.arff.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParakweetLabs/EmailIntentDataSet/HEAD/src/resources/testSet-qualifiedBatch-fixed.arff.bin -------------------------------------------------------------------------------- /src/resources/testSet-qualifiedBatch-fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParakweetLabs/EmailIntentDataSet/HEAD/src/resources/testSet-qualifiedBatch-fixed.txt --------------------------------------------------------------------------------