-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdrone_config.yml
44 lines (39 loc) · 1.46 KB
/
drone_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
# A yaml file that contains the configuration for the pipeline
# Remote server for image hosting
user: 'ben'
host: 'serenity.ifas.ufl.edu'
key_filename: '/home/b.weinstein/.ssh/id_rsa.pub'
folder_name: '/pgsql/retrieverdash/everglades-label-studio/everglades-data'
# Model Training
# Model checkpoints are saved in the checkpoint_dir, model_checkpoint is the path to the model checkpoint and is honored first
model_checkpoint: '/blue/ewhite/everglades/Zooniverse/20230426_082517/species_model.pl'
test_csv: '/blue/ewhite/everglades/Zooniverse/cleaned_test/species_test_20230426_082517.csv'
images_to_annotate_dir: '/blue/ewhite/everglades/label_studio/drone/images_to_annotate'
checkpoint_dir: '/blue/ewhite/everglades/Zooniverse/'
train_csv_folder: /blue/ewhite/everglades/label_studio/drone/annotated_images/csvs
# List of labels to use from annotations in case of extra labels
labels:
- 'Great Egret'
- 'Roseate Spoonbill'
- 'White Ibis'
- 'Great Blue Heron'
- 'Wood Stork'
- 'Snowy Egret'
- 'Anhinga'
comet_workspace: "bw4sz"
comet_project: "everglades-species"
# Active learning
annotated_images_dir: '/blue/ewhite/everglades/label_studio/drone/annotated_images'
annotation_csv:
patch_size: 1500
patch_overlap: 0.05
min_score: 0.3
strategy: 'random'
# Number of images to select for annotation
n_images: 10
# Label studio
label_studio_url: "https://labelstudio.naturecast.org/"
label_studio_project_name: "Everglades Drone model"
# Debugging
force_run: True
skip_train: False