flodussart commited on
Commit
164f970
·
1 Parent(s): c7a7bcc
model_bundle/model/MLmodel ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ artifact_path: model
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.12.3
11
+ sklearn:
12
+ code: null
13
+ pickled_model: model.pkl
14
+ serialization_format: cloudpickle
15
+ sklearn_version: 1.7.2
16
+ mlflow_version: 2.9.2
17
+ model_size_bytes: 1024217
18
+ model_uuid: fbd87ce7587c4bc9af89a2cd1a641c46
19
+ run_id: 31dc5fd4868d4e8b8eb76736b79b4f7f
20
+ utc_time_created: '2025-10-26 10:52:57.335412'
model_bundle/model/conda.yaml ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ channels:
2
+ - conda-forge
3
+ dependencies:
4
+ - python=3.12.3
5
+ - pip<=25.2
6
+ - pip:
7
+ - mlflow==2.9.2
8
+ - cffi==1.16.0
9
+ - click==8.1.8
10
+ - cloudpickle==2.2.1
11
+ - cytoolz==0.12.2
12
+ - dask-expr==1.1.0
13
+ - defusedxml==0.7.1
14
+ - distributed==2024.5.0
15
+ - graphviz==0.20.3
16
+ - jinja2==3.1.6
17
+ - lightgbm==4.6.0
18
+ - lz4==4.3.2
19
+ - matplotlib==3.8.4
20
+ - numpy==1.26.4
21
+ - packaging==23.2
22
+ - pandas==2.2.3
23
+ - pyarrow==14.0.2
24
+ - python-snappy==0.6.1
25
+ - pyyaml==6.0.1
26
+ - scikit-learn==1.7.2
27
+ - scipy==1.13.1
28
+ - xxhash==3.5.0
29
+ - zstandard==0.22.0
30
+ name: mlflow-env
model_bundle/model/model.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59019bf878ec9fe6b25dc236d357788aa483ba4ecd6873931dea9d49322db680
3
+ size 1024217
model_bundle/model/python_env.yaml ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ python: 3.12.3
2
+ build_dependencies:
3
+ - pip==25.2
4
+ - setuptools==69.5.1
5
+ - wheel==0.43.0
6
+ dependencies:
7
+ - -r requirements.txt
model_bundle/model/requirements.txt ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ mlflow==2.9.2
2
+ cffi==1.16.0
3
+ click==8.1.8
4
+ cloudpickle==2.2.1
5
+ cytoolz==0.12.2
6
+ dask-expr==1.1.0
7
+ defusedxml==0.7.1
8
+ distributed==2024.5.0
9
+ graphviz==0.20.3
10
+ jinja2==3.1.6
11
+ lightgbm==4.6.0
12
+ lz4==4.3.2
13
+ matplotlib==3.8.4
14
+ numpy==1.26.4
15
+ packaging==23.2
16
+ pandas==2.2.3
17
+ pyarrow==14.0.2
18
+ python-snappy==0.6.1
19
+ pyyaml==6.0.1
20
+ scikit-learn==1.7.2
21
+ scipy==1.13.1
22
+ xxhash==3.5.0
23
+ zstandard==0.22.0