Advertisement
Guest User

Model FIles

a guest
Mar 30th, 2022
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. ******** conda.yaml ********
  2. channels:
  3. - conda-forge
  4. dependencies:
  5. - python=3.6.11
  6. - pip
  7. - pip:
  8. - mlflow
  9. - scikit-learn==0.22.2.post1
  10. - cloudpickle==1.6.0
  11. name: mlflow-env
  12.  
  13. ******** MLmodel ********
  14.  
  15. artifact_path: <>
  16. flavors:
  17. python_function:
  18. env: conda.yaml
  19. loader_module: mlflow.sklearn
  20. model_path: model.pkl
  21. python_version: 3.6.11
  22. sklearn:
  23. pickled_model: model.pkl
  24. serialization_format: cloudpickle
  25. sklearn_version: 0.22.2.post1
  26. run_id: <>
  27. utc_time_created: '2022-03-29 07:12:54.364145'
  28.  
  29. ******* requirements.txt *******
  30. mlflow
  31. scikit-learn==0.22.2.post1
  32. cloudpickle==1.6.0
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement