Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I have a DataSet of words and texts and I want to make clusters (by K-means )or any other unsupervised/supervised learning method to distinguish words for example , the word 'John' will be classified as a name(and will be clustered with other person names) , 'brazil' as a place and etc...
Is there a model that I can use to solve the problem.
I have Heard of N-grams but I dont know how to plot the Ngrams probability on a x,y plot or such
P.S if you have any examples that will be wonderful
How about word2vec and embeddings?
https://deeplearning4j.org/word2vec
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I am looking for beginner Machine Learning Linear Regression problems. I searched in Kaggle, but couldn't find a proper one. Can you please suggest me a beginner problem from Kaggle, or from any other platform?
Thanks in advance.
Kaggle has tons of linear regression notebooks and datasets to learn from, most popular ones are probably about house pricing (given certain house features predict it's price).
Here's a new one I'm looking forward to solve:
Ben & Jerry's flavours and ratings ---> products.csv
The main goal would be predict wich ice cream flavours are better accepted based on it's ingredients.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I am trying to develop a system(machine learning model) to identify whether the land is agricultural or paddy (dry land or wet-land) and has undergone changes over a period of time.
Can anyone suggest suitable dataset which I can use for training purposes?
after a few research i have got some datasets websites Please do check it:
https://data.world/datasets/land
https://www.researchgate.net/publication/317914265_A_global_dataset_of_crowdsourced_land_cover_and_land_use_reference_data
https://rmets.onlinelibrary.wiley.com/doi/full/10.1002/gdj3.32
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I need a dataset for my future project based on image processing, hand recognition. I need a minimum of 5 hand position and orientation and a minumim of 200 images per set.
I want to know if there are websites where I can find a great variety of datasets.
I recommend you to search here: http://homepages.inf.ed.ac.uk/rbf/CVonline/Imagedbase.htm#gesture.
I needed this for a project too and I found a lot of variations here. It also depends on what kind of gestures you are looking for, but I think you will find here what you need.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am a sort of newbie to NLP world.
But anyway, I have just started my NLP project.
My task is about inferring hidden sentence in a paragraph.
Let me show you an example question.
a multiple choice question about inferring a clause in the blank
I want my machine learning model to extract some meaningful phrase from the given text(in above image, a paragraph)
I know that my question sounds quite ambiguous for you all. I just want to know even a small clue.
Thank you for your response in advance.
Skip-thought vectors are a system for predicting sentences from a context, by essentially constructing sentence-wide vectors. Might be useful, especially so in combination with context2vec if you want to build a custom model.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I want to know what are the appropriate tools for each step to analyse sentiment :
removing stopwords,
stemming,
Vector Representation of Text,
feature selection,
classification,
how to pass from Vector Representation of Text to feature selection , is there any step to follow and an examlpe which describe those steps
You can take a look at Bing Liu's tutorial on sentiment analysis here, and Pang & Lee's survey here. They cover the different aspects of sentiment analysis and common approaches.