File size: 2,048 Bytes
3418bed 9b7cbf6 3418bed 6a30551 adcc2e2 5583d8a 8e5d7d8 6a30551 8e5d7d8 c8e4bda 2362933 8e5d7d8 05fdd25 8e5d7d8 f48ffeb 6a30551 c15670d 6a30551 c15670d 34fc8eb c15670d 6a30551 8e8ddc5 |
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 36 37 38 39 40 41 42 |
---
license: creativeml-openrail-m
tags:
- text-to-image
- stable-diffusion
---
# 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, blue eyes, yellow hair"
image = pipe(prompt).images[0]
image.save("./olivia_img.png")
```
## 🐶 Examples
ด้านล่างนี้คือตัวอย่างบางส่วนของภาพที่สร้างขึ้นโดยใช้ Olivia V1.0 และไม่รวม VAE :

```
Prompt: 1girl, armor, armored_dress, blonde_hair, parkling_eyes, blue_eyes, blurry, blurry_background, braid, chain, cross, depth_of_field, headpiece, jeanned'arc(fate), jeanned'arc(fate/apocrypha), lips, long_hair, looking_at_viewer, rain, realistic, solo, upper_body
Steps: 50, Sampler: Euler a, CFG scale: 7.5
```

```
Prompt: 1girl, detailed, intricate, elegant, highly detailed, digital painting, artstation, concept art, matte, sharp focus, illustration, pink_hair, sparkling_eyes, pink_eyes, decorated with flowers, by dan mumford, yusuke murata, makoto shinkai, ross tran
Steps: 50, Sampler: Euler a, CFG scale: 7.5
``` |