abhishekrs4 commited on
Commit
b9e36da
1 Parent(s): 7d84b5f

added model for production

Browse files
model_for_production/MLmodel ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ artifact_path: simple_light_gbm
2
+ flavors:
3
+ python_function:
4
+ env:
5
+ conda: conda.yaml
6
+ virtualenv: python_env.yaml
7
+ loader_module: mlflow.sklearn
8
+ model_path: model.pkl
9
+ predict_fn: predict
10
+ python_version: 3.8.10
11
+ sklearn:
12
+ code: null
13
+ pickled_model: model.pkl
14
+ serialization_format: cloudpickle
15
+ sklearn_version: 1.3.2
16
+ mlflow_version: 2.10.0
17
+ model_size_bytes: 5569563
18
+ model_uuid: d75b66f1c4434297bc414374ce72daef
19
+ run_id: 592c725ee8b44e668875efc222ebe0bb
20
+ utc_time_created: '2024-02-08 13:24:52.081137'
model_for_production/conda.yaml ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ channels:
2
+ - conda-forge
3
+ dependencies:
4
+ - python=3.8.10
5
+ - pip<=20.0.2
6
+ - pip:
7
+ - mlflow==2.10.0
8
+ - cffi==1.16.0
9
+ - cloudpickle==3.0.0
10
+ - defusedxml==0.7.1
11
+ - lightgbm==4.3.0
12
+ - matplotlib==3.7.4
13
+ - numpy==1.24.4
14
+ - packaging==23.2
15
+ - pandas==2.0.3
16
+ - psutil==5.9.8
17
+ - pyarrow==15.0.0
18
+ - pyyaml==6.0.1
19
+ - scikit-learn==1.3.2
20
+ - scipy==1.10.1
21
+ name: mlflow-env
model_for_production/model.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41ce9e25d22741fc8590e873e85c99e94f7e645a0b37a07a27693b2cacee572b
3
+ size 5569563
model_for_production/python_env.yaml ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ python: 3.8.10
2
+ build_dependencies:
3
+ - pip==20.0.2
4
+ - setuptools==44.0.0
5
+ - wheel
6
+ dependencies:
7
+ - -r requirements.txt
model_for_production/requirements.txt ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ mlflow==2.10.0
2
+ cffi==1.16.0
3
+ cloudpickle==3.0.0
4
+ defusedxml==0.7.1
5
+ lightgbm==4.3.0
6
+ matplotlib==3.7.4
7
+ numpy==1.24.4
8
+ packaging==23.2
9
+ pandas==2.0.3
10
+ psutil==5.9.8
11
+ pyarrow==15.0.0
12
+ pyyaml==6.0.1
13
+ scikit-learn==1.3.2
14
+ scipy==1.10.1