Development Tips
Running locally for testing
class MyModel:
def predict(self, X, features_names=None):
"""
Return a prediction.
Parameters
----------
X : array-like
feature_names : array of feature names (optional)
"""
print("Predict called - will run identity function")
return XLast updated
Was this helpful?