This repository contains all the projects built using Gradio.
The Text Summarization project allows users to input a block of text and receive a concise summary generated by a pre-trained model from Hugging Face.
The Named Entity Recognition project allows users to input text and identify entities such as names, dates, and locations within the text using a pre-trained model from Hugging Face.
- Python 3.6+
- Gradio
- Transformers (Hugging Face)
-
Run the Text Summarization app:
python TextSummarizationApp.py
-
Open your browser and go to
http://localhost:7860
to interact with the app.
-
Run the Named Entity Recognition app:
python NamedEntityRecognition.py
-
Open your browser and go to
http://localhost:XXXX
to interact with the app.
TextSummarizationApp.py
: Main script to run the Gradio app for text summarization.
-
NamedEntityRecognition.py
: Main script to run the Gradio app for named entity recognition. -
requirements.txt
: List of dependencies.