Upload 5 files
Browse files- MLmodel +12 -0
- conda.yaml +11 -0
- python_env.yaml +7 -0
- python_model.pkl +3 -0
- requirements.txt +4 -0
MLmodel
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
flavors:
|
2 |
+
python_function:
|
3 |
+
cloudpickle_version: 2.2.1
|
4 |
+
env:
|
5 |
+
conda: conda.yaml
|
6 |
+
virtualenv: python_env.yaml
|
7 |
+
loader_module: mlflow.pyfunc.model
|
8 |
+
python_model: python_model.pkl
|
9 |
+
python_version: 3.9.16
|
10 |
+
mlflow_version: 2.1.1
|
11 |
+
model_uuid: 842f332065f04d7d864bfada1e546f52
|
12 |
+
utc_time_created: '2023-01-25 09:18:44.575680'
|
conda.yaml
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
channels:
|
2 |
+
- conda-forge
|
3 |
+
dependencies:
|
4 |
+
- python=3.9.16
|
5 |
+
- pip<=22.3.1
|
6 |
+
- pip:
|
7 |
+
- mlflow<3,>=2.1
|
8 |
+
- cloudpickle==2.2.1
|
9 |
+
- torchmetrics==0.11.0
|
10 |
+
- transformers==4.26.0
|
11 |
+
name: mlflow-env
|
python_env.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
python: 3.9.16
|
2 |
+
build_dependencies:
|
3 |
+
- pip==22.3.1
|
4 |
+
- setuptools==66.1.0
|
5 |
+
- wheel==0.30.0
|
6 |
+
dependencies:
|
7 |
+
- -r requirements.txt
|
python_model.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d269381962762183b74368b5199c745c5a549a173a26d6e9e729f799c6a1032a
|
3 |
+
size 6110
|
requirements.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
mlflow<3,>=2.1
|
2 |
+
cloudpickle==2.2.1
|
3 |
+
torchmetrics==0.11.0
|
4 |
+
transformers==4.26.0
|