-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.toml.example
43 lines (39 loc) · 1.05 KB
/
config.toml.example
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
# Note: The sub-headings / sections are optional and are removed from the config parser anyway. The only important thing is the [darts] heading
[darts]
ee-project = "your-project-here"
[darts.paths]
sentinel2-dir = "data/input/sentinel2"
orthotiles-dir = "data/input/planet/PSOrthoTile"
scenes-dir = "data/input/planet/PSScene"
output-data-dir = "data/output"
model-dir = "models"
tcvis-model-name = "RTS_v6_tcvis.pt"
notcvis-model-name = "RTS_v6_notcvis.pt"
arcticdem-slope-vrt = "data/input/ArcticDEM/slope.vrt"
arcticdem-elevation-vrt = "data/input/ArcticDEM/elevation.vrt"
arcticdem-dir = "data/download/arcticdem"
tcvis-dir = "data/download/tcvis"
[darts.preprocess]
tpi-outer-radius = 100
tpi-inner-radius = 0
[darts.segmentation]
patch-size = 1024
overlap = 256
batch-size = 2
reflection = 32
[darts.training]
bands = [
'blue',
'green',
'red',
'nir',
'ndvi',
'tc_brightness',
'tc_greenness',
'tc_wetness',
'relative_elevation',
'slope',
]
train-data-dir = "data/training"
include-allzero = false
include-nan-edges = true