Instructions to use RED-AIGC/StoryMaker with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use RED-AIGC/StoryMaker with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("RED-AIGC/StoryMaker", 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
ERROR at: from ip_adapter.ip_adapter_faceid import faceid_plus
#9
by Oedon42 - opened
I got the error that 'faceid_plus' CANNOT be found in ip_adapter_faceid
According to the parameters and the function calling, I suppose the correct code is:
from ip_adapter.ip_adapter_faceid import MLPProjModel
But I'm not quite sure yet. Did anybody encountered the same issue?
- Not MLPProjModel, but ProjPlusModel 馃槸