toyota-celica / README.md
NinjaGoose's picture
Upload folder using huggingface_hub
03ba55d verified
metadata
tags:
  - text-to-image
  - flux
  - lora
  - diffusers
  - template:sd-lora
  - ai-toolkit
widget:
  - text: >-
      A stunning anime-style illustration of a bustling Tokyo auto garage at
      night, where a sleek black  toyota_celica is undergoing maintenance under
      the warm glow of overhead shop lights. The garage is filled with energy,
      with four skilled mechanics in red and white uniforms working
      meticulously—one carefully refueling the tank, another swapping out a tire
      with precision, while the others inspect the engine. The air is thick with
      the hum of tools and the scent of motor oil, with neon kanji signs
      flickering outside, casting a cool blue glow on the concrete floor. The
      atmosphere feels alive—an electric blend of high-performance car culture
      and the dreamy warmth of hand-drawn anime detailing, capturing the heart
      of Tokyo’s underground tuning scene.
    output:
      url: samples/1742057017448__000002000_0.jpg
  - text: >-
      A stunning anime-style illustration of a bustling Tokyo auto garage at
      night, where a sleek red toyota_celica is undergoing maintenance under the
      warm glow of overhead shop lights. The garage is filled with energy, with
      four skilled mechanics in red and white uniforms working meticulously
    output:
      url: samples/1742057068331__000002000_1.jpg
  - text: >-
      A stunning anime-style illustration of a bustling Tokyo auto garage at
      night, where a sleek black  toyota_celica is undergoing maintenance under
      the warm glow of overhead shop lights. 
    output:
      url: samples/1742057119149__000002000_2.jpg
base_model: black-forest-labs/FLUX.1-dev
instance_prompt: toyota_celica
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

toyota-celica

Model trained with AI Toolkit by Ostris

Prompt
A stunning anime-style illustration of a bustling Tokyo auto garage at night, where a sleek black toyota_celica is undergoing maintenance under the warm glow of overhead shop lights. The garage is filled with energy, with four skilled mechanics in red and white uniforms working meticulously—one carefully refueling the tank, another swapping out a tire with precision, while the others inspect the engine. The air is thick with the hum of tools and the scent of motor oil, with neon kanji signs flickering outside, casting a cool blue glow on the concrete floor. The atmosphere feels alive—an electric blend of high-performance car culture and the dreamy warmth of hand-drawn anime detailing, capturing the heart of Tokyo’s underground tuning scene.
Prompt
A stunning anime-style illustration of a bustling Tokyo auto garage at night, where a sleek red toyota_celica is undergoing maintenance under the warm glow of overhead shop lights. The garage is filled with energy, with four skilled mechanics in red and white uniforms working meticulously
Prompt
A stunning anime-style illustration of a bustling Tokyo auto garage at night, where a sleek black toyota_celica is undergoing maintenance under the warm glow of overhead shop lights.

Trigger words

You should use toyota_celica to trigger the image generation.

Download model and use it with ComfyUI, AUTOMATIC1111, SD.Next, Invoke AI, etc.

Weights for this model are available in Safetensors format.

Download them in the Files & versions tab.

Use it with the 🧨 diffusers library

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('NinjaGoose/toyota-celica', weight_name='toyota-celica.safetensors')
image = pipeline('A stunning anime-style illustration of a bustling Tokyo auto garage at night, where a sleek black  toyota_celica is undergoing maintenance under the warm glow of overhead shop lights. The garage is filled with energy, with four skilled mechanics in red and white uniforms working meticulously—one carefully refueling the tank, another swapping out a tire with precision, while the others inspect the engine. The air is thick with the hum of tools and the scent of motor oil, with neon kanji signs flickering outside, casting a cool blue glow on the concrete floor. The atmosphere feels alive—an electric blend of high-performance car culture and the dreamy warmth of hand-drawn anime detailing, capturing the heart of Tokyo’s underground tuning scene.').images[0]
image.save("my_image.png")

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