sashank812 commited on
Commit
0382947
·
verified ·
1 Parent(s): 8cb67f6

updated readme.md

Browse files
Files changed (1) hide show
  1. README.md +46 -33
README.md CHANGED
@@ -1,33 +1,46 @@
1
- # Multi Document Summarization
2
-
3
- This project provides a multi-document summarization tool using state-of-the-art NLP models like BART and Longformer. It supports various file formats and generates summaries along with visualizations like dendrograms, t-SNE plots, TF-IDF plots, and word clouds.
4
-
5
- ## Features
6
- - Summarizes multiple documents into concise summaries.
7
- - Supports file formats: `.docx`, `.txt`, `.html`, `.pdf`, `.csv`, `.xlsx`, `.json`, `.xml`, `.ppt`, `.pptx`.
8
- - Visualizations: Dendrogram, t-SNE, TF-IDF, Word Cloud.
9
-
10
- ## Installation
11
- 1. Clone the repository:
12
- ```bash
13
- git clone https://github.com/your-username/abstractive-text-summarization.git
14
- ```
15
- 2. Navigate to the project directory:
16
- ```bash
17
- cd abstractive-text-summarization
18
- ```
19
- 3. Install dependencies:
20
- ```bash
21
- pip install -r requirements.txt
22
- ```
23
-
24
- ## Usage
25
- 1. Run the application:
26
- ```bash
27
- python major_project_main.py
28
- ```
29
- 2. Open the Gradio interface in your browser.
30
- 3. Upload files and click "Summarize" to generate summaries and visualizations.
31
-
32
- ## License
33
- This project is licensed under the MIT License. See the LICENSE file for details.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: Multi Document Summarizer
3
+ emoji: 🔥
4
+ colorFrom: blue
5
+ colorTo: green
6
+ sdk: gradio
7
+ sdk_version: 4.15.0
8
+ app_file: major_project_main.py
9
+ pinned: false
10
+ license: mit
11
+ short_description: Summarizes multiple docs (docx, pdf, etc.) with NLP & visual
12
+ ---
13
+
14
+ # Multi Document Summarization
15
+
16
+ This project provides a multi-document summarization tool using state-of-the-art NLP models like BART and Longformer. It supports various file formats and generates summaries along with visualizations like dendrograms, t-SNE plots, TF-IDF plots, and word clouds.
17
+
18
+ ## Features
19
+ - Summarizes multiple documents into concise summaries.
20
+ - Supports file formats: `.docx`, `.txt`, `.html`, `.pdf`, `.csv`, `.xlsx`, `.json`, `.xml`, `.ppt`, `.pptx`.
21
+ - Visualizations: Dendrogram, t-SNE, TF-IDF, Word Cloud.
22
+
23
+ ## Installation
24
+ 1. Clone the repository:
25
+ ```bash
26
+ git clone https://github.com/your-username/abstractive-text-summarization.git
27
+ ```
28
+ 2. Navigate to the project directory:
29
+ ```bash
30
+ cd abstractive-text-summarization
31
+ ```
32
+ 3. Install dependencies:
33
+ ```bash
34
+ pip install -r requirements.txt
35
+ ```
36
+
37
+ ## Usage
38
+ 1. Run the application:
39
+ ```bash
40
+ python major_project_main.py
41
+ ```
42
+ 2. Open the Gradio interface in your browser.
43
+ 3. Upload files and click "Summarize" to generate summaries and visualizations.
44
+
45
+ ## License
46
+ This project is licensed under the MIT License. See the LICENSE file for details.