cassell1337 commited on
Commit
0cdb7f9
1 Parent(s): b42eec8

first push

Browse files
app.py ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+
4
+
5
+ def main(gender, age, height, body, Style, boobsize, asssize, skin, hair, hairstyle, eyes, tops, bottoms):
6
+ stringgg = ""
7
+ if Style != "None":
8
+ # "None", "Realistic", "Anime", "Photo", "selfie"
9
+ if Style == "Realistic":
10
+ stringgg += "Realistic, realism, "
11
+ elif Style == "Anime":
12
+ stringgg += "amime style, "
13
+ elif Style == "Photo":
14
+ stringgg += "pic, photo, "
15
+ elif Style == "selfie":
16
+ stringgg += "Selfie, "
17
+ stringgg += str(gender)+", "
18
+ stringgg += str(age)+" years old, "
19
+ stringgg += str(height)+"ft, "
20
+ stringgg += str(body)+", "
21
+ stringgg += str(hair)+" hair color, "
22
+ stringgg += str(hairstyle)+" hair style, "
23
+ stringgg += str(eyes)+" eyes, "
24
+ if tops != "None":
25
+ stringgg += str(tops)+", "
26
+ if bottoms != "None":
27
+ stringgg += str(bottoms)+", "
28
+ if tops == "None" and bottoms == "None":
29
+ stringgg += " Nude, "
30
+ stringgg += str(skin)+" skin tone, "
31
+ if boobsize != "None":
32
+ stringgg += str(boobsize)+" cup size, "
33
+ if asssize != "None":
34
+ stringgg += str(asssize)+" butt size"
35
+ print(stringgg)
36
+ return stringgg
37
+
38
+
39
+
40
+ gender = gr.inputs.Radio(["female", "male"], default="female")
41
+ age = gr.inputs.Slider(minimum=0, maximum=100, default=25, label="Age")
42
+ height = gr.inputs.Slider(minimum=1, maximum=10, default=5, label="Height")
43
+
44
+ # body stlye
45
+ with open('attributes/body.txt') as f:
46
+ body = f.read().splitlines()
47
+ body = gr.inputs.Radio(body, default="slim", label="Body Style")
48
+
49
+ Style = gr.inputs.Radio(["None", "Realistic", "Anime", "Photo", "selfie"], default="None", label="Style")
50
+ # boob size
51
+ with open('attributes/boobsize.txt') as f:
52
+ boobsize = f.read().splitlines()
53
+ boobsize = gr.inputs.Dropdown(boobsize, default="None", label="Boobe Size")
54
+
55
+ # ass size
56
+ with open('attributes/asssize.txt') as f:
57
+ asssize = f.read().splitlines()
58
+ asssize = gr.inputs.Dropdown(asssize, default="None", label="Ass Size")
59
+
60
+ #skin color
61
+ with open('attributes/skin.txt') as f:
62
+ skin = f.read().splitlines()
63
+ skin = gr.inputs.Dropdown(skin, default="White", label="Skin Tone")
64
+
65
+ # hair color
66
+ with open('attributes/haircolor.txt') as f:
67
+ hair = f.read().splitlines()
68
+ hair = gr.inputs.Dropdown(hair, default="Blonde", label="Hair Color")
69
+
70
+ # hair style
71
+ with open('attributes/hairstyle.txt') as f:
72
+ hairstyle = f.read().splitlines()
73
+ hairstyle = gr.inputs.Dropdown(hairstyle, default="Bob", label="Hair Style")
74
+
75
+ # eye color
76
+ with open('attributes/eyecolor.txt') as f:
77
+ eyes = f.read().splitlines()
78
+ eyes = gr.inputs.Dropdown(eyes, default="Blue", label="Eye Color")
79
+
80
+ # tops
81
+ with open('attributes/top.txt') as f:
82
+ top = f.read().splitlines()
83
+ tops = gr.inputs.Dropdown(top, default="None", label="Tops")
84
+
85
+ # bottoms
86
+ with open('attributes/bottoms.txt') as f:
87
+ bottom = f.read().splitlines()
88
+ bottoms = gr.inputs.Dropdown(bottom, default="None", label="Bottoms")
89
+
90
+
91
+ gr.Interface(main, [gender, age, height, body, Style, boobsize, asssize, skin, hair, hairstyle, eyes, tops, bottoms], "text").launch(share=True)
attributes/asssize.txt ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ None
2
+ thick
3
+ phat
4
+ juicy
5
+ bubble
6
+ round
7
+ big
8
+ small
9
+ tight
10
+ loose
11
+ junk in the trunk
12
+ bootylicious
13
+ cake
14
+ badonkadonk
15
+ ass
16
+ buttocks
attributes/body.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ slim
2
+ average
3
+ athletic
4
+ muscular
5
+ overweight
attributes/boobsize.txt ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ None
2
+ A
3
+ B
4
+ C
5
+ D
6
+ DD/E
7
+ DDD/F
8
+ G
9
+ H
10
+ I
11
+ J
12
+ K
13
+ L
14
+ M
15
+ N
16
+ O
17
+ P
18
+ Q
19
+ R
20
+ S
21
+ T
22
+ U
23
+ V
24
+ W
25
+ X
26
+ Y
27
+ Z
attributes/bottoms.txt ADDED
@@ -0,0 +1,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ None
2
+ Jeans
3
+ Cargo pants
4
+ Khakis
5
+ Leather pants
6
+ Joggers
7
+ Sweatpants
8
+ Shorts
9
+ Denim shorts
10
+ Linen pants
11
+ Paperbag waist pants
12
+ Bell bottoms
13
+ High-waisted pants
14
+ Wide-leg pants
15
+ Palazzo pants
16
+ Culottes
17
+ Leggings
18
+ Jeggings
19
+ Track pants
20
+ Faux leather leggings
21
+ Ripped jeans
22
+ Skirt
23
+ Maxi skirt
24
+ Mini skirt
25
+ Pencil skirt
26
+ A-line skirt
27
+ Wrap skirt
28
+ Tulip skirt
29
+ Pleated skirt
30
+ Midi skirt
31
+ High-waisted shorts
32
+ Hot pants
33
+ Ripped shorts
34
+ Denim skort
35
+ Corduroy pants
36
+ Leather mini skirt
37
+ Bermuda shorts
38
+ Crop top and high waisted pants
39
+ Jumpsuit
40
+ Rompers
41
+ Overall
42
+ Leather overall
43
+ Palazzo jumpsuit
44
+ Paperbag jumpsuit
45
+ Flared pants
46
+ Flared shorts
47
+ Cropped wide-leg pants
48
+ Satin pajama pants
49
+ Wide-leg culottes
50
+ Lace shorts
51
+ High-waisted maxi skirt
52
+ Asymmetrical skirt
53
+ Balloon pants
54
+ Cigarette pants
55
+ High-waisted cigarette pants
56
+ Pleated pants
57
+ Faux leather pants
58
+ Vinyl pants
59
+ Polyester pants
60
+ Velvet pants
61
+ Chenille pants
62
+ Corduroy shorts
63
+ Corduroy skirt
64
+ Linen shorts
65
+ Linen skirt
66
+ Seersucker pants
67
+ Seersucker shorts
68
+ Seersucker skirt
69
+ Cotton pants
70
+ Cotton shorts
71
+ Cotton skirt
72
+ Cotton overall
73
+ Cotton jumpsuit
74
+ Cotton romper
75
+ Cotton palazzo jumpsuit
76
+ Cotton paperbag jumpsuit
77
+ Cotton flare pants
78
+ Cotton cropped wide-leg pants
79
+ Cotton satin pajama pants
80
+ Cotton wide-leg culottes
81
+ Cotton lace shorts
82
+ Cotton high-waisted maxi skirt
83
+ Cotton asymmetrical skirt
84
+ Cotton balloon pants
85
+ Cotton cigarette pants
86
+ Cotton high-waisted cigarette pants
87
+ Cotton pleated pants
88
+ Cotton faux leather pants
89
+ Cotton vinyl pants
90
+ Cotton polyester pants
91
+ Cotton velvet pants
92
+ Cotton chenille pants
93
+ Cotton corduroy shorts
94
+ Cotton corduroy skirt
95
+ Cotton linen shorts
96
+ Cotton linen skirt
97
+ Cotton seersucker pants
98
+ Cotton seersucker shorts
99
+ Cotton seersucker skirt
100
+ Cotton high-waisted jeans
101
+ Cotton cargo pants
102
+ Cotton khakis
103
+ Cotton leather pants
104
+ Cotton joggers
105
+ Cotton sweatpants
106
+ Cotton shorts
107
+ Cotton denim shorts
108
+ Cotton linen pants
109
+ Cotton paperbag waist pants
110
+ Cotton bell bottoms
111
+ Cotton high-waisted pants
112
+ Cotton wide-leg pants
113
+ Cotton palazzo pants
114
+ Cotton culottes
115
+ Cotton leggings
116
+ Cotton jeggings
117
+ Cotton track pants
118
+ Cotton faux leather leggings
119
+ Cotton ripped jeans
120
+ Cotton overall
121
+ Cotton jumpsuit
122
+ Cotton romper
123
+ Cotton leather overall
124
+ Cotton palazzo jumpsuit
125
+ Cotton paperbag jumpsuit
126
+ Cotton flared pants
127
+ Cotton flared shorts
128
+ Cotton cropped wide-leg pants
129
+ Cotton satin pajama pants
130
+ Cotton wide-leg culottes
131
+ Cotton lace shorts
132
+ Cotton high-waisted maxi skirt
133
+ Cotton asymmetrical skirt
134
+ Cotton balloon pants
135
+ Cotton cigarette pants
attributes/eyecolor.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ Blue
2
+ Green
3
+ Brown
4
+ Hazel
5
+ Gray
6
+ Amber
7
+ Violet
8
+ Black
9
+ Red
10
+ Yellow
attributes/haircolor.txt ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Blonde
2
+ Brunette
3
+ Red
4
+ Black
5
+ Brown
6
+ Auburn
7
+ Chestnut
8
+ Golden
9
+ Silver
10
+ Gray
11
+ Platinum
12
+ Strawberry blonde
13
+ Dirty blonde
14
+ Light brown
15
+ Dark brown
16
+ Caramel
17
+ Honey
18
+ Lavender
19
+ Pastel pink
20
+ Crimson
21
+ Navy blue
22
+ Green
23
+ Purple
24
+ Rainbow
25
+ Pink
26
+ Peach
27
+ Orange
28
+ Yellow
29
+ Golden blonde
30
+ Ash blonde
31
+ Beige blonde
32
+ Rose gold
33
+ Copper
34
+ Mahogany
35
+ Espresso
36
+ Coffee
37
+ Chocolate
38
+ Mocha
39
+ Latte
40
+ Caramel highlights
41
+ Caramel lowlights
42
+ Platinum highlights
43
+ Platinum lowlights
44
+ Balayage highlights
45
+ Ombre highlights
46
+ Sombre highlights
attributes/hairstyle.txt ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Bob
2
+ Pixie cut
3
+ French braid
4
+ Fishtail braid
5
+ Updo
6
+ Cornrows
7
+ Dreadlocks
8
+ Afro
9
+ Blowout
10
+ Sombre
11
+ Balayage
12
+ Ombre
13
+ Layers
14
+ Undercut
15
+ Fade
16
+ High and tight
17
+ Crew cut
18
+ Pompadour
19
+ Quiff
20
+ Slick back
21
+ Straight bob
22
+ Straight lob (long bob)
23
+ Straight pixie cut
24
+ Straight shag
25
+ Straight blunt cut
26
+ Straight long layers
27
+ Straight short bob
28
+ Straight mid-length cut
29
+ Straight layered bob
30
+ Straight textured bob
31
+ Straight long hair
32
+ Straight long hair with layers
33
+ Straight long hair with bangs
34
+ Straight long hair with a center part
35
+ Straight long hair with a deep side part
36
+ Straight long hair in a sleek ponytail
37
+ Straight long hair in a messy bun
38
+ Straight long hair with braids
39
+ Straight long hair with a hair accessory
40
+ Straight long hair half up half down
attributes/skin.txt ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ White
2
+ Fair
3
+ Light
4
+ Medium
5
+ Tan
6
+ Olive
7
+ Dark
8
+ Deep
9
+ Black
10
+ Pale
11
+ Ivory
12
+ Beige
13
+ Coffee
14
+ Honey
15
+ Caramel
16
+ Chestnut
17
+ Chocolate
18
+ Ebony
19
+ Mahogany
20
+ Onyx
21
+ Sable
22
+ Sienna
23
+ Umber
24
+ Cocoa
25
+ Ecru
26
+ Fawn
27
+ Sand
28
+ Sepia
29
+ Tawny
30
+ Toffee
31
+ Almond
32
+ Amber
33
+ Bronze
34
+ Chestnut
35
+ Cinnamon
36
+ Coconut
37
+ Cognac
38
+ Copper
39
+ Hazel
40
+ Latte
41
+ Mocha
42
+ Nutmeg
43
+ Peach
44
+ Pecan
45
+ Raspberry
46
+ Russet
47
+ Sable
48
+ Sandy
49
+ Sienna
50
+ Sorrel
51
+ Tangerine
52
+ Taupe
53
+ Tawny
54
+ Terra cotta
55
+ Walnut
56
+ Wheat
57
+ Saffron
58
+ Sable
59
+ Tangerine
60
+ Tawny
61
+ Toffee
62
+ Almond
63
+ Amber
64
+ Bronze
65
+ Chestnut
66
+ Cinnamon
67
+ Coconut
68
+ Cognac
69
+ Copper
70
+ Hazel
71
+ Latte
72
+ Mocha
73
+ Nutmeg
74
+ Peach
75
+ Pecan
76
+ Raspberry
77
+ Russet
78
+ Sable
79
+ Sandy
80
+ Sienna
81
+ Sorrel
82
+ Tangerine
83
+ Taupe
84
+ Tawny
85
+ Terra cotta
86
+ Walnut
attributes/top.txt ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ None
2
+ White t-shirt with a heart
3
+ Black t-shirt with a graphic print
4
+ Striped button-up shirt
5
+ Denim shirt
6
+ Plaid flannel shirt
7
+ Solid color polo shirt
8
+ Henley shirt
9
+ Chambray shirt
10
+ Embroidered cotton shirt
11
+ Vintage band t-shirt
12
+ Oversized t-shirt dress
13
+ T-shirt with a pocket
14
+ Graphic tank top
15
+ Ringer t-shirt
16
+ Button-front blouse
17
+ Off-shoulder top
18
+ Cropped t-shirt
19
+ Thermal Henley shirt
20
+ Tie-dye t-shirt
21
+ Lace-up tunic top
flagged/log.csv ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ female,25,5,slim,Realistic,Z,thick,Copper,Blonde,Bob,Blue,None,None,"Realistic, realism, female, 25 years old, 5ft, slim, Blonde hair color, Bob hair style, Blue eyes, Nude, Copper skin tone, Z cup size, thick butt size",,,2023-01-26 00:13:05.253470
2
+ female,25,5,average,Anime,G,big,Dark,Silver,Bob,Red,None,None,"amime style, female, 25 years old, 5ft, average, Silver hair color, Bob hair style, Red eyes, Nude, Dark skin tone, G cup size, big butt size",,,2023-01-26 00:27:55.420983
3
+ female,25,5,average,Anime,G,big,Dark,Silver,Bob,Red,None,None,"amime style, female, 25 years old, 5ft, average, Silver hair color, Bob hair style, Red eyes, Nude, Dark skin tone, G cup size, big butt size",,,2023-01-26 00:27:56.939218
4
+ female,25,6.06,slim,None,DD/E,None,White,Blonde,Blowout,Blue,None,Wide-leg pants,"female, 25 years old, 6.06ft, slim, Blonde hair color, Blowout hair style, Blue eyes, Wide-leg pants, White skin tone, DD/E cup size, ",,,2023-01-26 00:40:15.823295
5
+ female,25,5,slim,selfie,J,small,White,Black,Blowout,Blue,Denim shirt,Denim shorts,"female, 25 years old, 5ft, slim, Black hair color, Blowout hair style, Blue eyes, Denim shirt, Denim shorts, White skin tone, J cup size, small butt size",,,2023-01-29 01:43:36.697566
6
+ female,25,5,slim,None,None,None,White,Blonde,Bob,Blue,None,None,,,,2023-02-07 20:57:26.955264
7
+ female,18,5,slim,Realistic,A,small,White,Brunette,Pixie cut,Brown,None,None,"Realistic, realism, female, 18 years old, 5ft, slim, Brunette hair color, Pixie cut hair style, Brown eyes, Nude, White skin tone, A cup size, small butt size",,,2023-02-07 21:10:52.568412
8
+ male,20,5,slim,Realistic,None,None,White,Blonde,Bob,Blue,White t-shirt with a heart,None,"Realistic, realism, male, 20 years old, 5ft, slim, Blonde hair color, Bob hair style, Blue eyes, White t-shirt with a heart, White skin tone, ",,,2023-02-09 15:57:54.450182
9
+ male,20,5,slim,Realistic,None,None,White,Blonde,Bob,Blue,White t-shirt with a heart,None,"Realistic, realism, male, 20 years old, 5ft, slim, Blonde hair color, Bob hair style, Blue eyes, White t-shirt with a heart, White skin tone, ",,,2023-02-09 15:57:57.020793
10
+ male,20,5,slim,Realistic,None,None,White,Blonde,Bob,Blue,White t-shirt with a heart,None,"Realistic, realism, male, 20 years old, 5ft, slim, Blonde hair color, Bob hair style, Blue eyes, White t-shirt with a heart, White skin tone, ",,,2023-02-09 15:58:00.936014
11
+ male,20,5,slim,Realistic,None,None,White,Blonde,Bob,Blue,White t-shirt with a heart,None,"Realistic, realism, male, 20 years old, 5ft, slim, Blonde hair color, Bob hair style, Blue eyes, White t-shirt with a heart, White skin tone, ",,,2023-02-09 15:58:01.450347
12
+ male,20,5,slim,Realistic,None,None,White,Blonde,Bob,Blue,White t-shirt with a heart,None,"Realistic, realism, male, 20 years old, 5ft, slim, Blonde hair color, Bob hair style, Blue eyes, White t-shirt with a heart, White skin tone, ",,,2023-02-09 15:58:04.208393