Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -49,7 +49,7 @@ def title_gen(keywords):
|
|
49 |
|
50 |
for i in range(len(beam_outputs)):
|
51 |
result = tokenizer.decode(beam_outputs[i], skip_special_tokens=True)
|
52 |
-
titles += f"{result}<br>" #Create string with titles and <br> tag for
|
53 |
|
54 |
return titles
|
55 |
|
|
|
49 |
|
50 |
for i in range(len(beam_outputs)):
|
51 |
result = tokenizer.decode(beam_outputs[i], skip_special_tokens=True)
|
52 |
+
titles += f"<h3>{result}<br>" #Create string with all the titles and a <br> tag for line break
|
53 |
|
54 |
return titles
|
55 |
|