user7833156
user7833156

Reputation: 1

Conversion of H2O flow model to Python script

I am new to H2O and Python. I have designed a deep learning model in H2O flow. Can I convert same model in Python directly? I am looking for the python code behind my H2O flow model.

Upvotes: 0

Views: 321

Answers (1)

vaclav
vaclav

Reputation: 191

Flow and Python are different ways how to use H2O platform so you cannot directly export the Flow notebook into Python, but you can very easily rewrite it into Python as the underlying functionality (calls to the platform) are the same. Have a look at the demo or the Python API Booklet.

Upvotes: 1

Related Questions