You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dvc run requires the user to specify all the dependencies that will be required, that is, all the scripts that will be executed while running the main command.
What if we could find a way to automatically detect those dependency files?
Assuming all the files would be in Python, I think trace could be used when the command is being executed for the first time before adding them to the stage.
The text was updated successfully, but these errors were encountered:
https://docs.python.org/2/library/trace.html
dvc run
requires the user to specify all the dependencies that will be required, that is, all the scripts that will be executed while running the main command.What if we could find a way to automatically detect those dependency files?
Assuming all the files would be in Python, I think
trace
could be used when the command is being executed for the first time before adding them to the stage.The text was updated successfully, but these errors were encountered: