Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -60,13 +60,10 @@ if __name__ == '__main__':
|
|
60 |
msa_span_model = SpanNet.load_model(msa_span_path)
|
61 |
entity_model = EntNet.load_model(entity_path)
|
62 |
# iface= gr.Base(primary_hue="green")
|
63 |
-
|
64 |
-
[
|
65 |
-
[
|
66 |
-
|
67 |
-
combine,
|
68 |
-
cache_examples=True,
|
69 |
-
)
|
70 |
iface = gr.Interface(fn=predict_label, inputs="text", outputs="text",
|
71 |
examples=ex,theme="finlaymacklon/smooth_slate")
|
72 |
iface.launch(show_api=False)
|
|
|
60 |
msa_span_model = SpanNet.load_model(msa_span_path)
|
61 |
entity_model = EntNet.load_model(entity_path)
|
62 |
# iface= gr.Base(primary_hue="green")
|
63 |
+
example = gr.Examples(
|
64 |
+
["النشرة الإخبارية الصادرة عن الأونروا رقم 113 (1986/1/8)."],
|
65 |
+
[gr.Textbox(label="Input Example"), lines=1],
|
66 |
+
)
|
|
|
|
|
|
|
67 |
iface = gr.Interface(fn=predict_label, inputs="text", outputs="text",
|
68 |
examples=ex,theme="finlaymacklon/smooth_slate")
|
69 |
iface.launch(show_api=False)
|