Upload RandomForest model
Browse files- MLmodel +20 -0
- conda.yaml +14 -0
- model.pkl +3 -0
- python_env.yaml +7 -0
- requirements.txt +7 -0
MLmodel
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
flavors:
|
| 2 |
+
python_function:
|
| 3 |
+
env:
|
| 4 |
+
conda: conda.yaml
|
| 5 |
+
virtualenv: python_env.yaml
|
| 6 |
+
loader_module: mlflow.sklearn
|
| 7 |
+
model_path: model.pkl
|
| 8 |
+
predict_fn: predict
|
| 9 |
+
python_version: 3.12.12
|
| 10 |
+
sklearn:
|
| 11 |
+
code: null
|
| 12 |
+
pickled_model: model.pkl
|
| 13 |
+
serialization_format: cloudpickle
|
| 14 |
+
sklearn_version: 1.6.1
|
| 15 |
+
mlflow_version: 3.0.1
|
| 16 |
+
model_id: null
|
| 17 |
+
model_size_bytes: 3168740
|
| 18 |
+
model_uuid: f240d623a845457c9081140db56b48ef
|
| 19 |
+
prompts: null
|
| 20 |
+
utc_time_created: '2026-01-25 20:12:52.490983'
|
conda.yaml
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
channels:
|
| 2 |
+
- conda-forge
|
| 3 |
+
dependencies:
|
| 4 |
+
- python=3.12.12
|
| 5 |
+
- pip<=24.1.2
|
| 6 |
+
- pip:
|
| 7 |
+
- mlflow==3.0.1
|
| 8 |
+
- cloudpickle==3.1.2
|
| 9 |
+
- numpy==2.0.2
|
| 10 |
+
- pandas==2.2.2
|
| 11 |
+
- psutil==5.9.5
|
| 12 |
+
- scikit-learn==1.6.1
|
| 13 |
+
- scipy==1.16.3
|
| 14 |
+
name: mlflow-env
|
model.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e594e3c00306544547425f4fa4b0c7566643205946661b25464ab399d02573ee
|
| 3 |
+
size 3168740
|
python_env.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
python: 3.12.12
|
| 2 |
+
build_dependencies:
|
| 3 |
+
- pip==24.1.2
|
| 4 |
+
- setuptools==75.2.0
|
| 5 |
+
- wheel==0.45.1
|
| 6 |
+
dependencies:
|
| 7 |
+
- -r requirements.txt
|
requirements.txt
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
mlflow==3.0.1
|
| 2 |
+
cloudpickle==3.1.2
|
| 3 |
+
numpy==2.0.2
|
| 4 |
+
pandas==2.2.2
|
| 5 |
+
psutil==5.9.5
|
| 6 |
+
scikit-learn==1.6.1
|
| 7 |
+
scipy==1.16.3
|