Rubric

Find Rubric
PA5 Decision tree
PA5 Decision tree
Criteria Ratings
the decision tree program compiles and/or runs without error
passing
not passing
the source code is well organized and commented
passing
not passing
each source code file includes a header indicating who wrote or contributed to the code
passing
not passing
code from any external sources, or code that relied on outside influence, includes a citation in a comment just above the corresponding code
passing
not passing
the code is built off of the code base we built in class
passing
not passing
there is an implemented, working decision tree program
passing
not passing
in training mode, the decision tree program supports an optional feature to adjust epsilon (the allowed change in accuracy during pruning)
passing
not passing
in the decision tree program, the `prune` method is correctly implemented
passing
not passing
in the decision tree program, the `evaluate` method is correctly implemented
passing
not passing
in the decision tree program, the `findBestThreshold` method is correctly implemented
passing
not passing
in prediction mode, the decision tree program supports an option for outputting class label confidence scores (one per distinct label in the training data) instead of label predictions
passing
not passing
in prediction mode, the decision tree program supports an option for outputting class label confidence scores (one per distinct label in the training data) instead of label predictions; these are listed in a consistent order
passing
not passing
the decision tree program has an accurate "help" message if the wrong number of required command line arguments are provided
passing
not passing
the submission includes a README.md file
passing
not passing
the README.md file describes how to compile (if Java) and run your program
passing
not passing
the README.md file describes what command line arguments, if any, are available
passing
not passing
the README.md file includes a section that states who worked on the project
passing
not passing
the README.md file includes a section that describes the performance of three runs: training on `sms/train.csv` and testing on `sms/dev.csv` with the epsilon values 0, 0.05, and 0.10
passing
not passing