-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPaths.py
More file actions
31 lines (27 loc) · 777 Bytes
/
Copy pathPaths.py
File metadata and controls
31 lines (27 loc) · 777 Bytes
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
# DataSet
""" Dataset Files
EchoNet-Dynamic Dataset
├── FileList.csv
├── VolumeTracings.csv
└── Videos
├── 0X1A0A263B22CCD966.avi
├── 0X1A2A76BDB5B98BED.avi
├── 0X1A2C60147AF9FDAE.avi
└── etc.
"""
# TODO ADD Your _dataRootPath for Dataset
_dataRootPath = ''
_videosPath = _dataRootPath + '/Videos'
_fileNamesPath = _dataRootPath + '/FileList.csv'
_volumeTracingPath = _dataRootPath + '/VolumeTracings.csv'
# Loaded Videos
_loadedVideosPath = ''
# Transformer
# TODO ADD Your Transformer Model
_transformerModelPath = 'TransformerModel.pt'
# U-NET
_trueMasksPath = './True Masks'
# TODO ADD Your ED_Unet Model
_ED_Model_Path = 'ED_Unet.weights.h5'
# TODO ADD Your ES_Unet Model
_ES_Model_Path = 'ES_Unet.weights.h5'