File size: 432 Bytes
60d3094 6aed2a4 f392e77 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
---
license: mit
---
# Doduo: Dense Visual Correspondence from Unsupervised Semantic-Aware Flow
[Zhenyu Jiang](http://zhenyujiang.me), [Hanwen Jiang](https://hwjiang1510.github.io/), [Yuke Zhu](https://www.cs.utexas.edu/~yukez/)
University of Texas at Austin
## Usage
```python
from transformers import AutoModel
model = AutoModel.from_pretrained("stevetod/doduo", trust_remote_code=True)
flow = model(frame_src, frame_dst)
``` |