not-lain commited on
Commit
43f8056
·
verified ·
1 Parent(s): 023b564

Upload eval_matanyone_config.yaml

Browse files
Files changed (1) hide show
  1. eval_matanyone_config.yaml +47 -0
eval_matanyone_config.yaml ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ defaults:
2
+ - _self_
3
+ - model: base
4
+ - override hydra/job_logging: custom-no-rank.yaml
5
+
6
+ hydra:
7
+ run:
8
+ dir: ../output/${exp_id}/${dataset}
9
+ output_subdir: ${now:%Y-%m-%d_%H-%M-%S}-hydra
10
+
11
+ amp: False
12
+ weights: pretrained_models/matanyone.pth # default (can be modified from outside)
13
+ output_dir: null # defaults to run_dir; specify this to override
14
+ flip_aug: False
15
+
16
+
17
+ # maximum shortest side of the input; -1 means no resizing
18
+ # With eval_vos.py, we usually just use the dataset's size (resizing done in dataloader)
19
+ # this parameter is added for the sole purpose for the GUI in the current codebase
20
+ # InferenceCore will downsize the input and restore the output to the original size if needed
21
+ # if you are using this code for some other project, you can also utilize this parameter
22
+ max_internal_size: -1
23
+
24
+ # these parameters, when set, override the dataset's default; useful for debugging
25
+ save_all: True
26
+ use_all_masks: False
27
+ use_long_term: False
28
+ mem_every: 5
29
+
30
+ # only relevant when long_term is not enabled
31
+ max_mem_frames: 5
32
+
33
+ # only relevant when long_term is enabled
34
+ long_term:
35
+ count_usage: True
36
+ max_mem_frames: 10
37
+ min_mem_frames: 5
38
+ num_prototypes: 128
39
+ max_num_tokens: 10000
40
+ buffer_tokens: 2000
41
+
42
+ top_k: 30
43
+ stagger_updates: 5
44
+ chunk_size: -1 # number of objects to process in parallel; -1 means unlimited
45
+ save_scores: False
46
+ save_aux: False
47
+ visualize: False