a-b-v-k commited on
Commit
9e95be0
1 Parent(s): 4eeb48c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -0
README.md CHANGED
@@ -10,3 +10,21 @@ pinned: false
10
  ---
11
 
12
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  ---
11
 
12
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
13
+
14
+ ### Content Summarizer
15
+
16
+ The Content Summarizer is a project that can generate summaries for various types of content including text, URLs, audio, video, and YouTube. It utilizes the transformers library and leverages the BART-large-CNN, T5-small and Whisper-tiny.en models to provide effective summarization.
17
+
18
+ It contains two options for summarization:
19
+ - Overall summary
20
+ - Auto-Chapters summary
21
+
22
+ #### Overall summary
23
+ The overall summary is generated using BART-large-CNN with chunk split algorithm.
24
+
25
+ #### Auto Chapters summary
26
+ In this type, the text content is split using clustering techniques and chunk split algorithm and uses BART-large-CNN and T5-small for summarization which gives blocks of summary with headings for each.
27
+
28
+ To run the app, install the packages from requirements.txt and execute the command `streamlit run app.py` from the root of this project.
29
+
30
+ This repository has also been added as a space in huggingface: https://huggingface.co/spaces/KevlarVK/content_summarizer