Ashish Soni commited on
Commit
c81ad8e
·
verified ·
1 Parent(s): 26dbc08

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -1
README.md CHANGED
@@ -10,4 +10,28 @@ pinned: false
10
  license: afl-3.0
11
  ---
12
 
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  license: afl-3.0
11
  ---
12
 
13
+ # Text Summarization App
14
+
15
+ This application provides a simple interface to summarize text using a pre-trained model from Hugging Face's Transformers library. The model used under the hood is `DISTILBART-12-6-CNN`, a distilled version of BART fine-tuned on the CNN/Daily Mail dataset.
16
+
17
+ ## Features
18
+
19
+ - **Text Summarization**: Generate concise summaries of input text.
20
+ - **User-Friendly Interface**: Built using Gradio for an easy-to-use web interface.
21
+
22
+ ## Model
23
+
24
+ - **Model Used**: [DISTILBART-12-6-CNN](https://huggingface.co/sshleifer/distilbart-cnn-12-6)
25
+ - **Framework**: Hugging Face Transformers
26
+
27
+ ## Software Packages
28
+
29
+ - **Gradio**: Used to create the web interface.
30
+ - **Transformers**: Used for model inference.
31
+ - **Spaces**: Utilized for GPU acceleration during model execution.
32
+
33
+ ## How to Use
34
+
35
+ 1. Enter the text you want to summarize in the provided textbox.
36
+ 2. Click "Submit" to generate a summary.
37
+ 3. The summarized text will be displayed in the output box.