mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-21 01:01:05 +08:00
597337dcb8
* added playground with 12 demos * change name to recipes, restyle navbar * add explanatory text to page * fix demo mapping * categorize demos, clean up design * styling * cateogry naming and emojis * refactor and add text demos * add view code button * remove opening slash in embed * styling * add image demos * adding plot demos * remove see code button * removed submodules * changes * add audio models * remove fun section * remove tests in image semgentation demo repo * requested changes * add outbreak_forecast * fix broken demos * remove images and models, add new demos * remove readmes, change to run.py, add description as comment * move to /demos folder, clean up dict * add upload_to_spaces script * fix script, clean repos, and add to docker file * fix python versioning issue * env variable * fix * env fixes * spaces instead of tabs * revert to original networking.py * fix rate limiting in asr and autocomplete * change name to demos * clean up navbar * move url and description, remove code comments * add tabs to demos * remove margins and footer from embedded demo * font consistency Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
39 lines
904 B
Python
39 lines
904 B
Python
import gradio as gr
|
|
import os
|
|
os.system('python -m spacy download en_core_web_sm')
|
|
import spacy
|
|
from spacy import displacy
|
|
|
|
nlp = spacy.load("en_core_web_sm")
|
|
|
|
def text_analysis(text):
|
|
doc = nlp(text)
|
|
html = displacy.render(doc, style="dep", page=True)
|
|
html = (
|
|
"<div style='max-width:100%; max-height:360px; overflow:auto'>"
|
|
+ html
|
|
+ "</div>"
|
|
)
|
|
pos_count = {
|
|
"char_count": len(text),
|
|
"token_count": 0,
|
|
}
|
|
pos_tokens = []
|
|
|
|
for token in doc:
|
|
pos_tokens.extend([(token.text, token.pos_), (" ", None)])
|
|
|
|
return pos_tokens, pos_count, html
|
|
|
|
demo = gr.Interface(
|
|
text_analysis,
|
|
gr.Textbox(placeholder="Enter sentence here..."),
|
|
["highlight", "json", "html"],
|
|
examples=[
|
|
["What a beautiful morning for a walk!"],
|
|
["It was the best of times, it was the worst of times."],
|
|
],
|
|
)
|
|
|
|
demo.launch()
|