Model loader for a Generic user made python model implementation.
The model should provide two functions:
- classify - That takes an array of instances and returns an array with the classification of each one.
- getClassDistribution - That takes an array of instances and returns an array with the class
probability distribution of each one.
The main class of the model should be named "Classifier" and be located on a file named "classifier.py" in the root
of the folder that contains the model implementation (passed in
modelPath).