Instructions to use JSYuuu/ThinkGen with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use JSYuuu/ThinkGen with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("JSYuuu/ThinkGen", 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
Add paper link and improve model card
#1
by nielsr HF Staff - opened
Hi! I'm Niels from the Hugging Face community team. I've opened this PR to improve your model card. It now includes:
- A link to the paper ThinkGen: Generalized Thinking for Visual Generation.
- A link to the official GitHub repository.
- A brief introduction and the list of authors.
- A citation section for the paper.
- Organized sample usage and setup code for better clarity.
These additions help researchers find and attribute your work correctly while making it easier for users to get started.
JSYuuu changed pull request status to merged