JREion commited on
Commit
29a514c
·
verified ·
1 Parent(s): 623f562

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -3
README.md CHANGED
@@ -1,3 +1,33 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - image-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - prompt-tuning
9
+ - prompt-learning
10
+ - CLIP
11
+ ---
12
+
13
+ # Dataset Introduction
14
+
15
+ The standard datasets (except ImageNet) used for CLIP-based Prompt Tuning research (e.g., [CoOp](https://github.com/KaiyangZhou/CoOp)).
16
+
17
+ Based on the original datasets, this repository adds **foreground segmentation masks** (generated by [SEEM](https://github.com/UX-Decoder/Segment-Everything-Everywhere-All-At-Once)) of all raw images.
18
+
19
+ Datasets contain: [ImageNet-1K](https://image-net.org/challenges/LSVRC/2012/index.php), [Caltech101](https://data.caltech.edu/records/mzrjq-6wc02), [Oxford Pets](https://www.robots.ox.ac.uk/~vgg/data/pets/), [StanfordCars](https://ai.stanford.edu/~jkrause/cars/car_dataset.html), [Flowers102](https://www.robots.ox.ac.uk/~vgg/data/flowers/102/), [Food101](https://vision.ee.ethz.ch/datasets_extra/food-101/), [FGVC Aircraft](https://www.robots.ox.ac.uk/~vgg/data/fgvc-aircraft/), [SUN397](http://vision.princeton.edu/projects/2010/SUN/), [DTD](https://www.robots.ox.ac.uk/~vgg/data/dtd/), [EuroSAT](https://github.com/phelber/EuroSAT) and [UCF101](https://www.crcv.ucf.edu/data/UCF101.php).
20
+
21
+ # Scope of Application
22
+
23
+ Datasets are uitable for training and improving **foreground-supervised prompt tuning** methods. For example:
24
+
25
+ - _Decouple before Align: Visual Disentanglement Enhances Prompt Tuning_
26
+
27
+ - _FVG-PT: Adaptive Foreground View-Guided Prompt Tuning for Vision-Language Models_
28
+
29
+ Also, they are **fully compatible** with other original prompt tuning approaches.
30
+
31
+ # Acknowledgements
32
+
33
+ Our repository is built based on [DAPT](https://github.com/SII-Ferenas/DAPT) and [zhengli97](https://huggingface.co/zhengli97/prompt_learning_dataset).