Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

mlflow_commands.py 442 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  1. import subprocess
  2. def run_commands():
  3. commands = [
  4. "export MLFLOW_TRACKING_URI=https://dagshub.com/kalema3502/Kidney-Disease-Classification-MLflow-DVC.mlflow",
  5. "export MLFLOW_TRACKING_USERNAME=kalema3502",
  6. "export MLFLOW_TRACKING_PASSWORD=fb3845efcc3b2e46a4157b1d2c977a21e02dd16e",
  7. ]
  8. for command in commands:
  9. subprocess.run(command, shell=True)
  10. if __name__ == "__main__":
  11. run_commands()
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...