prithivMLmods's picture
Update README.md
8ec3223 verified
metadata
license: creativeml-openrail-m
pipeline_tag: text-to-image
tags:
  - text-to-image
  - turbo
  - stable-diffusion
  - stable-diffusion-xl
widget:
  - text: natural scenario
    output:
      url: image7.jpeg
  - text: mars rover
    output:
      url: image1.jpeg
  - text: luminescent boat
    output:
      url: image3.jpeg
  - text: Elon Musk, SAI Pixel Art
    output:
      url: cc1.jpeg
  - text: rusty robot cartoon
    output:
      url: image5.jpeg
  - text: ornamental realistic eye
    output:
      url: image0.jpeg
inference:
  parameters:
    num_inference_steps: 8

row01

SDXL Turbo x ComfyUI x Automatic1111

Prompt
natural scenario
Prompt
mars rover
Prompt
luminescent boat
Prompt
Elon Musk, SAI Pixel Art
Prompt
rusty robot cartoon
Prompt
ornamental realistic eye

AUTOMATIC1111 : This could refer to a specific software or system named AUTOMATIC1111 that deals with tensor operations or machine learning tasks. The .safetensors extension might be used to save or serialize tensor data in a safe and structured manner.

ComfyUI: ComfyUI might be a user interface library or framework, and *.safetensors could be related to some functionality within it, perhaps for managing data or state related to tensors in a safe manner.

InvokeAI: If InvokeAI is a platform or tool related to artificial intelligence or machine learning, *.safetensors could be a file format used within it for storing tensor-related information securely.

Use it with diffusers 🧨

from diffusers import AutoPipelineForText2Image
import torch
        
pipeline = AutoPipelineForText2Image.from_pretrained('Rodan-SDXL-Turbo-Art-Generator-Engine', torch_dtype=torch.float16).to('cuda')        
image = pipeline('A mecha robot in a favela', num_inference_steps=2).images[0]