Instructions to use lambda/sd-pokemon-diffusers with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use lambda/sd-pokemon-diffusers with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("lambda/sd-pokemon-diffusers", 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
- Local Apps
- Draw Things
- DiffusionBee
getattr(): attribute name must be string
#2
by akabynda - opened
After copying the code from the card, I get the following error:
Traceback (most recent call last):
File "/Users/akabynda/myStreamlit/main.py", line 8, in
pipe = StableDiffusionPipeline.from_pretrained(pretrained_model_name_or_path="lambdalabs/sd-pokemon-diffusers", torch_dtype=torch.float16)
File "/Users/akabynda/myStreamlit/venv/lib/python3.8/site-packages/diffusers/pipeline_utils.py", line 373, in from_pretrained
load_method = getattr(class_obj, load_method_name)
TypeError: getattr(): attribute name must be string
any solution to this?
EDIT: solved by using the newest version of diffusers