File size: 1,166 Bytes
f75f22f
3418bed
 
f75f22f
 
 
 
1392277
 
 
e5b6ee5
1392277
a695fa5
7ecf7c4
33f0666
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
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 อื่นๆ [คลิกเพื่ออ่านเพิ่มเติม](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion)

```python
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")
```