*/
public static PredictiveModel getPredictiveModel(ModelTypes implementation, File file) throws Exception {
PredictiveModel predModel = getPredictiveModel(implementation);
if(predModel == null)
throw new InvalidModelException();
// Set File
if(!file.exists()) {
throw new Exception("Model File not found! " + file.getAbsolutePath());
}