Model Uploads
Free, zero-setup automation
Introduction
How it works
1. Trained Model
2. Prediction Pipeline
# Wrap your model with a function that takes live features and returns live predictions
def predict(
live_features: pd.DataFrame,
live_benchmark_models: pd.DataFrame
) -> pd.DataFrame:
live_predictions = model.predict(live_features[feature_cols])
submission = pd.Series(live_predictions, index=live_features.index)
return submission.to_frame("prediction")3. Cloudpickle
4. Upload the Pickle





5. Running Daily
6. Disabling the Pickle
FAQ
What versions of Python/packages work?
Can my model access the internet?
What are the Mem / CPU limitations?
Can I still upload predictions manually?
Can I have a webhook on my model?
Does Numerai have full access to my trained model?
Can I re-download my pickled model?


Terms of service
Last updated



