Natural Language Processing Using Python
Budget: ₹600 – ₹1,500 INR
I have a list of words (words.csv, size=2.4 MB) - It contains unigrams, bigrams, trigrams, quadgrams extracted from some text. I need a script to identify context from that word, like Sachin Tendulkar can be in sports context, Baba Ramdev can be used in Yoga context, Narendra Modi can be used in Political context.
So, output would be:
{
"sachin tendulkar" : "Sports",
"baba ramdev" : "yoga",
"narendra modi" : "politics"
}
I want result as a map, as well as I want the script used to create the output JSON.
Hint: Google NLP Library can be used for this
So, output would be:
{
"sachin tendulkar" : "Sports",
"baba ramdev" : "yoga",
"narendra modi" : "politics"
}
I want result as a map, as well as I want the script used to create the output JSON.
Hint: Google NLP Library can be used for this