Rename run_train_then_test.sh to run_train_test.sh
Browse files
run_train_then_test.sh → run_train_test.sh
RENAMED
|
@@ -2,61 +2,61 @@
|
|
| 2 |
set -euo pipefail
|
| 3 |
|
| 4 |
# Train
|
| 5 |
-
|
| 6 |
|
| 7 |
-
|
| 8 |
--model_dir runs/terratorch_hyperview_upernet_none \
|
| 9 |
--config configs/terramind_v1_base_hyperview_upernet_none.yaml \
|
| 10 |
--output_dir submissions/upernet_none
|
| 11 |
|
| 12 |
|
| 13 |
-
|
| 14 |
|
| 15 |
-
|
| 16 |
--model_dir runs/terratorch_hyperview_upernet_none_small \
|
| 17 |
--config configs/terramind_v1_base_hyperview_upernet_none_small.yaml \
|
| 18 |
--output_dir submissions/upernet_none_small
|
| 19 |
|
| 20 |
|
| 21 |
-
|
| 22 |
|
| 23 |
-
|
| 24 |
--model_dir runs/terratorch_hyperview_upernet_none_big \
|
| 25 |
--config configs/terramind_v1_base_hyperview_upernet_none_big.yaml \
|
| 26 |
--output_dir submissions/upernet_none_big
|
| 27 |
|
| 28 |
-
|
| 29 |
|
| 30 |
|
| 31 |
-
|
| 32 |
--model_dir runs/terratorch_hyperview_unet_none \
|
| 33 |
--config configs/terramind_v1_base_hyperview_unet_none.yaml \
|
| 34 |
--output_dir submissions/unet_none
|
| 35 |
|
| 36 |
|
| 37 |
-
|
| 38 |
--model_dir runs/terratorch_hyperview_upernet_none \
|
| 39 |
--config configs/terramind_v1_base_hyperview_upernet_none_i1.yaml \
|
| 40 |
--output_dir submissions/upernet_none_i1
|
| 41 |
|
| 42 |
|
| 43 |
-
|
| 44 |
--model_dir /mnt/d/new_runs_decoder_v2/backbone_name_terramind_v1_base_decoder_name_UperNetDecoder_output_size_4_mask_none_fill_last_with_150_True_target_scaling_std_batch_size_64_epochs_100_lr_5e-05 \
|
| 45 |
--config configs/terramind_v1_base_hyperview_upernet_none.yaml \
|
| 46 |
--output_dir submissions/upernet_none_external
|
| 47 |
|
| 48 |
-
|
| 49 |
--model_dir /mnt/d/new_runs_decoder_v2/backbone_name_terramind_v1_base_decoder_name_UperNetDecoder_output_size_4_mask_none_fill_last_with_150_True_target_scaling_std_batch_size_64_epochs_100_lr_5e-05 \
|
| 50 |
--config configs/terramind_v1_base_hyperview_upernet_none_i1.yaml \
|
| 51 |
--output_dir submissions/upernet_none_i1_external
|
| 52 |
|
| 53 |
|
| 54 |
-
|
| 55 |
--model_dir /mnt/d/new_runs_decoder_v2/backbone_name_terramind_v1_base_decoder_name_UperNetDecoder_output_size_4_mask_none_fill_last_with_150_True_target_scaling_std_batch_size_64_epochs_100_lr_5e-05 \
|
| 56 |
--config configs/terramind_v1_base_hyperview_upernet_none_enmap_20231109T101043Z.yaml \
|
| 57 |
--output_dir submissions/upernet_none_enmap_20231109T101043Z_external
|
| 58 |
|
| 59 |
-
|
| 60 |
--model_dir runs/terratorch_hyperview_upernet_none \
|
| 61 |
--config configs/terramind_v1_base_hyperview_upernet_none_enmap_20231109T101043Z.yaml \
|
| 62 |
--output_dir submissions/upernet_none_enmap_20231109T101043Z
|
|
|
|
| 2 |
set -euo pipefail
|
| 3 |
|
| 4 |
# Train
|
| 5 |
+
terratorch fit -c configs/terramind_v1_base_hyperview_upernet_none.yaml
|
| 6 |
|
| 7 |
+
python3 prepare_submission.py \
|
| 8 |
--model_dir runs/terratorch_hyperview_upernet_none \
|
| 9 |
--config configs/terramind_v1_base_hyperview_upernet_none.yaml \
|
| 10 |
--output_dir submissions/upernet_none
|
| 11 |
|
| 12 |
|
| 13 |
+
terratorch fit -c configs/terramind_v1_base_hyperview_upernet_none_small.yaml
|
| 14 |
|
| 15 |
+
python3 prepare_submission.py \
|
| 16 |
--model_dir runs/terratorch_hyperview_upernet_none_small \
|
| 17 |
--config configs/terramind_v1_base_hyperview_upernet_none_small.yaml \
|
| 18 |
--output_dir submissions/upernet_none_small
|
| 19 |
|
| 20 |
|
| 21 |
+
terratorch fit -c configs/terramind_v1_base_hyperview_upernet_none_big.yaml
|
| 22 |
|
| 23 |
+
python3 prepare_submission.py \
|
| 24 |
--model_dir runs/terratorch_hyperview_upernet_none_big \
|
| 25 |
--config configs/terramind_v1_base_hyperview_upernet_none_big.yaml \
|
| 26 |
--output_dir submissions/upernet_none_big
|
| 27 |
|
| 28 |
+
terratorch fit -c configs/terramind_v1_base_hyperview_unet_none.yaml
|
| 29 |
|
| 30 |
|
| 31 |
+
python3 prepare_submission.py \
|
| 32 |
--model_dir runs/terratorch_hyperview_unet_none \
|
| 33 |
--config configs/terramind_v1_base_hyperview_unet_none.yaml \
|
| 34 |
--output_dir submissions/unet_none
|
| 35 |
|
| 36 |
|
| 37 |
+
python3 prepare_submission.py \
|
| 38 |
--model_dir runs/terratorch_hyperview_upernet_none \
|
| 39 |
--config configs/terramind_v1_base_hyperview_upernet_none_i1.yaml \
|
| 40 |
--output_dir submissions/upernet_none_i1
|
| 41 |
|
| 42 |
|
| 43 |
+
python3 prepare_submission.py \
|
| 44 |
--model_dir /mnt/d/new_runs_decoder_v2/backbone_name_terramind_v1_base_decoder_name_UperNetDecoder_output_size_4_mask_none_fill_last_with_150_True_target_scaling_std_batch_size_64_epochs_100_lr_5e-05 \
|
| 45 |
--config configs/terramind_v1_base_hyperview_upernet_none.yaml \
|
| 46 |
--output_dir submissions/upernet_none_external
|
| 47 |
|
| 48 |
+
python3 prepare_submission.py \
|
| 49 |
--model_dir /mnt/d/new_runs_decoder_v2/backbone_name_terramind_v1_base_decoder_name_UperNetDecoder_output_size_4_mask_none_fill_last_with_150_True_target_scaling_std_batch_size_64_epochs_100_lr_5e-05 \
|
| 50 |
--config configs/terramind_v1_base_hyperview_upernet_none_i1.yaml \
|
| 51 |
--output_dir submissions/upernet_none_i1_external
|
| 52 |
|
| 53 |
|
| 54 |
+
python3 prepare_submission.py \
|
| 55 |
--model_dir /mnt/d/new_runs_decoder_v2/backbone_name_terramind_v1_base_decoder_name_UperNetDecoder_output_size_4_mask_none_fill_last_with_150_True_target_scaling_std_batch_size_64_epochs_100_lr_5e-05 \
|
| 56 |
--config configs/terramind_v1_base_hyperview_upernet_none_enmap_20231109T101043Z.yaml \
|
| 57 |
--output_dir submissions/upernet_none_enmap_20231109T101043Z_external
|
| 58 |
|
| 59 |
+
python3 prepare_submission.py \
|
| 60 |
--model_dir runs/terratorch_hyperview_upernet_none \
|
| 61 |
--config configs/terramind_v1_base_hyperview_upernet_none_enmap_20231109T101043Z.yaml \
|
| 62 |
--output_dir submissions/upernet_none_enmap_20231109T101043Z
|