Spaces:
Running
Running
Upload with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -6,6 +6,7 @@ colorFrom: indigo
|
|
| 6 |
colorTo: indigo
|
| 7 |
sdk: gradio
|
| 8 |
sdk_version: 3.4.1
|
| 9 |
-
|
|
|
|
| 10 |
pinned: false
|
| 11 |
---
|
|
|
|
| 6 |
colorTo: indigo
|
| 7 |
sdk: gradio
|
| 8 |
sdk_version: 3.4.1
|
| 9 |
+
|
| 10 |
+
app_file: app.py
|
| 11 |
pinned: false
|
| 12 |
---
|
app.py
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
import os
|
| 3 |
+
os.system('python -m spacy download en_core_web_sm')
|
| 4 |
+
import spacy
|
| 5 |
+
from spacy import displacy
|
| 6 |
+
|
| 7 |
+
nlp = spacy.load("en_core_web_sm")
|
| 8 |
+
|
| 9 |
+
def text_analysis(text):
|
| 10 |
+
doc = nlp(text)
|
| 11 |
+
html = displacy.render(doc, style="dep", page=True)
|
| 12 |
+
html = (
|
| 13 |
+
"<div style='max-width:100%; max-height:360px; overflow:auto'>"
|
| 14 |
+
+ html
|
| 15 |
+
+ "</div>"
|
| 16 |
+
)
|
| 17 |
+
pos_count = {
|
| 18 |
+
"char_count": len(text),
|
| 19 |
+
"token_count": 0,
|
| 20 |
+
}
|
| 21 |
+
pos_tokens = []
|
| 22 |
+
|
| 23 |
+
for token in doc:
|
| 24 |
+
pos_tokens.extend([(token.text, token.pos_), (" ", None)])
|
| 25 |
+
|
| 26 |
+
return pos_tokens, pos_count, html
|
| 27 |
+
|
| 28 |
+
demo = gr.Interface(
|
| 29 |
+
text_analysis,
|
| 30 |
+
gr.Textbox(placeholder="Enter sentence here..."),
|
| 31 |
+
["highlight", "json", "html"],
|
| 32 |
+
examples=[
|
| 33 |
+
["What a beautiful morning for a walk!"],
|
| 34 |
+
["It was the best of times, it was the worst of times."],
|
| 35 |
+
],
|
| 36 |
+
)
|
| 37 |
+
|
| 38 |
+
demo.launch()
|