-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconfig.yml
50 lines (34 loc) · 1.4 KB
/
config.yml
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
# Configuration
# Which part of the pipeline do you want to execute?
run_tile_creator: 0
run_tile_downloader: 0
run_tile_processor: 0
run_tile_coords_updater: 0
# -------- Pipeline Configuration --------
# Classification threshold
threshold: 0.5
# Input resolution for CNN, is fixed for Inception-v3
input_size: 299
# Batch size should be as large as possible to speed up the classification process
batch_size: 10
# -------- Data --------
# DIR where tiles are saved
tile_dir: data/tiles
# Path where pickle with tile coordinates is saved
tile_coords_path: data/coords/Tile_coords_Bottrop.pickle
# Path to csv where PV locations are stored
pv_db_path: data/pv_database/PVs_NRW.csv
# Path to csv which lists all completely processed tiles
processed_path: logs/processing/Processed.csv
# Path to csv which lists all tiles where processing went wrong
not_processed_path: logs/processing/notProcessed.csv
# Path to csv which lists all downloaded tiles
# Only fully downloaded tiles are stored here
downloaded_path: logs/downloading/DownloadedTiles.csv
# Path to csv which lists all tiles where downloading went wrong
not_downloaded_path: logs/downloading/notDownloadedTiles.csv
# Path to geojson for all German states
geojson_path: data/deutschlandGeoJSON/2_bundeslaender/1_sehr_hoch.geojson
# -------- Model Checkpoint --------
# Path for loading model weights
checkpoint_path: models/DeepSolar_openNRW_classification.tar