Spaces:
Sleeping
Sleeping
Rahul Thakur
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -8,9 +8,9 @@ A lightweight NLP-powered assistant that provides **summarization**, **news clas
|
|
8 |
|
9 |
- π **Summarization** (with sliding window + meta-summary)
|
10 |
- ποΈ **News Classification** using `DistilBERT`
|
11 |
-
- π **Event Detection** with `KeyBERT`
|
12 |
- π₯ Upload **PDFs**
|
13 |
-
- π Input article **URLs**
|
14 |
|
15 |
---
|
16 |
|
@@ -22,6 +22,8 @@ A lightweight NLP-powered assistant that provides **summarization**, **news clas
|
|
22 |
- `pdfplumber` for PDF extraction
|
23 |
- `PyTorch` (auto GPU/CPU)
|
24 |
- `scikit-learn` & `sentence-transformers` for KeyBERT
|
|
|
|
|
25 |
|
26 |
---
|
27 |
|
@@ -37,8 +39,8 @@ nlp_assistant/ βββ app.py # Main Streamlit app βββ requirements.txt
|
|
37 |
### 1. Clone the repo
|
38 |
|
39 |
```bash
|
40 |
-
git clone https://github.com/Raahul-Thakur/
|
41 |
-
cd
|
42 |
```
|
43 |
|
44 |
### 2. Requirements
|
@@ -53,7 +55,7 @@ streamlit run app.py
|
|
53 |
Models Used
|
54 |
Task Model
|
55 |
Summarization pszemraj/led-large-book-summary (Long LED Transformer)
|
56 |
-
Classification
|
57 |
Event Detection KeyBERT with sentence-transformers
|
58 |
|
59 |
---
|
@@ -62,6 +64,8 @@ Let me know if youβd like to:
|
|
62 |
|
63 |
- Add badges (stars, forks, license)
|
64 |
- Include a demo GIF/screenshot
|
65 |
-
-
|
66 |
-
|
67 |
-
|
|
|
|
|
|
8 |
|
9 |
- π **Summarization** (with sliding window + meta-summary)
|
10 |
- ποΈ **News Classification** using `DistilBERT`
|
11 |
+
- π **Event Detection** with `KeyBERT`, `spaCy` & `TF-IDF`
|
12 |
- π₯ Upload **PDFs**
|
13 |
+
- π Input article **URLs** using `newspaper3k`
|
14 |
|
15 |
---
|
16 |
|
|
|
22 |
- `pdfplumber` for PDF extraction
|
23 |
- `PyTorch` (auto GPU/CPU)
|
24 |
- `scikit-learn` & `sentence-transformers` for KeyBERT
|
25 |
+
- `newspaper3k` for url support
|
26 |
+
- `spacy` & `TfidfVectorizer` for Extracting NER
|
27 |
|
28 |
---
|
29 |
|
|
|
39 |
### 1. Clone the repo
|
40 |
|
41 |
```bash
|
42 |
+
git clone https://github.com/Raahul-Thakur/NLP-Assistant.git
|
43 |
+
cd NLP-ASSISTANT
|
44 |
```
|
45 |
|
46 |
### 2. Requirements
|
|
|
55 |
Models Used
|
56 |
Task Model
|
57 |
Summarization pszemraj/led-large-book-summary (Long LED Transformer)
|
58 |
+
Classification
|
59 |
Event Detection KeyBERT with sentence-transformers
|
60 |
|
61 |
---
|
|
|
64 |
|
65 |
- Add badges (stars, forks, license)
|
66 |
- Include a demo GIF/screenshot
|
67 |
+
- contact
|
68 |
+
|
69 |
+
LinkedIn: https://www.linkedin.com/in/rahul-t-171458190/
|
70 |
+
Instagram: https://www.instagram.com/rah.ipynb
|
71 |
+
Gmail: [email protected]
|