mirror of
https://github.com/Toumash/mlflow-docker
synced 2025-11-04 15:19:21 +01:00
dev commit
This commit is contained in:
@@ -1,20 +1,22 @@
|
||||
import os
|
||||
from random import random, randint
|
||||
|
||||
from mlflow import log_metric, log_param, log_artifacts
|
||||
from mlflow import mlflow,log_metric, log_param, log_artifacts
|
||||
|
||||
if __name__ == "__main__":
|
||||
print("Running mlflow_tracking.py")
|
||||
with mlflow.start_run() as run:
|
||||
mlflow.set_tracking_uri('http://localhost:5000')
|
||||
print("Running mlflow_tracking.py")
|
||||
|
||||
log_param("param1", randint(0, 100))
|
||||
|
||||
log_metric("foo", random())
|
||||
log_metric("foo", random() + 1)
|
||||
log_metric("foo", random() + 2)
|
||||
log_param("param1", randint(0, 100))
|
||||
|
||||
log_metric("foo", random())
|
||||
log_metric("foo", random() + 1)
|
||||
log_metric("foo", random() + 2)
|
||||
|
||||
if not os.path.exists("outputs"):
|
||||
os.makedirs("outputs")
|
||||
with open("outputs/test.txt", "w") as f:
|
||||
f.write("hello world!")
|
||||
if not os.path.exists("outputs"):
|
||||
os.makedirs("outputs")
|
||||
with open("outputs/test.txt", "w") as f:
|
||||
f.write("hello world!")
|
||||
|
||||
log_artifacts("outputs")
|
||||
log_artifacts("outputs")
|
||||
|
||||
Reference in New Issue
Block a user