Skip to content

Instantly share code, notes, and snippets.

@elijahbenizzy
Last active June 26, 2024 20:38
Show Gist options
  • Save elijahbenizzy/4c13c87a10f1f7e19a0e604e66df64d6 to your computer and use it in GitHub Desktop.
Save elijahbenizzy/4c13c87a10f1f7e19a0e604e66df64d6 to your computer and use it in GitHub Desktop.
from hamilton import driver
from hamilton.io.materialization import to
from hamilton.plugins.h_mlflow import MLFlowTracker
dr = (
driver.Builder()
.with_modules(model_training_2)
.with_adapters(
MLFlowTracker(
experiment_name="my_experiment",
run_name="hamilton_dag",
)
)
.build()
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment