Last active
December 6, 2019 20:52
-
-
Save AlexTitovWork/55d45eb366275b3d99847efc84bcc2f4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private static Logger LOGGER = Logger.getLogger("DebitCreditInternalSystem"); | |
private FilteredClassifier classifier; | |
/** | |
* Declare train and test data Instances | |
*/ | |
private Instances trainData; | |
/** | |
* Declare Instance's attributes | |
*/ | |
private ArrayList<Attribute> wekaAttributes; | |
private static final String TRAIN_DATA = "dataset/train_income_outcome.txt"; | |
private static final String TRAIN_ARFF_ARFF = "dataset/train_income_outcome.arff"; | |
private static final String TEST_DATA = "dataset/test_income_outcome.txt"; | |
private static final String TEST_DATA_ARFF = "dataset/test_income_outcome.arff"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment