Spaces:
Running
on
Zero
Running
on
Zero
Update tags_straight.py
Browse files- tags_straight.py +14 -40
tags_straight.py
CHANGED
|
@@ -1,45 +1,19 @@
|
|
| 1 |
-
#
|
| 2 |
|
| 3 |
-
|
| 4 |
-
"
|
| 5 |
-
"
|
| 6 |
-
"
|
| 7 |
-
"
|
| 8 |
-
"Group": "gay_group"
|
| 9 |
},
|
| 10 |
-
"
|
| 11 |
-
"
|
| 12 |
-
"
|
| 13 |
-
"
|
| 14 |
-
"Angel": "angel",
|
| 15 |
-
"Bohemian": "bohemian",
|
| 16 |
-
"Clown": "clown"
|
| 17 |
-
# Add more as needed...
|
| 18 |
},
|
| 19 |
-
"Skin Tone
|
| 20 |
-
"
|
| 21 |
-
"
|
| 22 |
-
"Dark": "
|
| 23 |
},
|
| 24 |
-
"Body Type Tags": {
|
| 25 |
-
"Slim": "slim",
|
| 26 |
-
"Muscular": "muscular",
|
| 27 |
-
"Chubby": "chubby"
|
| 28 |
-
},
|
| 29 |
-
"Expression Tags": {
|
| 30 |
-
"Happy": "smiling",
|
| 31 |
-
"Sad": "sad_face",
|
| 32 |
-
"Angry": "angry_face"
|
| 33 |
-
},
|
| 34 |
-
"Eye Tags": {
|
| 35 |
-
"Blue Eyes": "blue_eyes",
|
| 36 |
-
"Green Eyes": "green_eyes",
|
| 37 |
-
"Red Eyes": "red_eyes"
|
| 38 |
-
},
|
| 39 |
-
"Hair Style Tags": {
|
| 40 |
-
"Short Hair": "short_hair",
|
| 41 |
-
"Long Hair": "long_hair",
|
| 42 |
-
"Mohawk": "mohawk"
|
| 43 |
-
}
|
| 44 |
-
# Add other groups like Tattoo, Piercing, Position, etc.
|
| 45 |
}
|
|
|
|
| 1 |
+
# tags_straight.py
|
| 2 |
|
| 3 |
+
TAGS_STRAIGHT = {
|
| 4 |
+
"Participants": {
|
| 5 |
+
"Man": "male participant",
|
| 6 |
+
"Woman": "female participant",
|
| 7 |
+
"Couple": "male and female couple",
|
|
|
|
| 8 |
},
|
| 9 |
+
"Settings": {
|
| 10 |
+
"Bedroom": "bedroom scene",
|
| 11 |
+
"Outdoor": "outdoor scene",
|
| 12 |
+
"Office": "office scene",
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
},
|
| 14 |
+
"Skin Tone": {
|
| 15 |
+
"Light": "light skin tone",
|
| 16 |
+
"Medium": "medium skin tone",
|
| 17 |
+
"Dark": "dark skin tone",
|
| 18 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
}
|