You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One specific task is:
model.deploy can deploy the astore model but we need one API to load them
with open('c:/temp/Simple_CNN.astore', mode='rb') as file:
fileContent = file.read()
store_ = sw.blob(fileContent)
s.astore.upload(rstore='test',store = store_)
The above codes are repeated many times. I think we should have a new API to upload the astore model.
The text was updated successfully, but these errors were encountered:
One specific task is:
model.deploy can deploy the astore model but we need one API to load them
with open('c:/temp/Simple_CNN.astore', mode='rb') as file:
fileContent = file.read()
store_ = sw.blob(fileContent)
s.astore.upload(rstore='test',store = store_)
The above codes are repeated many times. I think we should have a new API to upload the astore model.
The text was updated successfully, but these errors were encountered: