Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I want to check below sentence is either positive or negative please help me
Sentence -I don't remember anything
Is this what you are looking for? (In Python)
from textblob import TextBlob
TextBlob("not a very great calculation").sentiment
## Sentiment(polarity=-0.3076923076923077, subjectivity=0.5769230769230769)
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 days ago.
Improve this question
I need to write a program to decode a permutation cipher. Could you help me? Thanks.
The input of the procedure should include the initial phrase and the number of periods. There is an encryption key and it has to be converted to reverse. Use strings please.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 days ago.
Improve this question
I am using jina's docarray to create a dataset for neural search solution, I need to perform some regex filters on datasets.
How I can run regex operations on docarray dataset and do jina have support for regex? Unable to find relevant resources for this.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
For example, "1234" and I want the program knows that 1 is the smallest value. Thank you
This may be of help.
x = min('1234')
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I am trying to find top 100/1000 words based on tfidfVectorizer output of Python's scikit-learn library. Is there a way to do it using a function from the scikit libraries?
Thanks for help
What do you mean by top 100/1000 words? The most frequent words in a dataset? You can use the Counter class of the Python standard library to do that. No need for scikit-learn.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
Is there a way I could find the Latin root/definition of said root in a word with NLTK (and possibly wordnet)?
Thanks so much!
What you need are lemmatizers. A Latin lemmatizer is:
LemLat [for one word, whole text document]
A Greek lemmatizer:
The Grammatical Tagger by ELTL [download]