Top "Unsupervised-learning" questions

Unsupervised learning refers to machine learning contexts in which there is no prior 'training' period in which the learning agent is trained on objects of known type.

What is the difference between supervised learning and unsupervised learning?

In terms of artificial intelligence and machine learning, what is the difference between supervised and unsupervised learning? Can you provide …

machine-learning artificial-intelligence supervised-learning unsupervised-learning
Can anyone give a real life example of supervised learning and unsupervised learning?

I recently studied about supervised learning and unsupervised learning. From theory, I know that supervised means getting the information from …

machine-learning deep-learning data-mining supervised-learning unsupervised-learning
K- Means algorithm

I'm trying to program a k-means algorithm in Java. I have calculated a number of arrays, each of them containing …

java algorithm machine-learning grouping unsupervised-learning
How do you decide the parameters of a Convolutional Neural Network for image classification?

I am using Convolutional Neural Networks (Unsupervised Feature learning to detect features + Softmax Regression Classifier) for image classification. I have …

computer-vision neural-network unsupervised-learning autoencoder
what is distant supervision?

According to my understanding, Distant Supervision is the process of specifying the concept which the individual words of a passage, …

nlp stanford-nlp supervised-learning unsupervised-learning
Unsupervised pre-training for convolutional neural network in theano

I would like to design a deep net with one (or more) convolutional layers (CNN) and one or more fully …

python neural-network theano deep-learning unsupervised-learning
Is train/test-Split in unsupervised learning necessary/useful?

In supervised learning I have the typical train/test split to learn the algorithm, e.g. Regression or Classification. Regarding …

machine-learning unsupervised-learning
Rand Index function (clustering performance evaluation)

As far as I know, there is no package available for Rand Index in python while for Adjusted Rand Index …

python cluster-analysis precision unsupervised-learning
Find length of cluster (how many point associated with cluster) after KMeans clustering (scikit learn)

I have done clustering using Kmeans using sklearn. While it has a method to print the centroids, I am finding …

python machine-learning scikit-learn k-means unsupervised-learning