Skip to content

Commit

Permalink
updated file for reflink error
Browse files Browse the repository at this point in the history
  • Loading branch information
shivpalSW committed Jul 17, 2023
1 parent 37fbae1 commit a04dcd1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions dvc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

stages:
prepare_data:
cmd: python src/stage_01_prepare.py --config=configs/config.yaml --params=params.yaml
cmd: python src/stage_01_prepare.py --config=configs/config.yaml --params=params.yaml --no-reflink
deps:
- src/stage_01_prepare.py
- data/data.xml
Expand All @@ -20,10 +20,10 @@ stages:
outs:
- artifacts/prepared/train.tsv
- artifacts/prepared/test.tsv
reflink: false


featurize:
cmd: python src/stage_02_featurization.py --config=configs/config.yaml --params=params.yaml
cmd: python src/stage_02_featurization.py --config=configs/config.yaml --params=params.yaml --no-reflink
deps:
- src/stage_02_featurization.py
- artifacts/prepared/train.tsv
Expand All @@ -37,10 +37,10 @@ stages:
outs:
- artifacts/features/train.pkl
- artifacts/features/test.pkl
reflink: false


train:
cmd: python src/stage_03_train.py --config=configs/config.yaml --params=params.yaml
cmd: python src/stage_03_train.py --config=configs/config.yaml --params=params.yaml --no-reflink
deps:
- src/stage_03_train.py
- artifacts/features/train.pkl
Expand All @@ -52,10 +52,10 @@ stages:
- train.min_split
outs:
- artifacts/model/model.pkl
reflink: false


evaluate:
cmd: python src/stage_04_evaluate.py --config=configs/config.yaml
cmd: python src/stage_04_evaluate.py --config=configs/config.yaml --no-reflink
deps:
- src/stage_04_evaluate.py
- artifacts/features/test.pkl
Expand All @@ -74,7 +74,7 @@ stages:
cache: false
x: fpr
y: tpr
reflink: false


run_plots_command:
cmd: dvc plots diff

0 comments on commit a04dcd1

Please sign in to comment.