Spaces:
Running
Running
Déploiement automatique depuis GitLab CI
Browse files
5_Notebooks/mlartifacts/1/models/m-c06ca7184d99459a87df34d662e183c5/artifacts/model.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ee985276707b479db2f000d76455b7c48c0a72704218f7b373ae576eeeee50dd
|
| 3 |
+
size 28419612
|
Dockerfile
CHANGED
|
@@ -18,7 +18,7 @@ RUN pip install --no-cache-dir --upgrade pip && \
|
|
| 18 |
COPY --chown=user main.py .
|
| 19 |
COPY --chown=user config.py .
|
| 20 |
COPY --chown=user 2_Data_transformed/crop_yield_2_train_set_simplified.csv ./2_Data_transformed/
|
| 21 |
-
COPY --chown=user 5_Notebooks/
|
| 22 |
COPY --chown=user 8_Tests/test_functional.py ./8_Tests/
|
| 23 |
|
| 24 |
# ============================================
|
|
|
|
| 18 |
COPY --chown=user main.py .
|
| 19 |
COPY --chown=user config.py .
|
| 20 |
COPY --chown=user 2_Data_transformed/crop_yield_2_train_set_simplified.csv ./2_Data_transformed/
|
| 21 |
+
COPY --chown=user 5_Notebooks/mlartifacts/1/models/m-c06ca7184d99459a87df34d662e183c5/artifacts/model.pkl ./5_Notebooks/mlartifacts/1/models/m-c06ca7184d99459a87df34d662e183c5/artifacts/
|
| 22 |
COPY --chown=user 8_Tests/test_functional.py ./8_Tests/
|
| 23 |
|
| 24 |
# ============================================
|
config.py
CHANGED
|
@@ -11,7 +11,7 @@ ALL_COLUMNS = FEATURE_COLUMNS + [TARGET_COLUMN]
|
|
| 11 |
YEAR_THRESHOLD = 2009
|
| 12 |
|
| 13 |
# Chemin relatif vers le modèle MLflow (pipeline sklearn complet avec préprocesseur)
|
| 14 |
-
MODEL_REL_PATH = "5_Notebooks/
|
| 15 |
|
| 16 |
# ========================================================================
|
| 17 |
# Paramètres pour les services (Frontend et Backend)
|
|
|
|
| 11 |
YEAR_THRESHOLD = 2009
|
| 12 |
|
| 13 |
# Chemin relatif vers le modèle MLflow (pipeline sklearn complet avec préprocesseur)
|
| 14 |
+
MODEL_REL_PATH = "5_Notebooks/mlartifacts/1/models/m-c06ca7184d99459a87df34d662e183c5/artifacts"
|
| 15 |
|
| 16 |
# ========================================================================
|
| 17 |
# Paramètres pour les services (Frontend et Backend)
|