AlekseyCalvin's picture
Update README.md
4c91aad verified
|
raw
history blame
3.41 kB
---
tags:
- text-to-image
- sd3
- lora
- diffusers
- template:sd-lora
- ai-toolkit
- history
- photo
- rank256
widget:
- text: 'HST style photo of realistic green-eyed black and white furred cat
playing a piano and singing while pills rain from the sky,
large 3d font caption text of /PILLZAR! WHERE YOUR PILLS ARE!/
amateur photo shot on a cell phone'
output:
url: sd35_1750i.jpg
- text: 'HST style photograph of a dark CIA agent Koala leaping at an excited Julian Assange and trying to steal his pills from his pockets, caption /PILLZAR! WHERE YOUR PILLS ARE!/, award-winning art photo'
output:
url: sd35_1750ii.jpg
- text: ' HST style photorealistic communist poster with title text "JOIN RCA!", under an autochrome color photograph of Vladimir Lenin at a Dada Cabaret in Zurich circa 1916, dancing next to a red feathered drunken dinosaur who happens to be an early conceptual artist. Singing excitedly to his new dancing partner, Lenin has a face full of contageous awe, his moderately blemished lined skin with visible pores flushing with anxious excitement, and his bald spot sweatily glistening under the warm lights of the Zurich cabaret. In the background, Krupskaya and Inessa Armand sit side-by-side by a bar stand and uproriously laugh at the dancers. Kodachrome narrative photo.'
output:
url: sd35_1750_v.jpg
- text: >-
HST style autochrome photo with title / PILLZAR! THAT IS WHERE YOUR PILLS ARE! /
of an ether-drugged Pikachu sitting in a white plastic cylindical stacked
medication dispenser with an unscrewable top, while gowned Marina Tsvetaeva
gently pets pikachu on the head, David Lynch and Mucha styles,
detailed faces, in a European city circa 1920
output:
url: sd35_1750_iv.jpg
base_model: stabilityai/stable-diffusion-3.5-large
license: creativeml-openrail-m
language:
- en
pipeline_tag: text-to-image
---
# HSTsd3ii
Model trained with [AI Toolkit by Ostris](https://github.com/ostris/ai-toolkit)
<Gallery />
## Trigger words
HST style autochrome photo
## Download model and use it with ComfyUI, AUTOMATIC1111, SD.Next, Invoke AI, etc.
Weights for this model are available in Safetensors format.
[Download](/AlekseyCalvin/HSTsd3iii/tree/main) them in the Files & versions tab.
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
```py
from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-3.5-large', torch_dtype=torch.float16).to('cuda')
pipeline.load_lora_weights('AlekseyCalvin/HSTsd3iii', weight_name='HSTsd3ii.safetensors')
image = pipeline(' HST style photorealistic communist poster with text "JOIN RCA!", over autochrome color photo of Vladimir Lenin at a Dada cabaret in 1916 Zurich, dancing with a red feathered drunken dinosaur who is an early conceptual artist. Lenin has a face full of contageous awe, his blemished skin with visible pores flushing with anxious excitement and his famous bald spot sweatily glistening under the cabaret's warm lights. In the back, Krupskaya and Inessa Armand uproriously laugh at the dancers.').images[0]
image.save("my_image.png")
```
For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)