File size: 4,649 Bytes
50688bd ebe712b 6eecb7b ebe712b 50688bd ebe712b 6eecb7b ebe712b a900e6c ebe712b 6eecb7b ebe712b 6eecb7b ebe712b 6eecb7b ebe712b bba5d9a ebe712b bba5d9a ebe712b 6eecb7b ebe712b 6eecb7b ebe712b 6eecb7b ebe712b 6eecb7b ebe712b |
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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
---
language:
- en
license: creativeml-openrail-m
thumbnail: "https://huggingface.co/Guizmus/SDArt_something/resolve/main/showcase.jpg"
tags:
- stable-diffusion
- text-to-image
- image-to-image
---
# PoW : Something
![Showcase](https://huggingface.co/Guizmus/SDArt_something/resolve/main/showcase.jpg)
## Theme
Today it loomed. It loomed over you in a way that was unexplainable. No matter how hard you had tried to articulate yourself, be precise, be… yourself? Something wasn’t working. Your mind felt filled with the weight of sudden change. In a blank room you sat, with nothing but a single mirror before you.
Except… this reflection was not of you… was it? Engraved into the mirror's simplistic design was the etched word: “Something”.
You looked around for a sign or clue to leave, but all that remained was what was before you.
Your first chapter focuses on the feeling of being lost and disconnected from oneself. You are encouraged to explore your own identity and inner selves through artwork that represents your "something" - the feeling or emotion that is difficult to articulate but looms over you. A journey of self-expression and self-discovery - the goal is to capture the essence of the emotion and express it in a way that is unique to you.
Create the beginnings towards a journey of self-expression and self-discovery.
* ”Something” represents a dissected, unspoken, or emotionally charged representation of yourself. It is the part of you that isn’t easily displayed at surface level, but can be found with a little…digging.
* When we don’t feel like ourselves– who are we? Who is the “Something” that can shoulder or absorb heavy things? The beauty of “Something” is that it can hide behind abstraction, unlike us. It can hide behind fractals, colors, stretched shapes, intense or dull hues–
* Show us your Reverse self-portraits.
* Something is simply something. Something can be anything
Find your something. Pull it out from within yourself. And embark on this journey with us this week:
“Something, Somewhere, Someone.”
This will be a 3 part story depicting the challenges of facing and overcoming our “somethings”-- and finding “everything”.
Let’s take the first step together.
## Model description
This is a model related to the "Picture of the Week" contest on Stable Diffusion discord.
I try to make a model out of all the submission for people to continue enjoy the theme after the even, and see a little of their designs in other people's creations. The token stays "SDArt" and I balance the learning on the low side, so that it doesn't just replicate creations.
The total dataset is made of 50 pictures. It was trained on [Stable diffusion 1.5](https://huggingface.co/runwayml/stable-diffusion-v1-5). I used [EveryDream](https://github.com/victorchall/EveryDream2trainer) to do the training, 100 total repeat per picture. The pictures were tagged using the token "SDArt", and an arbitrary token I choose. The dataset is provided below, as well as a list of usernames and their corresponding token.
The recommended sampling is k_Euler_a or DPM++ 2M Karras on 20 steps, CFGS 7.5 .
## Trained tokens
* SDArt
* ohwx
* aten
* fcu
* cees
* chor
* cmdr
* mth
* nrf
* elio
* gani
* pfa
* kprc
* kuro
* ndi
* asot
* bsp
* psst
* sqm
* irgc
* guyz
* hela
* iru
* lexa
* dany
* lpg
* mede
* mib
* aroa
* avel
* vaw
* zaki
* nigh
* niu
* guin
* urd
* vini
* pz
* crit
* siam
* spon
* taku
* ufos
* phol
* uzzi
* vaca
* dds
* yel
* pte
* oxi
* yte
## Download links
[SafeTensors](https://huggingface.co/Guizmus/SDArt_something/resolve/main/SDArt_something.safetensors)
[CKPT](https://huggingface.co/Guizmus/SDArt_something/resolve/main/SDArt_something.ckpt)
[Dataset](https://huggingface.co/Guizmus/SDArt_something/resolve/main/dataset.zip)
[Old version](https://huggingface.co/Guizmus/SDArt_something/resolve/main/PoWStyle-Something.safetensors)
## 🧨 Diffusers
This model can be used just like any other Stable Diffusion model. For more information,
please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/optimization/onnx), [MPS](https://huggingface.co/docs/diffusers/optimization/mps) and/or [FLAX/JAX]().
```python
from diffusers import StableDiffusionPipeline
import torch
model_id = "Guizmus/SDArt_something"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe = pipe.to("cuda")
prompt = "SDArt oxi"
image = pipe(prompt).images[0]
image.save("./SDArt.png")
``` |