Patsorn commited on
Commit ·
fbfe339
1
Parent(s): 5453b22
update README.md
Browse files
README.md
CHANGED
|
@@ -1 +1,47 @@
|
|
| 1 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Image Retrieval with Text and Sketch
|
| 2 |
+
This code is for our 2022 ECCV paper [[A Sketch Is Worth a Thousand Words: Image Retrieval with Text and Sketch]](https://patsorn.me/projects/tsbir/)
|
| 3 |
+
|
| 4 |
+
<img src="https://patsorn.me/projects/tsbir/img/teaser_web_mini.jpg" width="900px"/>
|
| 5 |
+
|
| 6 |
+
---------------------
|
| 7 |
+
folder structure
|
| 8 |
+
---------------------
|
| 9 |
+
|---model/ : Contain the trained model*
|
| 10 |
+
|---sketches/ : Contain example query sketch
|
| 11 |
+
|---images/ : Contain 100 randomly sampled images from COCO TBIR benchmark
|
| 12 |
+
|---notebooks/ : Contain the demo ipynb notebook (can run via Colab)
|
| 13 |
+
|---code/
|
| 14 |
+
|---training/model_configs/ : Contain model config file for the network
|
| 15 |
+
|---clip/ : Contain source code for running the notebook
|
| 16 |
+
|
| 17 |
+
*model can be downloaded from https://patsorn.me/projects/tsbir/data/tsbir_model_final.pt
|
| 18 |
+
|
| 19 |
+
This repo is based on open_clip implementation from https://github.com/mlfoundations/open_clip
|
| 20 |
+
|
| 21 |
+
## Prerequisites
|
| 22 |
+
- Pytorch
|
| 23 |
+
|
| 24 |
+
## Getting Started
|
| 25 |
+
|
| 26 |
+
Simply run notebooks/Retrieval_Demo.ipynb, you can use your own set of images and sketches by modifying the images/ and sketches/ folder accordingly.
|
| 27 |
+
|
| 28 |
+
## Download Models
|
| 29 |
+
Pre-trained models
|
| 30 |
+
- <a href='https://patsorn.me/projects/tsbir/data/tsbir_model_final.pt' > Pre-trained models </a>
|
| 31 |
+
|
| 32 |
+
## Citation
|
| 33 |
+
If you find it this code useful for your research, please cite:
|
| 34 |
+
|
| 35 |
+
"A Sketch Is Worth a Thousand Words: Image Retrieval with Text and Sketch"
|
| 36 |
+
|
| 37 |
+
[Patsorn Sangkloy](https://patsorn.me), [Wittawat Jitkrittum](http://wittawat.com/), Diyi Yang, James Hays in ECCV, 2022.
|
| 38 |
+
```
|
| 39 |
+
@article{
|
| 40 |
+
tsbir2022,
|
| 41 |
+
author = {Patsorn Sangkloy and Wittawat Jitkrittum and Diyi Yang and James Hays},
|
| 42 |
+
title = {A Sketch is Worth a Thousand Words: Image Retrieval with Text and Sketch},
|
| 43 |
+
journal = {European Conference on Computer Vision, ECCV},
|
| 44 |
+
year = {2022},
|
| 45 |
+
}
|
| 46 |
+
```
|
| 47 |
+
|