CoolFace
Modelpublic

Akimitsujiro/furryshota

sourceHugging Faceotherupdated 2y agoView on Hugging Face
0likes14downloads
Model Card

FurryShota

<Gallery />

Model description

<p>About me: <a target="blank" rel="ugc" href="https://potofu.me/akimitsujiro">https://potofu.me/akimitsujiro</a></p><p>Download model: <a target="blank" rel="ugc" href="https://huggingface.co/Akimitsujiro/FurSho">https://huggingface.co/Akimitsujiro/FurSho</a></p>

Trigger words

You should use Furry, Male to trigger the image generation.

Download model

Weights for this model are available in Safetensors format.

Download them in the Files & versions tab.

Use it with the 🧨 diffusers library

py
from diffusers import AutoPipelineForText2Image
import torch

pipeline = AutoPipelineForText2Image.from_pretrained('runwayml/stable-diffusion-v1-5', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('Akimitsujiro/furryshota', weight_name='FurSho.safetensors')
image = pipeline('`Furry`, `Male`').images[0]

For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers