How to use Freepik/F-Lite-Texture with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Freepik/F-Lite-Texture", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0]
If possible please provide fp8 or GGUF models. Thanks in advance.
@city96 is the expert in the community without doubt. Maybe he could help us with that for both Freepik/F-Lite and Freepik/F-Lite-Texture
· Sign up or log in to comment