-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdvc.yaml
More file actions
76 lines (71 loc) · 1.81 KB
/
dvc.yaml
File metadata and controls
76 lines (71 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
stages:
convert_sly_to_int:
cmd:
- rm -rf data/interim || true
- python src/data/convert_sly_to_int.py
deps:
- src/data/convert_sly_to_int.py
- src/data/utils_sly.py
- configs/convert_sly_to_int.yaml
- data/sly
outs:
- data/interim/img
- data/interim/metadata.xlsx
segment_lungs:
cmd:
- rm -rf data/interim_lungs || true
- python src/segment_lungs.py
deps:
- src/segment_lungs.py
- src/models/lung_segmenter.py
- configs/segment_lungs.yaml
- data/interim/img
- models/lung_segmentation/DeepLabV3
- models/lung_segmentation/FPN
- models/lung_segmentation/MAnet
outs:
- data/interim_lungs
fuse_maps:
cmd:
- rm -rf data/interim_fused || true
- python src/fuse_maps.py
deps:
- src/fuse_maps.py
- src/models/map_fuser.py
- src/models/mask_processor.py
- src/data/utils_sly.py
- configs/fuse_maps.yaml
- data/interim_lungs
outs:
- data/interim_fused/map
- data/interim_fused/mask
- data/interim_fused/metadata.xlsx
convert_int_to_final:
cmd:
- rm -rf data/final || true
- python src/data/convert_int_to_final.py
deps:
- src/data/convert_int_to_final.py
- src/data/utils_final.py
- configs/convert_int_to_final.yaml
- data/interim/img
- data/interim/metadata.xlsx
- data/interim_fused/metadata.xlsx
outs:
- data/final/img
- data/final/metadata.xlsx
convert_final_to_coco:
cmd:
- rm -rf data/coco || true
- python src/data/convert_final_to_coco.py
deps:
- src/data/convert_final_to_coco.py
- src/data/utils_coco.py
- src/data/utils_sly.py
- configs/convert_final_to_coco.yaml
- data/final/img
- data/final/metadata.xlsx
outs:
- data/coco/train
- data/coco/test
- data/coco/metadata.xlsx