|
--- |
|
tags: |
|
- text-to-image |
|
- flux |
|
- lora |
|
- diffusers |
|
- template:sd-lora |
|
- ai-toolkit |
|
widget: |
|
- text: "Spider-Man as an astronaut traveling to the universe, wearing a futuristic\ |
|
\ white and red space suit with the signature spider logo on his chest. The\ |
|
\ suit is highly detailed, with glowing blue lights and web-like textures\ |
|
\ across the helmet visor and armor plates. Spider-Man is floating weightlessly\ |
|
\ in deep space, surrounded by vibrant nebulas, distant stars, and glowing\ |
|
\ planets in the background. His pose is dynamic and heroic, one hand reaching\ |
|
\ out as if he\u2019s about to shoot a web in zero gravity. The helmet reflects\ |
|
\ the cosmic scenery, and faint spider-web patterns glimmer in the cosmic\ |
|
\ light. The atmosphere is awe-inspiring, cinematic, and full of sci-fi realism,\ |
|
\ blending Spider-Man's iconic superhero aesthetics with the wonders of space." |
|
output: |
|
url: samples/1734440948709__000006000_0.jpg |
|
- text: "A superhero sitting at a wooden table in a cozy sushi restaurant, eating\ |
|
\ sushi with chopsticks. The superhero wears a vibrant, detailed costume with\ |
|
\ a cape and mask, reflecting their iconic persona. The scene is illustrated\ |
|
\ in the style of Vincent van Gogh\u2019s paintings, featuring swirling brush\ |
|
\ strokes, rich colors, and textured patterns reminiscent of Starry Night\ |
|
\ or Caf\xE9 Terrace at Night. The sushi rolls are meticulously painted with\ |
|
\ vibrant reds, greens, and whites, arranged beautifully on a wooden platter.\ |
|
\ The background glows warmly, with the restaurant interior full of swirling\ |
|
\ lights, lanterns, and dreamy textures. The superhero's pose is relaxed and\ |
|
\ joyful, appreciating the sushi in this unique, painterly world. The overall\ |
|
\ atmosphere is whimsical, colorful, and artistic." |
|
output: |
|
url: samples/1734440969497__000006000_1.jpg |
|
base_model: black-forest-labs/FLUX.1-dev |
|
|
|
license: other |
|
license_name: flux-1-dev-non-commercial-license |
|
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md |
|
--- |
|
|
|
# terry |
|
Model trained with [AI Toolkit by Ostris](https://github.com/ostris/ai-toolkit) |
|
<Gallery /> |
|
|
|
## Trigger words |
|
|
|
No trigger words defined. |
|
|
|
## Download model and use it with ComfyUI, AUTOMATIC1111, SD.Next, Invoke AI, etc. |
|
|
|
Weights for this model are available in Safetensors format. |
|
|
|
[Download](/maver1chh/terry/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('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda') |
|
pipeline.load_lora_weights('maver1chh/terry', weight_name='terry.safetensors') |
|
image = pipeline('Spider-Man as an astronaut traveling to the universe, wearing a futuristic white and red space suit with the signature spider logo on his chest. The suit is highly detailed, with glowing blue lights and web-like textures across the helmet visor and armor plates. Spider-Man is floating weightlessly in deep space, surrounded by vibrant nebulas, distant stars, and glowing planets in the background. His pose is dynamic and heroic, one hand reaching out as if he’s about to shoot a web in zero gravity. The helmet reflects the cosmic scenery, and faint spider-web patterns glimmer in the cosmic light. The atmosphere is awe-inspiring, cinematic, and full of sci-fi realism, blending Spider-Man's iconic superhero aesthetics with the wonders of space.').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) |
|
|
|
|