We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dvc exp init does not read nested parameters.
dvc exp init
$ echo "foo: \n bar: 1" > params.yaml $ dvc exp init python train.py Created default stage in dvc.yaml. To run default stage, use "dvc exp run". $ cat dvc.yaml stages: default: cmd: python train.py deps: - data - src params: - foo outs: - models metrics: - metrics.json: cache: false plots: - plots: cache: false
$ cat dvc.yaml stages: default: cmd: python train.py deps: - data - src params: - foo.bar outs: - models metrics: - metrics.json: cache: false plots: - plots: cache: false
Output of dvc doctor:
dvc doctor
$ dvc doctor DVC version: 2.7.4+38d758.mod --------------------------------- Platform: Python 3.9.5 on macOS-11.5.2-arm64-arm-64bit Supports: http (aiohttp = 3.7.4.post0, aiohttp-retry = 2.4.5), https (aiohttp = 3.7.4.post0, aiohttp-retry = 2.4.5), s3 (s3fs = 2021.8.0, boto3 = 1.17.5) Cache types: <https://error.dvc.org/no-dvc-cache> Caches: local Remotes: local Workspace directory: apfs on /dev/disk3s1s1 Repo: dvc, git
The text was updated successfully, but these errors were encountered:
This feels like correct behaviour to me. The child values of foo will be still get tracked.
foo
Instead of depending on leaf values, it uses root values. Whenever foo is changed (if a new child value is added for example), it'll get tracked.
This is closer to #6605.
Sorry, something went wrong.
skshetry
No branches or pull requests
Bug Report
Description
dvc exp init
does not read nested parameters.Reproduce
Expected
Environment information
Output of
dvc doctor
:The text was updated successfully, but these errors were encountered: