Instructions to use phamtrongthang/medsteer with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use phamtrongthang/medsteer with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("PixArt-alpha/PixArt-XL-2-512x512", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("phamtrongthang/medsteer") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Add model card for MedSteer
#1
by nielsr HF Staff - opened
Hi! I'm Niels from the Hugging Face community science team. I noticed this repository was missing a model card. I've opened this PR to add a README that includes:
- Metadata for better discoverability (license, pipeline tag, library name, base model).
- A link to the associated paper.
- A link to the official GitHub repository.
- Installation and sample usage code extracted from your repository's documentation.
Adding a model card helps researchers and practitioners find and use your work more easily!
Thank you so much! I forgot.
phamtrongthang changed pull request status to merged