metadata
license: creativeml-openrail-m
tags:
- stable-diffusion
- stable-diffusion-diffusers
- text-to-image
- diffusers
inference: true
widget:
- text: 1girl, beautiful girl, face, yellow eyes, blue hair
example_title: example 1girl
Olivia V1.0
ยินดีต้อนรับสู่ Olivia V1.0 โมเดลนี้เป็นเพียงแค่การสาธิต และอยู่ในช่วงระหว่างการทดสอบเท่านั้น!
🧨 Diffusers
โมเดลนี้สามารถใช้งานได้เหมือนกับโมเดล Stable Diffusion อื่นๆ คลิกเพื่ออ่านเพิ่มเติม
from diffusers import StableDiffusionPipeline
import torch
model_id = "ShibaDeveloper/olivia-v1.0"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe = pipe.to("cuda")
prompt = "1girl, beautiful girl, face, yellow eyes, blue hair"
image = pipe(prompt).images[0]
image.save("./olivia_img.png")