H2O is an Open Source, Distributed, Fast & Scalable Machine Learning Platform: Deep Learning, Gradient Boosting (GBM) & XGBoost, Random Forest, Generalized Linear Modeling (GLM with Elastic Net), K-Means, PCA, Generalized Additive Models (GAM), RuleFit, Support Vector Machine (SVM), Stacked Ensembles, Automatic Machine Learning (AutoML), etc.
Just an FYI, if it helps anyone else using the API in Simons or more recent:
when you do a /99/Models.bin request with the model_id and the directory, you actually have to pass the model_id twice, once as a regular parameter, but also as part of the actual call
so if your model_id is AWESOMEMODEL and directory is DIR, you'd need to do:
Just an FYI, if it helps anyone else using the API in Simons or more recent:
when you do a /99/Models.bin request with the model_id and the directory, you actually have to pass the model_id twice, once as a regular parameter, but also as part of the actual call
so if your model_id is AWESOMEMODEL and directory is DIR, you'd need to do:
/99/Models.bin/AWESOMEMODEL?model_id=AWESOMEMODEL&dir=DIR
or at least that's what worked for me