supervised-learning Questions
8
I was reading the papers on deep learning. Most of them refer to unsupervised learning.
They also say the neurons are pre-trained using unsupervised RBM network. Later they are fine tuned us...
Renaissance asked 28/10, 2013 at 22:19
3
I researched some materials,and know that the goal of contrastive learning and metric learning are both to learn such an embedding space in which similar sample pairs stay close to each other while...
Perineurium asked 9/4, 2022 at 14:40
2
Solved
I have an imbalanced dataset containing a binary classification problem. I have built Random Forest Classifier and used k-fold cross-validation with 10 folds.
kfold = model_selection.KFold(n_splits...
Crimmer asked 6/10, 2017 at 4:29
2
I am working on a classification problem using CNN where my input image size is 64X64 and I want to use pretrained model such as VGG16,COCO or any other. But the problem is input image size of pret...
Odeliaodelinda asked 1/9, 2018 at 18:2
2
Solved
As I understand it when creating a supervised learning model, our model may have high bias if we are making very simple assumptions (for example if our function is linear) which cause the alg...
Komara asked 22/8, 2015 at 21:54
3
Solved
Which are the fundamental criterias for using supervised or unsupervised learning?
When is one better than the other?
Is there specific cases when you can only use one of them?
Thanks
Banns asked 4/7, 2017 at 13:49
20
Solved
My problem:
I have a dataset which is a large JSON file. I read it and store it in the trainList variable.
Next, I pre-process it - in order to be able to work with it.
Once I have done that I s...
Arse asked 9/7, 2015 at 17:19
4
Solved
I'm learning sklearn and I didn't understand very good the difference and why use 4 outputs with the function train_test_split().
In the Documentation, I found some examples but it wasn't sufficien...
Phyliciaphylis asked 11/3, 2020 at 12:49
2
Solved
All or nearly all of the papers using dropout are using it for supervised learning. It seems that it could just as easily be used to regularize deep autoencoders, RBMs and DBNs. So why isn't dropou...
Feltie asked 29/10, 2013 at 18:41
8
I would like to calculate AUC, precision, accuracy for my classifier.
I am doing supervised learning:
Here is my working code.
This code is working fine for binary class, but not for multi class. ...
Gisele asked 25/9, 2016 at 10:17
2
I have a ML model which is trained on a million data set (supervised classification on text) , however I want the same model to get trained again as soon as a new data comes in (training data).
Thi...
Ethe asked 29/11, 2018 at 7:3
27
Solved
In terms of artificial intelligence and machine learning, what is the difference between supervised and unsupervised learning?
Can you provide a basic, easy explanation with an example?
Selective asked 2/12, 2009 at 10:37
2
Solved
I'm trying to use the packages quanteda and caret together to classify text based on a trained sample. As a test run, I wanted to compare the build-in naive bayes classifier of quanteda with the on...
Invalidism asked 29/1, 2019 at 17:57
3
Solved
I would like to study the optimal tradeoff between bias/variance for model tuning. I'm using caret for R which allows me to plot the performance metric (AUC, accuracy...) against the hyperparameter...
Humber asked 4/12, 2013 at 8:52
6
Solved
I recently studied about supervised learning and unsupervised learning. From theory, I know that supervised means getting the information from labeled datasets and unsupervised means clusteri...
Hamner asked 3/10, 2014 at 16:29
4
Solved
How can I use Subsequence String Kernel (SSK) [Lodhi 2002] to train a SVM (Support Vector Machine) in Python?
Cavallaro asked 10/2, 2014 at 10:55
2
I'm working on a problem that involves classifying a large database of texts. The texts are very short (think 3-8 words each) and there are 10-12 categories into which I wish to sort them. For the ...
Sidell asked 12/2, 2016 at 10:21
2
I have been working through the concepts of principal component analysis in R.
I am comfortable with applying PCA to a (say, labeled) dataset and ultimately extracting out the most interesting firs...
Intramolecular asked 28/11, 2013 at 2:37
2
Could someone explain the difference between classification and pattern recognition as simply as possible or direct me to the right place?!
Headrick asked 3/6, 2016 at 11:4
2
I have very small data that belongs to positive class and a large set of data from negative class. According to prof. Andrew Ng (anomaly detection vs supervised learning), I should use Anomaly dete...
Novgorod asked 25/4, 2014 at 16:42
2
Solved
According to my understanding, Distant Supervision is the process of specifying the concept which the individual words of a passage, usually a sentence, are trying to convey.
For example, a datab...
Eyrie asked 11/4, 2015 at 8:29
2
Solved
I've built an MLP with Google's TensorFlow library. The network is working but somehow it refuses to learn properly. It always converges to an output of nearly 1.0 no matter what the input actually...
Skull asked 30/11, 2015 at 11:42
2
I have a document with tagged data in the format Hi here's my [KEYWORD phone number], let me know when you wanna hangout: [PHONE 7802708523]. I live in a [PROP_TYPE condo] in [CITY New York]. I wan...
Empiric asked 15/11, 2015 at 6:37
2
Solved
I have been following the tutorials on DeepLearning.net to learn how to implement a convolutional neural network that extracts features from images. The tutorial are well explained, easy to u...
Fletcherfletcherism asked 18/3, 2014 at 5:28
2
Solved
I am using Scikit-learning and I need to calculate the True positive (TP), the False Positive (FP), the True Negative (TN) and the False Negative (FN) from a confusion matrix like this:
[[2 0 3 4]...
Keos asked 10/7, 2015 at 16:21
1 Next >
© 2022 - 2024 — McMap. All rights reserved.