-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig_linear.yaml
More file actions
58 lines (46 loc) · 1.68 KB
/
config_linear.yaml
File metadata and controls
58 lines (46 loc) · 1.68 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
#where to save checkpoints
save_path: "model_checkpoints/2_SatBird/satbird_linear"
# load existing checkpoint for inference. If passing experiment folder instead (for multiple seeds), it will evaluate all of them.
# always use the best checkpoint
load_ckpt_path: "model_checkpoints/2_SatBird/satbird_linear"
save_preds_path: ""
comet:
project_name: "SDMPartialLabels"
tags: [ "MLP", "corrected_targets", "EnvNormalization", "satbird" ]
experiment_name: "satbird_linear" # specify for training, or use to report test results
experiment_key: "" # use to report test results,
dataloader_to_use: "SDMEnvDataset"
losses:
criterion: "BCE"
model:
name: "Linear"
input_dim: 27
hidden_dim: 256
backbone:
training:
seed: 1337
lr: 0.0001
max_epochs: 50
accelerator: "cpu"
# During testing, eval family of non-songbirds (0), or family of songbirds (1)
predict_family_of_species: -1
data:
loaders:
num_workers: 8
batch_size: 128
#o you want to use environmental data (pedological and bioclimatic (low res) data) #ped" or "bioclim" or both or empty list
env: [ 'bio_1', 'bio_2',
'bio_3', 'bio_4', 'bio_5', 'bio_6', 'bio_7', 'bio_8', 'bio_9', 'bio_10',
'bio_11', 'bio_12', 'bio_13', 'bio_14', 'bio_15', 'bio_16', 'bio_17',
'bio_18', 'bio_19', 'bdticm', 'bldfie', 'cecsol', 'clyppt', 'orcdrc',
'phihox', 'sltppt', 'sndppt' ]
files:
base: "/data/SatBird_data_v2/USA_summer"
train: [ "train_split.csv" ]
val: [ "valid_split.csv" ]
test: [ "test_split.csv" ]
targets_file: [ "satbird_usa_summer_targets.pkl" ]
satbird_species_indices_path: "stats"
multi_taxa: False
per_taxa_species_count: [ 670 ]
total_species: 670