I successfully apply a neural net operator in rapidminer on a data set in which I have 3 columns and the 4th one the labelled one
column1|column2|column3|column4(labelled)
data |data |data |data
, now I have a testing data in order to predict the value of labelled column based upon the column1, column2, column3, testing data looks like:
column1|column2|column3
data |data |data
Question: is this correct?
Using this approach, I created a model so that the process can predict value of unlabelled column:
Then, using the solution in the below reference :
I again created a model using split data, for this I combined my data set for training and testing (now the combined data has some values for labelled column and some does not have this column value as this is the part of testing data).
But still I am getting this error.