From 9fe0f05a16f36cc604a619d6bfd9f7d948eea0bc Mon Sep 17 00:00:00 2001 From: Ritu Yadav <40523539+RituYadav92@users.noreply.github.com> Date: Fri, 20 Sep 2024 16:39:30 +0200 Subject: [PATCH] Update README.md added command for single and multi-temporal regression finetuning --- README.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 128bba39..6e349be5 100644 --- a/README.md +++ b/README.md @@ -130,12 +130,24 @@ torchrun --nnodes=1 --nproc_per_node=1 run.py \ ``` #### Single Temporal Regression ``` -torchrun ... +torchrun --nnodes=1 --nproc_per_node=1 run.py \ +--config configs/run/default.yaml \ +--encoder_config configs/foundation_models/prithvi.yaml \ +--dataset_config configs/datasets/biomassters.yaml \ +--segmentor_config configs/segmentors/reg_upernet.yaml \ +--augmentation_config configs/augmentations/regression_default.yaml \ +--num_workers 4 --eval_interval 1 --use_wandb ``` #### Multi-Temporal Regression ``` -torchrun ... +torchrun --nnodes=1 --nproc_per_node=1 run.py \ +--config configs/run/default.yaml \ +--encoder_config configs/foundation_models/prithvi.yaml \ +--dataset_config configs/datasets/biomassters.yaml \ +--segmentor_config configs/segmentors/reg_upernet_mt.yaml \ +--augmentation_config configs/augmentations/regression_default.yaml \ +--num_workers 4 --eval_interval 1 --use_wandb ``` ### 💻 Fully Supervised Training