brikwerk commited on
Commit
ab328e7
·
1 Parent(s): 78f1974

Initial commit

Browse files
Files changed (1) hide show
  1. README.md +31 -0
README.md ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - few-shot learning
4
+ - classification
5
+ datasets:
6
+ - mini-imagenet
7
+ - HEp-2
8
+ - BCCD-WBC
9
+ - IKEA-FS
10
+ - CVPRL2ID
11
+ ---
12
+
13
+ # MAE-FS
14
+
15
+ Masked Autoencoders for Few-Shot Learning (MAE-FS) is a self-supervised, generative technique that reinforces few-shot classification performance for a prototypical backbone model. Given an embedded support set (produced by a frozen backbone), MAE-FS generates new prototypes, through a novel process, all of which are incorporated into class-based centroids. The reinforced centroids are used to classify unlabelled prototypes in the query set.
16
+
17
+ For usage instructions and code, please see the Github repo of this work: https://github.com/Brikwerk/MAE-FS
18
+
19
+ ## Model Date
20
+
21
+ November 2022
22
+
23
+ ## Model Type
24
+
25
+ MAE-FS uses a self-attention Transformer encoder and decoder for its architecture. CONV4, ResNet-18, and DINO-S are used a backbone models to decompose images into embedded representations. All weights provided are named according to the backbone model included in the respective weights file.
26
+
27
+ The following weights are provided:
28
+ - CONV4.pth (uses a CONV4 backbone with an embedding dimension of 512)
29
+ - CONV4_BASE.pth (uses a CONV4 backbone with an embedding dimension of 64)
30
+ - RESNET18.pth (uses a ResNet-18 backbone with an embedding dimension of 512)
31
+ - DINO.pth (uses a DINO-Small backbone with an embedding dimension of 384)