updated readme.md
Browse files
README.md
CHANGED
@@ -1,33 +1,46 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.
|