Search code examples
pythondocumentationh2o

Python: h2o detailed documentation


I feel really dumb right now, but, what I am dealing with for the last 15 minutes is that I want to find detailed h2o documentation.

My problem is that I have h2o.save_model() method and I want to know, which parameters to use and how. So, I wrote "python h2o.save_model()" to Google and I was expecting something similar to this in case of writing "python pandas.DataFrame.groupby". However, the only link I found is this one, which does not provide a detailed description of a method.

What am I doing wrong? Does detailed h2o documentation exist? If so, could you provide me a link, please?


Solution

  • I guess that's what you're looking for: http://docs.h2o.ai/h2o/latest-stable/h2o-py/docs/h2o.html#h2o.save_model

    Please also note that you can access clients documentation from http://docs.h2o.ai/h2o/latest-stable/h2o-docs/api-reference.html (agree that it's a bit hidden...).

    Like for any other Python function, you could also use help(h2o.save_model) from the Python repl, or h2o.save_model?? from IPython/Jupyter.