Update README.md
Browse files
README.md
CHANGED
@@ -1,4 +1,10 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
dataset_info:
|
3 |
features:
|
4 |
- name: image
|
@@ -28,4 +34,32 @@ configs:
|
|
28 |
data_files:
|
29 |
- split: train
|
30 |
path: data/train-*
|
|
|
|
|
|
|
31 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
license: mit
|
5 |
+
task_categories:
|
6 |
+
- text-to-image
|
7 |
+
- unconditional-image-generation
|
8 |
dataset_info:
|
9 |
features:
|
10 |
- name: image
|
|
|
34 |
data_files:
|
35 |
- split: train
|
36 |
path: data/train-*
|
37 |
+
tags:
|
38 |
+
- art
|
39 |
+
pretty_name: Housey House v2 - PixArt Alpha
|
40 |
---
|
41 |
+
|
42 |
+
|
43 |
+
# Housey Home v2: PixArt Alpha Split
|
44 |
+
|
45 |
+
I was in the process of producing a fully synthetic dataset for ungrounded image generation using an unconventional combination of layers. As such, I needed a dataset of highly similar objects with 'themes'. In order to produce `log(x, y)` combinations of options in the final model. This is that dataset.
|
46 |
+
|
47 |
+
The initial ( 07/15/2024 ) release includes ~2k unique houses, each processed using a VQA, [PixArt-alpha/PixArt-Sigma-XL-2-1024-MS](https://huggingface.co/PixArt-alpha/PixArt-Sigma-XL-2-1024-MS), to be precise.
|
48 |
+
|
49 |
+
Release 2 split PixArt Alpha includes ~2.1k unique houses, each processed more efficiently and using a more powerful GPU via parallel model loading followed by sequential but accelerated inference and diffusion with each.
|
50 |
+
|
51 |
+
```
|
52 |
+
# This code procedurally generates a simple description based upon the input lists of string selections. Feel free to expand or use as MIT.
|
53 |
+
word_salad = [
|
54 |
+
["cartoon", "happy", "goofy", "virant", "whymsical"],
|
55 |
+
["realistic", "ultra hd", "best quality", "high quality", "masterpiece"],
|
56 |
+
["horrifying", "nightmare", "wicked", "evil", "dark", "creepy", "scary"]
|
57 |
+
]
|
58 |
+
sizes = [
|
59 |
+
["large mansion", "mansion", "manor", "estate", "enournmous house", "palace"],
|
60 |
+
["medium house", "home", "residence", "big house", "large house"],
|
61 |
+
["tiny shack", "cottage", "small house", "miniature house", "dinimutive house", "shack"]
|
62 |
+
]
|
63 |
+
post_prompt = ", ".join(chosen_salad := random.choice(word_salad)) + ", " + ", ".join(chosen_sizes := random.choice(sizes))
|
64 |
+
description = "A " + sizes[0][0] + ", " + word_salad[0][0]
|
65 |
+
```
|