-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
bugDid we break something?Did we break something?p1-importantImportant, aka current backlog of things to doImportant, aka current backlog of things to doproduct: VSCodeIntegration with VSCode extensionIntegration with VSCode extensionresearch
Description
I have a project that has been working properly. It's fundamentally based on pipeline.
Before when I created the pipeline the models folder was added to .gitignore, however now I can't make it ignore the models folder. Here is the pipeline:
dvc add data
dvc run --no-exec \
-f train.dvc \
-d code/train.py \
-d data/train \
-o models \
-M metrics/train.json \
python code/train.py
dvc run --no-exec \
-f eval.dvc \
-d code/eval.py \
-d data/test \
-d models \
-M metrics/eval.json \
python code/eval.py
now .gitignore contains:
/data
however I expect /models to be there as it was (as specified by -o)
Please provide information about your setup
dvc 0.87.0
Python 3.6.9
ubuntu 10.04
Metadata
Metadata
Assignees
Labels
bugDid we break something?Did we break something?p1-importantImportant, aka current backlog of things to doImportant, aka current backlog of things to doproduct: VSCodeIntegration with VSCode extensionIntegration with VSCode extensionresearch