Commit
·
b17a170
1
Parent(s):
7638cf5
add app.py
Browse files
app.py
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
from transformers import pipeline
|
3 |
+
import os
|
4 |
+
import nltk
|
5 |
+
|
6 |
+
# Check if the resource is available; if not, download it
|
7 |
+
nltk.download("averaged_perceptron_tagger")
|
8 |
+
|
9 |
+
# Your existing app code follows
|
10 |
+
|
11 |
+
token = os.getenv("HF_TOKEN")
|
12 |
+
get_completion = pipeline(
|
13 |
+
"newsagency-ner",
|
14 |
+
model="impresso-project/ner-newsagency-bert-fr",
|
15 |
+
trust_remote_code=True,
|
16 |
+
revision="main",
|
17 |
+
token=token,
|
18 |
+
)
|
19 |
+
|
20 |
+
|
21 |
+
def ner(input):
|
22 |
+
output = get_completion(input)
|
23 |
+
return {"text": input, "entities": output}
|
24 |
+
|
25 |
+
|
26 |
+
demo = gr.Interface(
|
27 |
+
fn=ner,
|
28 |
+
inputs=[
|
29 |
+
gr.Textbox(
|
30 |
+
label="Find the news agency mentions in the following text in French:",
|
31 |
+
lines=2,
|
32 |
+
)
|
33 |
+
],
|
34 |
+
outputs=[gr.HighlightedText(label="Text with news agency mentions")],
|
35 |
+
title="News Agency Recognition with impresso-project/bert-newsagency-ner-fr",
|
36 |
+
description="Find entities using the `impresso-project/bert-newsagency-ner-fr` model under the hood!",
|
37 |
+
allow_flagging="never",
|
38 |
+
# Here we introduce a new tag, examples, easy to use examples for your application
|
39 |
+
examples=[
|
40 |
+
"Des chercheurs de l'Université de Cambridge ont développé une nouvelle technique de calcul quantique qui "
|
41 |
+
"promet d'augmenter exponentiellement les vitesses de calcul. Cette percée, décrite comme un 'bond quantique' "
|
42 |
+
"dans la technologie informatique, pourrait ouvrir la voie à des capacités de traitement de données "
|
43 |
+
"ultra-rapides et sécurisées. Le rapport complet sur ces découvertes a été publié dans la "
|
44 |
+
"prestigieuse revue 'Nature Physics'. (Reuters)",
|
45 |
+
"Les tensions continuent de monter alors que les récentes élections parlementaires en Suède ont conduit à un "
|
46 |
+
"changement inattendu dans le paysage politique. Le parti d'extrême droite, connu pour ses politiques "
|
47 |
+
"strictes en matière d'immigration et ses vues eurosceptiques, a gagné un nombre substantiel de sièges, "
|
48 |
+
"remettant en question l'équilibre traditionnel des pouvoirs. Alors que les partis négocient pour former un nouveau gouvernement, "
|
49 |
+
"la communauté internationale observe attentivement pour voir comment ces développements influenceront les "
|
50 |
+
"politiques étrangères et domestiques de la Suède. (AFP)",
|
51 |
+
"United Press - On the home front, the British populace remains steadfast in the face of ongoing air "
|
52 |
+
"raids. In London, despite the destruction, the spirit of the people is unbroken, with volunteers and civil "
|
53 |
+
"defense units working tirelessly to support the war effort. Reports from BUP correspondents highlight the "
|
54 |
+
"nationwide push for increased production in factories, essential for supplying the front lines with the "
|
55 |
+
"materials needed for victory.",
|
56 |
+
],
|
57 |
+
)
|
58 |
+
demo.launch()
|