Problems with storing metadata with omegaml backend

edited October 2020 in Ask anything

I was trying to fit and generate model. It was fitted successfully but was not generated after.

According to this tutorial I have created a getinfo.txt file.

Could someone, please, explain what went wrong?

Comments

  • edited October 2020

    I was trying to fit and generate model. It was fitted successfully but was not generated after.

    if you fit your model from an omega|ml shell and then try to save it, what is the result? Likewise, what is the result of loading it back?

    e.g.

    $ om shell
    (python console, can also do this in Jupyter)
    [] #create and fit your model
       model = ...
       model.fit()
    
    # save
    [] meta = om.models.put(model, 'mymodel') 
       print(meta)     
    
    # load back
    [] model_ = om.models.get('mymodel')
       print(model_)    
    


Sign In or Register to comment.