remove top label text
Browse files
app.py
CHANGED
|
@@ -146,7 +146,7 @@ def create_tags(image, threshold):
|
|
| 146 |
text_no_impl = ", ".join(sorted_tag_score.keys())
|
| 147 |
return text_no_impl, sorted_tag_score
|
| 148 |
|
| 149 |
-
with gr.Blocks() as demo:
|
| 150 |
gr.Markdown("""
|
| 151 |
## Joint Tagger Project: PILOT Demo
|
| 152 |
This tagger is designed for use on furry images (though may very well work on out-of-distribution images, potentially with funny results). A threshold of 0.2 is recommended. Lower thresholds often turn up more valid tags, but can also result in some amount of hallucinated tags.
|
|
|
|
| 146 |
text_no_impl = ", ".join(sorted_tag_score.keys())
|
| 147 |
return text_no_impl, sorted_tag_score
|
| 148 |
|
| 149 |
+
with gr.Blocks(css=".output-class { display: none; }") as demo:
|
| 150 |
gr.Markdown("""
|
| 151 |
## Joint Tagger Project: PILOT Demo
|
| 152 |
This tagger is designed for use on furry images (though may very well work on out-of-distribution images, potentially with funny results). A threshold of 0.2 is recommended. Lower thresholds often turn up more valid tags, but can also result in some amount of hallucinated tags.
|