Instructions to use stevetod/doduo with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use stevetod/doduo with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="stevetod/doduo", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("stevetod/doduo", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -6,4 +6,12 @@ license: mit
|
|
| 6 |
|
| 7 |
[Zhenyu Jiang](http://zhenyujiang.me), [Hanwen Jiang](https://hwjiang1510.github.io/), [Yuke Zhu](https://www.cs.utexas.edu/~yukez/)
|
| 8 |
|
| 9 |
-
University of Texas at Austin
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
|
| 7 |
[Zhenyu Jiang](http://zhenyujiang.me), [Hanwen Jiang](https://hwjiang1510.github.io/), [Yuke Zhu](https://www.cs.utexas.edu/~yukez/)
|
| 8 |
|
| 9 |
+
University of Texas at Austin
|
| 10 |
+
|
| 11 |
+
## Usage
|
| 12 |
+
|
| 13 |
+
```python
|
| 14 |
+
from transformers import AutoModel
|
| 15 |
+
model = AutoModel.from_pretrained("stevetod/doduo", trust_remote_code=True)
|
| 16 |
+
flow = model(frame_src, frame_dst)
|
| 17 |
+
```
|