I have a question that has been very persistent for me. Can I train a neural network with a labelled dataset (i.e.: a dataset with the information of the target) and then apply another dataset without label?
I want to train the network with the examples I have, but then in the real situation want it to classify the examples (that has no target associated). For example:
Training SET:
Var1 Var2 Var3 Var4 Target
1 2 3 1 blue
Test set (don’t have the target, in fact that’s what I want to know)
Var1 Var2 Var3 Var4
1 2 3 1
The suppose prediction would have to be blue.
I'm using rapid miner to test neural networks, but I soon understood that I’m not able to apply this test set because it misses the label.
How can I address my problem then? I wonder if I need to explore the unsupervised neural networks for this problem, but I honestly don’t think so.
kind regards.
For supervised learning you use labeled training set to train whatever model you have. You can then use the model to predict labels for an unlabeled set.
If you happen to have labels for the test set too, you can compare the predicted values to the test set labels. This way you can assess the prediction error (i.e. test the model, hence the name - test set)
If you are however only interested in the prediction, you definitely don't need the labels.