Rahul Thakur commited on
Commit
0a89dc3
Β·
unverified Β·
1 Parent(s): 4a86a4b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -8
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** *(planned for next update)*
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/nlp-assistant.git
41
- cd nlp-assistant
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 Yueh-Huan/news-category-classification-distilbert
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
- - Change the contact link or name
66
-
67
- Want me to add this `README.md` directly to your folder via the canvas?
 
 
 
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