We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
e.g.
def upload_byom(model_name: str, model_file: str, requirements_file: str) Will require an update to our byom upload endpoint
def upload_byom(model_name: str, model_file: str, requirements_file: str)
The text was updated successfully, but these errors were encountered:
byom upload creates the new ml engine
Maybe is better to:
byom_engine = con.ml_engines.create_byom(model_code: str, requirements_code: str)
or
byom_engine = con.ml_engines.create_byom(path_to_model_code: str, path_to_model_requirements: str)
Also we can try to implement option to extract code and requirements from module
byom_engine = con.ml_engines.create_byom(<imported python module or class>)
Sorry, something went wrong.
byom support
0a94418
#76
ea-rus
Successfully merging a pull request may close this issue.
e.g.
def upload_byom(model_name: str, model_file: str, requirements_file: str)
Will require an update to our byom upload endpoint
The text was updated successfully, but these errors were encountered: