Spaces:
Sleeping
Sleeping
Commit
·
aa34ada
1
Parent(s):
3932ad8
fix requirements
Browse files- app.py +3 -3
- requirements.txt +1 -1
app.py
CHANGED
|
@@ -34,8 +34,8 @@ def classify(_input):
|
|
| 34 |
app = gr.Blocks()
|
| 35 |
|
| 36 |
with app:
|
| 37 |
-
gr.Markdown("#
|
| 38 |
-
gr.Markdown("##
|
| 39 |
with gr.Row():
|
| 40 |
with gr.Column():
|
| 41 |
text_in = gr.Textbox(lines=1, placeholder="Insert text", label="Search Query")
|
|
@@ -70,7 +70,7 @@ with app:
|
|
| 70 |
gr.Markdown(
|
| 71 |
"""
|
| 72 |
<p style="text-align: center;">
|
| 73 |
-
|
| 74 |
<br>
|
| 75 |
<img id="visitor-badge" alt="visitor badge" src="https://visitor-badge.glitch.me/badge?page_id=simonschoe.call2vec&left_color=green&right_color=blue" style="display: block; margin-left: auto; margin-right: auto;"/>
|
| 76 |
</p>
|
|
|
|
| 34 |
app = gr.Blocks()
|
| 35 |
|
| 36 |
with app:
|
| 37 |
+
gr.Markdown("# Transformation Intensity Classifier")
|
| 38 |
+
gr.Markdown("## Detect Transformation Sentences in Quarterly Earnings Conference Calls")
|
| 39 |
with gr.Row():
|
| 40 |
with gr.Column():
|
| 41 |
text_in = gr.Textbox(lines=1, placeholder="Insert text", label="Search Query")
|
|
|
|
| 70 |
gr.Markdown(
|
| 71 |
"""
|
| 72 |
<p style="text-align: center;">
|
| 73 |
+
TIClassifier by X and Y
|
| 74 |
<br>
|
| 75 |
<img id="visitor-badge" alt="visitor badge" src="https://visitor-badge.glitch.me/badge?page_id=simonschoe.call2vec&left_color=green&right_color=blue" style="display: block; margin-left: auto; margin-right: auto;"/>
|
| 76 |
</p>
|
requirements.txt
CHANGED
|
@@ -1,2 +1,2 @@
|
|
| 1 |
-
|
| 2 |
transformers_interpret==0.7.2
|
|
|
|
| 1 |
+
beautifulsoup4==4.4.0
|
| 2 |
transformers_interpret==0.7.2
|