Instructions to use obvious-research/onlyflow with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use obvious-research/onlyflow with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("obvious-research/onlyflow", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Fix GitHub link and add BibTeX citation
#1
by arlaz - opened
README.md
CHANGED
|
@@ -23,7 +23,7 @@ library_name: diffusers
|
|
| 23 |
|
| 24 |
## Project [website](https://obvious-research.github.io/onlyflow/)
|
| 25 |
|
| 26 |
-
## Code, available on
|
| 27 |
|
| 28 |
|
| 29 |
## Model weight release, on [HuggingFace](https://huggingface.co/obvious-research/OnlyFlow)
|
|
@@ -61,4 +61,16 @@ We appreciate any help, feel free to reach out! You can contact us:
|
|
| 61 |
|
| 62 |
## About Obvious Research
|
| 63 |
|
| 64 |
-
Obvious Research is an Artificial Intelligence research laboratory dedicated to creating new AI artistic tools, initiated by the artists’ trio [Obvious](https://obvious-art.com/), in partnership with La Sorbonne Université.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
|
| 24 |
## Project [website](https://obvious-research.github.io/onlyflow/)
|
| 25 |
|
| 26 |
+
## [Code, available on GitHub](https://github.com/obvious-research/OnlyFlow)
|
| 27 |
|
| 28 |
|
| 29 |
## Model weight release, on [HuggingFace](https://huggingface.co/obvious-research/OnlyFlow)
|
|
|
|
| 61 |
|
| 62 |
## About Obvious Research
|
| 63 |
|
| 64 |
+
Obvious Research is an Artificial Intelligence research laboratory dedicated to creating new AI artistic tools, initiated by the artists’ trio [Obvious](https://obvious-art.com/), in partnership with La Sorbonne Université.
|
| 65 |
+
|
| 66 |
+
## BibTeX
|
| 67 |
+
|
| 68 |
+
```bibtex
|
| 69 |
+
@inproceedings{koroglu2025onlyflow,
|
| 70 |
+
author = {Koroglu, Mathis and Caselles-Dupr\'e, Hugo and Jeanneret, Guillaume and Cord, Matthieu},
|
| 71 |
+
title = {OnlyFlow: Optical Flow based Motion Conditioning for Video Diffusion Models},
|
| 72 |
+
booktitle = {CVPR Workshops},
|
| 73 |
+
year = {2025},
|
| 74 |
+
pages = {6280--6290}
|
| 75 |
+
}
|
| 76 |
+
```
|