Upload 5 files
Browse files- MLmodel +21 -0
- conda.yaml +14 -0
- model.pkl +3 -0
- python_env.yaml +7 -0
- requirements.txt +7 -0
MLmodel
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
artifact_path: linear_regression_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.13.3
|
11 |
+
sklearn:
|
12 |
+
code: null
|
13 |
+
pickled_model: model.pkl
|
14 |
+
serialization_format: cloudpickle
|
15 |
+
sklearn_version: 1.6.1
|
16 |
+
mlflow_version: 2.22.0
|
17 |
+
model_size_bytes: 510
|
18 |
+
model_uuid: ed4df1247b654a0a93a4422e6be46c07
|
19 |
+
prompts: null
|
20 |
+
run_id: 8bc7734403534595af36eec47a2bff1e
|
21 |
+
utc_time_created: '2025-05-27 07:54:42.217793'
|
conda.yaml
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
channels:
|
2 |
+
- conda-forge
|
3 |
+
dependencies:
|
4 |
+
- python=3.13.3
|
5 |
+
- pip<=25.1.1
|
6 |
+
- pip:
|
7 |
+
- mlflow==2.22.0
|
8 |
+
- cloudpickle==3.1.1
|
9 |
+
- numpy==2.2.4
|
10 |
+
- pandas==2.2.3
|
11 |
+
- psutil==7.0.0
|
12 |
+
- scikit-learn==1.6.1
|
13 |
+
- scipy==1.15.2
|
14 |
+
name: mlflow-env
|
model.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9b2cbc62afe1bc981b28db0bc62c306923c97c4d79b440f5a7ed3e14908f2fb2
|
3 |
+
size 510
|
python_env.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
python: 3.13.3
|
2 |
+
build_dependencies:
|
3 |
+
- pip==25.1.1
|
4 |
+
- setuptools==78.1.0
|
5 |
+
- wheel
|
6 |
+
dependencies:
|
7 |
+
- -r requirements.txt
|
requirements.txt
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
mlflow==2.22.0
|
2 |
+
cloudpickle==3.1.1
|
3 |
+
numpy==2.2.4
|
4 |
+
pandas==2.2.3
|
5 |
+
psutil==7.0.0
|
6 |
+
scikit-learn==1.6.1
|
7 |
+
scipy==1.15.2
|