Plat commited on
Commit
b606f30
Β·
1 Parent(s): b937432

feat: more interesting examples

Browse files
Files changed (1) hide show
  1. app.py +56 -15
app.py CHANGED
@@ -17,7 +17,9 @@ import gradio as gr
17
  MODEL_NAME = os.environ.get("MODEL_NAME", None)
18
  assert MODEL_NAME is not None
19
  MODEL_PATH = hf_hub_download(repo_id=MODEL_NAME, filename="model.safetensors")
20
- DEVICE = torch.device("cuda")
 
 
21
 
22
  BAD_WORD_KEYWORDS = ["(medium)"]
23
 
@@ -64,6 +66,7 @@ def demo():
64
  text: str,
65
  auto_detect: bool,
66
  copyright_tags: str = "",
 
67
  max_new_tokens: int = 128,
68
  do_sample: bool = False,
69
  temperature: float = 0.1,
@@ -72,7 +75,7 @@ def demo():
72
  ):
73
  tag_text = (
74
  "<|bos|>"
75
- "<|aspect_ratio:tall|><|rating:general|><|length:long|>"
76
  "<|reserved_2|><|reserved_3|><|reserved_4|>"
77
  "<|translate:exact|><|input_end|>"
78
  "<copyright>" + copyright_tags.strip()
@@ -112,22 +115,36 @@ def demo():
112
 
113
  # warmup
114
  print("warming up...")
115
- print(generate_tags("Miku is looking at viewer.", True))
116
  print("done.")
117
 
118
  with gr.Blocks() as ui:
119
  with gr.Column():
120
  with gr.Row():
121
  with gr.Column():
122
- text = gr.Text(label="Text", lines=4)
 
 
 
 
123
  auto_detect = gr.Checkbox(
124
  label="Auto detect copyright tags.", value=False
125
  )
126
  copyright_tags = gr.Textbox(
127
  label="Copyright tags",
128
- placeholder="Enter copyright tags here. e.g.) hatsune miku",
 
 
 
 
 
 
 
 
 
 
129
  )
130
- translate_btn = gr.Button(value="Translate")
131
 
132
  with gr.Accordion(label="Advanced", open=False):
133
  max_new_tokens = gr.Number(label="Max new tokens", value=128)
@@ -160,37 +177,60 @@ def demo():
160
 
161
  gr.Examples(
162
  examples=[
163
- ["Miku is looking at viewer.", True, ""],
 
 
 
 
 
 
 
 
 
 
 
164
  [
165
  "Fujita Kotone, Tsukimura Temari, Hanami Saki from Gakuen Idolmaster. They are in the hole, there are some tables and chairs. One's face is shaded, one is crying, and one is 😊.",
166
  True,
167
  "",
 
168
  ],
169
  [
170
  "A single girl wearing red hood is sleeping in the forest. View angle from above. grass field. many colorful flowers. Bright atmosphere.",
171
  False,
172
  "",
 
 
 
 
 
 
 
 
 
 
 
 
 
173
  ],
174
- ["Arona and Plana are hugging each other.", True, "blue archive"],
175
  [
176
  "There are two girls. A vivacious blonde gyaru leans against a classroom desk, her flashy accessories jingling as she gestures animatedly. Across from her stands the prim and proper class representative, her long black hair neatly framing her face as she listens attentively, occasionally adjusting her glasses with a delicate touch.",
177
  False,
178
  "",
 
179
  ],
180
  [
181
- "1girl, solo, white and blue medium hair with side braid, dark blue parka with hoodie, looking at somewhere else viewer, cowboy shot",
182
  False,
183
- ""
184
- ]
 
185
  ],
186
- inputs=[text, auto_detect, copyright_tags],
187
  )
188
 
189
  gr.on(
190
  triggers=[
191
- # text.change,
192
- # auto_detect.change,
193
- # copyright_tags.change,
194
  translate_btn.click,
195
  ],
196
  fn=generate_tags,
@@ -198,6 +238,7 @@ def demo():
198
  text,
199
  auto_detect,
200
  copyright_tags,
 
201
  max_new_tokens,
202
  do_sample,
203
  temperature,
 
17
  MODEL_NAME = os.environ.get("MODEL_NAME", None)
18
  assert MODEL_NAME is not None
19
  MODEL_PATH = hf_hub_download(repo_id=MODEL_NAME, filename="model.safetensors")
20
+ DEVICE = (
21
+ torch.device("mps") if torch.backends.mps.is_available() else torch.device("cuda")
22
+ )
23
 
24
  BAD_WORD_KEYWORDS = ["(medium)"]
25
 
 
66
  text: str,
67
  auto_detect: bool,
68
  copyright_tags: str = "",
69
+ length: str = "short",
70
  max_new_tokens: int = 128,
71
  do_sample: bool = False,
72
  temperature: float = 0.1,
 
75
  ):
76
  tag_text = (
77
  "<|bos|>"
78
+ f"<|aspect_ratio:tall|><|rating:general|><|length:{length}|>"
79
  "<|reserved_2|><|reserved_3|><|reserved_4|>"
80
  "<|translate:exact|><|input_end|>"
81
  "<copyright>" + copyright_tags.strip()
 
115
 
116
  # warmup
117
  print("warming up...")
118
+ print(generate_tags("Hatsune Miku is looking at viewer.", True))
119
  print("done.")
120
 
121
  with gr.Blocks() as ui:
122
  with gr.Column():
123
  with gr.Row():
124
  with gr.Column():
125
+ text = gr.Text(
126
+ label="Text",
127
+ lines=4,
128
+ placeholder="A girl with fox ears and tail in maid costume is looking at viewer.",
129
+ )
130
  auto_detect = gr.Checkbox(
131
  label="Auto detect copyright tags.", value=False
132
  )
133
  copyright_tags = gr.Textbox(
134
  label="Copyright tags",
135
+ placeholder="You can specify copyright tags manually. e.g.) hatsune miku",
136
+ )
137
+ length = gr.Dropdown(
138
+ label="Length",
139
+ choices=[
140
+ "very_short",
141
+ "short",
142
+ "long",
143
+ "very_long",
144
+ ],
145
+ value="short",
146
  )
147
+ translate_btn = gr.Button(value="Translate", variant="primary")
148
 
149
  with gr.Accordion(label="Advanced", open=False):
150
  max_new_tokens = gr.Number(label="Max new tokens", value=128)
 
177
 
178
  gr.Examples(
179
  examples=[
180
+ [
181
+ "A girl with fox ears and tail in maid costume is looking at viewer.",
182
+ False,
183
+ "",
184
+ "short",
185
+ ],
186
+ [
187
+ "Hatsune Miku is looking at viewer.",
188
+ True,
189
+ "",
190
+ "short",
191
+ ],
192
  [
193
  "Fujita Kotone, Tsukimura Temari, Hanami Saki from Gakuen Idolmaster. They are in the hole, there are some tables and chairs. One's face is shaded, one is crying, and one is 😊.",
194
  True,
195
  "",
196
+ "short",
197
  ],
198
  [
199
  "A single girl wearing red hood is sleeping in the forest. View angle from above. grass field. many colorful flowers. Bright atmosphere.",
200
  False,
201
  "",
202
+ "short",
203
+ ],
204
+ [
205
+ "Arona and Plana are hugging each other.",
206
+ True,
207
+ "blue archive",
208
+ "short",
209
+ ],
210
+ [
211
+ "Arona and Plana are hugging each other.",
212
+ True,
213
+ "blue archive",
214
+ "very_long",
215
  ],
 
216
  [
217
  "There are two girls. A vivacious blonde gyaru leans against a classroom desk, her flashy accessories jingling as she gestures animatedly. Across from her stands the prim and proper class representative, her long black hair neatly framing her face as she listens attentively, occasionally adjusting her glasses with a delicate touch.",
218
  False,
219
  "",
220
+ "long",
221
  ],
222
  [
223
+ "1girl, solo, white and blue medium hair with side braid, dark blue parka with hoodie, looking at somewhere else viewer, cowboy shot, with many cats. the girl has cat ears and tail.",
224
  False,
225
+ "",
226
+ "short",
227
+ ],
228
  ],
229
+ inputs=[text, auto_detect, copyright_tags, length],
230
  )
231
 
232
  gr.on(
233
  triggers=[
 
 
 
234
  translate_btn.click,
235
  ],
236
  fn=generate_tags,
 
238
  text,
239
  auto_detect,
240
  copyright_tags,
241
+ length,
242
  max_new_tokens,
243
  do_sample,
244
  temperature,