I read Github\'s post on git-worktree. They write:
Suppose you\'re working in a Git repository on a branch called
feature, when a user re
I'm using git worktree for machine learning development.
I have a main functional code and then I want to split branches of different experiments (different algorithms and different hyperparameters). git worktree allows me to integrate dvc alongside different versions of my code specialized to different algorithms. After running all training jobs I evaluate final metrics and merge to master the best branch/model.