File size: 1,635 Bytes
974f196
 
826a86f
 
 
974f196
 
 
 
826a86f
 
db02730
974f196
826a86f
 
 
 
 
 
974f196
e2cb681
 
974f196
 
 
 
 
 
826a86f
 
 
 
 
 
974f196
826a86f
 
 
 
 
 
974f196
 
 
826a86f
 
 
974f196
 
826a86f
974f196
826a86f
974f196
826a86f
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
43
44
45
46
47
48
49
50
51
52
53
54
---
library_name: diffusers
license: mit
tags:
- art
---

### Model Description

This model combines the capabilities of the stable diffusion medium model with a Civit AI text-to-image model fine-tuned on a custom dataset of high-quality images. 
It aims to generate realistic and detailed images based on textual prompts.
![batman](imgs/007_resized.png)

- **Developed by:** [M.Cihan Yalçın](https://www.linkedin.com/in/chanyalcin/)
- **Model type:** Stable Diffusion
- **License:** MIT
- **Finetuned from models:**
  - [stabilityai/stable-diffusion-3-medium-diffusers](https://huggingface.co./stabilityai/stable-diffusion-3-medium)
  - [CyberRealistic](https://civitai.com/models/15003/cyberrealistic)

![008.png](imgs/008.png)
![009.png](imgs/009.png)

## Uses


### Direct Use

```python
from diffusers import DiffusionPipeline
import torch
pipeline = DiffusionPipeline.from_pretrained(
                    "Chan-Y/Cyber-Stable-Realistic", 
                    torch_dtype=torch.float16).to("cuda")

prompt = "A bowl of ramen shaped like a cute kawaii bear, by Feng Zikai"
negative = ""
image = pipeline(prompt,
                negative_prompt=negative).images[0]
image
```

## Bias, Risks, and Limitations

- The model may not always perfectly capture highly complex or abstract concepts.
- The quality of the output can be influenced by the specificity and clarity of the prompt.
- Ethical considerations should be taken into account when generating images to avoid misuse.


## Finetuning Details

### Finetuning Data

- Model is finetuned with sentetic high quality images collected from high performance Text-to-Image models.