tanganke commited on
Commit
bc87936
·
verified ·
1 Parent(s): 0ebe59a

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -0
README.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Merging CLIP models on eight image classification tasks, using the concrete task arithmetic algorithm
2
+
3
+ ```bash
4
+ fusion_bench \
5
+ fabric_logger.name=ViT-B-32/concrete_task_arithmetic \
6
+ method=clip_concrete_task_arithmetic \
7
+ modelpool=clip-vit-base-patch32_TA8 \
8
+ taskpool=clip-vit-classification_TA8
9
+ ```
10
+
11
+ results
12
+
13
+ ```json
14
+ {
15
+ "svhn": {
16
+ "accuracy": 0.903003990650177,
17
+ "loss": 0.37700024247169495
18
+ },
19
+ "stanford_cars": {
20
+ "accuracy": 0.6326327323913574,
21
+ "loss": 1.2553859949111938
22
+ },
23
+ "resisc45": {
24
+ "accuracy": 0.7558730244636536,
25
+ "loss": 1.017554759979248
26
+ },
27
+ "eurosat": {
28
+ "accuracy": 0.9407407641410828,
29
+ "loss": 0.20871955156326294
30
+ },
31
+ "gtsrb": {
32
+ "accuracy": 0.8285035490989685,
33
+ "loss": 0.5861473679542542
34
+ },
35
+ "mnist": {
36
+ "accuracy": 0.9800000190734863,
37
+ "loss": 0.08148527890443802
38
+ },
39
+ "dtd": {
40
+ "accuracy": 0.5249999761581421,
41
+ "loss": 2.2731478214263916
42
+ },
43
+ "sun397": {
44
+ "accuracy": 0.6421158909797668,
45
+ "loss": 1.4108904600143433
46
+ }
47
+ }
48
+ ```