An open API service indexing awesome lists of open source software.

https://github.com/akashp1712/nlp-akash

Natural Language Processing notes and implementations.
https://github.com/akashp1712/nlp-akash

natural-language-processing nlp nlp-akash nltk summarization text-summarization

Last synced: 29 days ago
JSON representation

Natural Language Processing notes and implementations.

Awesome Lists containing this project

README

        

# nlp-akash
## Natural Language Processing notes and implementations

Learning Notes: [nlp-learning](https://github.com/akashp1712/nlp-akash/blob/master/nlp-learning.md)

#### Note: if you like my work, please support by adding yourself for [LessenText](https://yep.so/p/lessentextai?ref=github) Beta program.


Natural Language Processing

## Text Summarization
--------------------
### Algorithms
--------------------
#### 1. Summarization implementation using word frequency.
[![Open in Streamlit](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://share.streamlit.io/akashp1712/streamlit-text-summarization/main/app.py)

Code: [**Word_Frequency_Summarization:**](https://github.com/akashp1712/nlp-akash/blob/master/text-summarization/Word_Frequency_Summarization.py)

Article: [**Text summarization in 5 steps using NLTK**](https://becominghuman.ai/text-summarization-in-5-steps-using-nltk-65b21e352b65)

#### 2. Summarization implementation using TF-IDF algorithm
[![Open in Streamlit](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://share.streamlit.io/akashp1712/streamlit-text-summarization/main/app.py)

Code: [**TF_IDf_Summarization:**](https://github.com/akashp1712/nlp-akash/blob/master/text-summarization/TF_IDF_Summarization.py)

Article: [**Text Summarization using TF-IDF**](https://towardsdatascience.com/text-summarization-using-tf-idf-e64a0644ace3)

#### 3. Fetch top sentences using TextRank Algorithm
Code: [**TextRank for Sentences:**](https://github.com/akashp1712/nlp-akash/blob/master/text-summarization/text_rank_sentences.py)

Article: [**Sentence Extraction in Python using TextRank Algorithm**](https://medium.com/analytics-vidhya/sentence-extraction-using-textrank-algorithm-7f5c8fd568cd)

--------------------
### Projects
--------------------
#### 1. Summarize webapge from the given URL.
Code: [**https://github.com/akashp1712/summarize_webpage**](https://github.com/akashp1712/summarize_webpage)