Instructions to use zzzz12334/Policy_World_Model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use zzzz12334/Policy_World_Model with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("zzzz12334/Policy_World_Model", 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
Improve model card: Add robotics tag, links, abstract, and usage example
#1
by nielsr HF Staff - opened
This PR enhances the model card for the Policy World Model by:
- Adding the
pipeline_tag: roboticsto correctly categorize the model on the Hub. - Specifying
library_name: transformersbased on the provided sample usage. - Including direct links to the paper, the project page, and the GitHub repository.
- Adding a brief abstract summary for quick understanding.
- Providing a sample usage code snippet directly from the GitHub README to demonstrate inference.