Closed sebhrusen closed 4 years ago
added small tutorial explaining how to create a small Java plugin for AutoML and how to use those extensions with the Python (and R) clients.
see https://github.com/h2oai/h2o-tutorials/blob/automl_plugin/tutorials/automl/h2oautoml_plugin/automl_plugin.ipynb to have a better look at the notebook.
Otherwise, the tutorial is standalone, with a small Makefile to build and run the plugin locally:
Makefile
tutorials/automl `-- h2oautoml_plugin |-- Makefile |-- automl_plugin.ipynb `-- src |-- META-INF | `-- services | `-- ai.h2o.automl.ModelingStepsProvider `-- my `-- automl |-- MyDRFStepsProvider.java `-- MyGLMStepsProvider.java
Hey @sebhrusen, my recommendation after talking with @angela0xdata is to put this in the following folder: ./tutorials/automl/java_plugin
./tutorials/automl/java_plugin
@ledell sure, makes sense, will rename it
added small tutorial explaining how to create a small Java plugin for AutoML and how to use those extensions with the Python (and R) clients.
see https://github.com/h2oai/h2o-tutorials/blob/automl_plugin/tutorials/automl/h2oautoml_plugin/automl_plugin.ipynb to have a better look at the notebook.
Otherwise, the tutorial is standalone, with a small
Makefile
to build and run the plugin locally: