Compare commits
No commits in common. "ac6400e93aa040e9e9c9faed5f04770275ac1878" and "578f0ceea10ea591c21a469af185b53ee0b5fa29" have entirely different histories.
ac6400e93a
...
578f0ceea1
|
@ -64,7 +64,7 @@ def pull_model(server_uri: str,
|
|||
print(f'input data: {fake_data}, predictions: {output}')
|
||||
|
||||
# save it to local file system
|
||||
mlflow.pyfunc.save_model(path=f'./model/{exp_name}', python_model=model)
|
||||
mlflow.pyfunc.save_model(path='./model', python_model=model)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
|
@ -21,7 +21,7 @@ def main():
|
|||
print(my_fortune)
|
||||
|
||||
# save model and env to local file system
|
||||
mlflow.pytorch.save_model(model, './model/fortune_predict_model')
|
||||
mlflow.pytorch.save_model(model, './model')
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue