DrishtiSharma commited on
Commit
f6575f5
1 Parent(s): 4c24885

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +32 -6
README.md CHANGED
@@ -1,10 +1,36 @@
1
  ---
2
-
3
-
4
- ---
5
-
6
-
7
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  This example implements the EANet model for image classification, and demonstrates it on the CIFAR-100 dataset. EANet introduces a novel attention mechanism named external attention, based on two external, small, learnable, and shared memories, which can be implemented easily by simply using two cascaded linear layers and two normalization layers. It conveniently replaces self-attention as used in existing architectures. External attention has linear complexity, as it only implicitly considers the correlations between all samples.
9
 
10
 
 
1
  ---
2
+ language:
3
+ - en
4
+
5
+ thumbnail:
6
+
7
+ tags:
8
+ - classification
9
+ - EANet
10
+ - keras
11
+ - TensorFlow
12
+
13
+ library_name: generic
14
+ libraries: TensorBoard
15
+ license: apache-2.0
16
+ metrics:
17
+ - accuracy
18
+ model-index:
19
+ - name: Image-Classification-using-EANet
20
+ results:
21
+ - task:
22
+ type: Image-Classification-using-EANet
23
+ dataset:
24
+ type: Image
25
+ name: CIFAR100
26
+ metrics:
27
+ - type: accuracy
28
+ value: []
29
+ - type: validation loss
30
+ value: []
31
+
32
+
33
+ **Introduction**
34
  This example implements the EANet model for image classification, and demonstrates it on the CIFAR-100 dataset. EANet introduces a novel attention mechanism named external attention, based on two external, small, learnable, and shared memories, which can be implemented easily by simply using two cascaded linear layers and two normalization layers. It conveniently replaces self-attention as used in existing architectures. External attention has linear complexity, as it only implicitly considers the correlations between all samples.
35
 
36