Spaces:
Sleeping
Sleeping
import gradio as gr | |
playground = gr.Blocks() | |
def create_playground_header(): | |
gr.Markdown(""" | |
π€ Hugging Face Labs | |
** Explore different LLM on Hugging Face platform. Just play and enjoy ** | |
""") | |
def create_playground_footer(): | |
gr.Markdown(""" | |
### To Learn More about π€ Hugging Face,[Click Here](https://huggingface.co/docs) | |
""") | |
with playground: | |
create_playground_header() | |
with gr.Tabs(): | |
with gr.TabItem("Text"): | |
gr.Markdown(""" | |
> Text Summarization and Translation | |
""") | |
with gr.TabItem("Image"): | |
gr.Markdown(""" | |
> Image Captioning | |
""") | |
with gr.TabItem("Name Entity"): | |
gr.Markdown(""" | |
> Name Entity Recognition | |
""") | |
create_playground_footer() | |
playground.launch(share=True) |