diffusers
diffusers copied to clipboard
how can i know what the model base are
from transformers import DiffusionPipeline
base_model_id = "anything-v3-fp16-pruned.safetensors"
pipeline = DiffusionPipeline.from_pretrained( base_model_id, model_dir=model_dir, use_safetensors=True, )
I found anything-v3-fp16-pruned.safetensors in Hugging Face. You can also see the config files of the components:
print(pipeline.config)
print(pipeline.vae.config)
thnx bro @standardAI