-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtree.txt
79 lines (78 loc) · 2.33 KB
/
tree.txt
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
77
78
79
.
├── config.py
├── data
│ ├── tgs.zip
│ └── training_upload.csv
├── dataset
│ ├── hpa_dataset.py
│ ├── __init__.py
│ └── tgs_dataset.py
├── loss
│ ├── dice.py
│ ├── focal.py
│ ├── __init__.py
│ ├── iou.py
│ └── loss.py
├── model
├── net
│ ├── block.py
│ ├── __init__.py
│ ├── proteinet
│ │ ├── __init__.py
│ │ ├── proteinet_model.py
│ │ └── proteinet_parts.py
│ ├── resnet
│ │ ├── __init__.py
│ │ ├── resnet_extractor.py
│ │ └── resnet_model.py
│ ├── resunet
│ │ ├── __init__.py
│ │ ├── resunet_model.py
│ │ └── resunet_parts.py
│ ├── seinception
│ │ ├── __init__.py
│ │ ├── seinception_model.py
│ │ └── seinception_parts.py
│ ├── seresnet
│ │ ├── __init__.py
│ │ ├── seresnet_model.py
│ │ └── seresnet_parts.py
│ └── unet
│ ├── __init__.py
│ ├── unet_model.py
│ └── unet_parts.py
├── optimizer
│ ├── __init__.py
│ └── sgdw.py
├── pretained_model
│ ├── bninception.py
│ ├── inceptionresnetv2.py
│ ├── inceptionv4.py
│ ├── __init__.py
│ ├── nasnet.py
│ ├── resnext_features
│ │ ├── __init__.py
│ │ ├── resnext101_32x4d_features.py
│ │ └── resnext101_64x4d_features.py
│ ├── resnext.py
│ ├── senet.py
│ ├── torchvision_models.py
│ ├── utils.py
│ ├── vggm.py
│ ├── wideresnet.py
│ └── xception.py
├── project
│ ├── hpa_project.py
│ ├── __init__.py
│ └── tgs_project.py
├── README.md
├── requirements.txt
├── tensorboardwriter.py
├── train.py
├── tree.txt
└── utils
├── encode.py
├── __init__.py
├── memory.py
└── postprocess.py
16 directories, 60 files