-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.sh
executable file
·48 lines (35 loc) · 1.22 KB
/
main.sh
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
#!/bin/bash
#
# SCRIPT TO GENERATE ALL RESULTS
# RUNNING EVERYTHING TAKES A LONG TIME (IN THE ORDER OF WEEKS WITH THE HARDWARE WE USED)
#
# FIT PROCESS-BASED MODELS
./scripts/train_pb_hour.sh
./scripts/train_pb_utah.sh
./scripts/train_pb_days.sh
# LEARN CHILL FUNCTION
./scripts/train_df_mlp.sh
# LEARN CHILL FUNCTION WITH SPECIES PARAMETERS
./scripts/train_df_mlp_species.sh
# LEARN CHILL FUNCTION WITH CULTIVAR PARAMETERS AND HELD OUT LOCATIONS
./scripts/train_df_mlp_species_holdout.sh
# LEARN A CHILL FUNCTION FOR THE YEDOENSIS SPECIES
./scripts/train_df_mlp_yedoensis.sh
# FREEZE CHILL FUNCTION WEIGHTS AND FIT REMAINING PARAMETERS TO DATA IN SOUTH KOREA
./scripts/fine_tune_yedoensis.sh
# FIT PROCESS-BASED MODELS WITH SPECIES PARAMETERS
./scripts/train_pb_hour_species.sh
./scripts/train_pb_utah_species.sh
./scripts/train_pb_days_species.sh
# FIT LSTM MODELS
./scripts/train_lstm_baseline.sh
./scripts/train_lstm_baseline_species.sh
# ABLATION
# - TRAIN DIFFERENTIABLE APPROXIMATION TO UTAH MODEL
./scripts/train_df_utah.sh
./scripts/train_df_mlp_era5.sh
# FIGURES
# PLOT UTAH CHILL FUNCTION AND DOUBLE LOGISTIC APPROXIMATION
python3 -m runs.plot_logistic
# PLOT TEMPERATURE RESPONSE
./scripts/plot_learned_temperature_function.sh