Manage multiple models at the same time #92
Closed
zchmielewska
started this conversation in
Ideas
Replies: 1 comment
-
Let's assume that we have two models: To run both of them, we can use the following script: import os
import subprocess
os.chdir("example1")
subprocess.run("python run.py")
os.chdir("..")
os.chdir("example2")
subprocess.run("python run.py")
os.chdir("..") |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Beta Was this translation helpful? Give feedback.
All reactions