log params with mlflow
All checks were successful
s444507-evaluation/pipeline/head This commit looks good
444507-training/pipeline/head This commit looks good

This commit is contained in:
Adam Wojdyla 2022-05-15 21:23:32 +02:00
parent 10ed071e3d
commit 518f414734
5 changed files with 16 additions and 0 deletions

2
.gitignore vendored
View File

@ -152,4 +152,6 @@ fabric.properties
# kaggle
kaggle.json
Car_Prices_Poland_Kaggle*
CarPrices*

View File

@ -24,6 +24,7 @@ RUN python3 -m pip install sklearn
RUN python3 -m pip install matplotlib
RUN python3 -m pip install sacred
RUN python3 -m pip install pymongo
RUN python3 -m pip install mlflow
RUN python3 -m pip freeze
ENV PATH="/root/.local/bin:${PATH}"

13
MLproject Normal file
View File

@ -0,0 +1,13 @@
name: tutorial
conda_env: conda.yaml #ścieżka do pliku conda.yaml z definicją środowiska
#docker_env:
# image: mlflow-docker-example-environment
entry_points:
main:
parameters:
epochs: {type: float, default: 0.5}
l1_ratio: {type: float, default: 0.1}
command: "python train.py {epochs}"

View File

0
lab08_mlflow.py Normal file
View File