Extension can't handle custom folder structure #5198
Labels
A: experiments
Area: experiments table webview and everything related
priority-p2
Future feature, less priority for now
I have a repository structure (depicted in the image) where I want to use different stages and different params for each inspection, so each subfolder has its own params.yaml and dvc.yaml file. To demonstrate the problem, I adapt the amount of training epochs.
Things that work:
dvc exp run -S inspections\nose_4pol_0deg_surface\params.yaml:train.epochs=28
in the corresponding inspection subdirectory.dvc exp run --queue inspections\nose_4pol_0deg_surface\dvc.yaml -S inspections\nose_4pol_0deg_surface\params.yaml:train.epochs=28
in the root directory.Things that do not work:
Modify and Run
functionality of the vs code extension. While the vs code dropdown menu lists all params of theinspections\nose_4pol_0deg_surface\params.yaml
(as it should be), executing the experiment shows the following error:Modify and Queue
functionality of the vs code extension. This leads to the same error as mentioned above.dvc queue start
from the root directory (after adding an experiment usingdvc exp run --queue inspections\nose_4pol_0deg_surface\dvc.yaml -S inspections\nose_4pol_0deg_surface\params.yaml:train.epochs=28
). Here, hovering over the experiment only showsExperiment run failed
, I could not find any additional error logs.The text was updated successfully, but these errors were encountered: