throaway2854 commited on
Commit
3833bd5
1 Parent(s): f8be281

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -10
app.py CHANGED
@@ -8,16 +8,17 @@ import io
8
 
9
  # Define categories at the top so they are accessible throughout the code
10
  categories = [
11
- (' Setting', 'scene_tags'),
12
- (' Position', 'position_tags'),
13
- (' Outfit', 'outfit_tags'),
14
- (' Camera View/Angle', 'camera_tags'),
15
- (' Concept', 'concept_tags'),
16
- (' Facial Expression', 'facial_expression_tags'),
17
- (' Action', 'pose_tags'),
18
- (' Sex?', 'sex_tags'),
19
- (' Additional', 'additional_tags'),
20
- (' LORA', 'lora_tags')
 
21
  ]
22
 
23
  class DataManager:
 
8
 
9
  # Define categories at the top so they are accessible throughout the code
10
  categories = [
11
+ ('Setting', 'scene_tags'),
12
+ ('Position', 'position_tags'),
13
+ ('Outfit', 'outfit_tags'),
14
+ ('Camera View/Angle', 'camera_tags'),
15
+ ('Concept', 'concept_tags'),
16
+ ('Facial Expression', 'facial_expression_tags'),
17
+ ('Action (sex)', 'pose_tags'),
18
+ ('Action (no sex)', 'action_tags'),
19
+ ('Sex?', 'sex_tags'),
20
+ ('Additional', 'additional_tags'),
21
+ ('LORA', 'lora_tags')
22
  ]
23
 
24
  class DataManager: