Skip to content

Instantly share code, notes, and snippets.

@AlexTitovWork
Last active December 6, 2019 20:52
Show Gist options
  • Save AlexTitovWork/55d45eb366275b3d99847efc84bcc2f4 to your computer and use it in GitHub Desktop.
Save AlexTitovWork/55d45eb366275b3d99847efc84bcc2f4 to your computer and use it in GitHub Desktop.
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