-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode_execution.sh
More file actions
51 lines (31 loc) · 2.61 KB
/
code_execution.sh
File metadata and controls
51 lines (31 loc) · 2.61 KB
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
49
50
51
#The execution code of specific datasets under different backbones
circo-test-base-openai
python main.py --dataset circo --split test --dataset-path data/CIRCO --llm_prompt prompts.structural_modifier_prompt --clip ViT-B/32
circo-test-large-openai
python main.py --dataset circo --split test --dataset-path data/CIRCO --llm_prompt prompts.structural_modifier_prompt --clip ViT-L/14
circo-test-giga
python main.py --dataset circo --split test --dataset-path data/CIRCO --llm_prompt prompts.structural_modifier_prompt --clip ViT-bigG-14
CIRR-test-base-openai
python main.py --dataset cirr --split test --dataset-path data/CIRR --llm_prompt prompts.contextual_modifier_prompt --clip ViT-B/32
CIRR-test-large-openai
python main.py --dataset cirr --split test --dataset-path data/CIRR --llm_prompt prompts.contextual_modifier_prompt --clip ViT-L/14
CIRR-test-giga
python main.py --dataset cirr --split test --dataset-path data/CIRR --llm_prompt prompts.contextual_modifier_prompt --clip ViT-bigG-14
fashioniq-shirt-base-openai
python main.py --dataset fashioniq_shirt --split val --dataset-path data/FASHIONIQ --llm_prompt prompts.structural_modifier_prompt_fashion --clip ViT-B/32
fashioniq-shirt-large-openai
python main.py --dataset fashioniq_shirt --split val --dataset-path data/FASHIONIQ --llm_prompt prompts.structural_modifier_prompt_fashion --clip ViT-L/14
fashioniq-shirt-giga
python main.py --dataset fashioniq_shirt --split val --dataset-path data/FASHIONIQ --llm_prompt prompts.structural_modifier_prompt_fashion --clip ViT-bigG-14
fashioniq-dress-base-openai
python main.py --dataset fashioniq_dress --split val --dataset-path data/FASHIONIQ --llm_prompt prompts.structural_modifier_prompt_fashion --clip ViT-B/32
fashioniq-dress-large-openai
python main.py --dataset fashioniq_dress --split val --dataset-path data/FASHIONIQ --llm_prompt prompts.structural_modifier_prompt_fashion --clip ViT-L/14
fashioniq-dress-giga
python main.py --dataset fashioniq_dress --split val --dataset-path data/FASHIONIQ --llm_prompt prompts.structural_modifier_prompt_fashion --clip ViT-bigG-14
fashioniq-toptee-base-openai
python main.py --dataset fashioniq_toptee --split val --dataset-path data/FASHIONIQ --llm_prompt prompts.structural_modifier_prompt_fashion --clip ViT-B/32
fashioniq-toptee-large-openai
python main.py --dataset fashioniq_toptee --split val --dataset-path data/FASHIONIQ --llm_prompt prompts.structural_modifier_prompt_fashion --clip ViT-L/14
fashioniq-toptee-giga
python main.py --dataset fashioniq_toptee --split val --dataset-path data/FASHIONIQ --llm_prompt prompts.structural_modifier_prompt_fashion --clip ViT-bigG-14