forked from IBM/remote-sensing-image-retrieval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
inference.sh
executable file
·52 lines (40 loc) · 2.66 KB
/
inference.sh
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
52
#!/bin/bash
# Run inference for ForestNet
# python inference.py -c configs/prithvi_vit.yaml -d ForestNet -s train
python inference.py -c configs/prithvi_vit.yaml -d ForestNet -s val
python inference.py -c configs/prithvi_vit.yaml -d ForestNet -s test
# python inference.py -c configs/prithvi_vit.yaml -d ForestNet4 -s train
python inference.py -c configs/prithvi_vit.yaml -d ForestNet4 -s val
python inference.py -c configs/prithvi_vit.yaml -d ForestNet4 -s test
# python inference.py -c configs/prithvi_vit.yaml -d ForestNetBGR -s train
python inference.py -c configs/prithvi_vit.yaml -d ForestNetBGR -s val
python inference.py -c configs/prithvi_vit.yaml -d ForestNetBGR -s test
# python inference.py -c configs/prithvi_vit.yaml -d ForestNet4BGR -s train
python inference.py -c configs/prithvi_vit.yaml -d ForestNet4BGR -s val
python inference.py -c configs/prithvi_vit.yaml -d ForestNet4BGR -s test
# Run inference for BigEarthNet
#python inference.py -c configs/prithvi_vit.yaml -d BigEarthNet -s train
python inference.py -c configs/prithvi_vit.yaml -d BigEarthNet -s val
python inference.py -c configs/prithvi_vit.yaml -d BigEarthNet -s test
#python inference.py -c configs/prithvi_vit.yaml -d BigEarthNetBGR -s train
python inference.py -c configs/prithvi_vit.yaml -d BigEarthNetBGR -s val
python inference.py -c configs/prithvi_vit.yaml -d BigEarthNetBGR -s test
#python inference.py -c configs/prithvi_vit.yaml -d BigEarthNet19 -s train
python inference.py -c configs/prithvi_vit.yaml -d BigEarthNet19 -s val
python inference.py -c configs/prithvi_vit.yaml -d BigEarthNet19 -s test
#python inference.py -c configs/prithvi_vit.yaml -d BigEarthNet19BGR -s train
python inference.py -c configs/prithvi_vit.yaml -d BigEarthNet19BGR -s val
python inference.py -c configs/prithvi_vit.yaml -d BigEarthNet19BGR -s test
# Run inference with vanilla ViT
# python inference.py -c configs/rgb_vit.yaml -d ForestNetBGR -s train
python inference.py -c configs/rgb_vit.yaml -d ForestNetBGR -s val
python inference.py -c configs/rgb_vit.yaml -d ForestNetBGR -s test
# python inference.py -c configs/rgb_vit.yaml -d ForestNet4BGR -s train
python inference.py -c configs/rgb_vit.yaml -d ForestNet4BGR -s val
python inference.py -c configs/rgb_vit.yaml -d ForestNet4BGR -s test
#python inference.py -c configs/rgb_vit.yaml -d BigEarthNetBGR -s train
python inference.py -c configs/rgb_vit.yaml -d BigEarthNetBGR -s val
python inference.py -c configs/rgb_vit.yaml -d BigEarthNetBGR -s test
#python inference.py -c configs/rgb_vit.yaml -d BigEarthNet19BGR -s train
python inference.py -c configs/rgb_vit.yaml -d BigEarthNet19BGR -s val
python inference.py -c configs/rgb_vit.yaml -d BigEarthNet19BGR -s test