predicting class for new data using neuralnet

前端 未结 3 1676
無奈伤痛
無奈伤痛 2021-02-14 07:31

I\'m trying to predict the class (0 or 1) for a test dataset using a neural network trained using the neuralnet package in R.

The data I have looks as follows:

3条回答
  •  不要未来只要你来
    2021-02-14 08:04

    Hard to say in the absence of a good description of the 'test'-object, but can you see if this gives better results:

    compute(nn, test[, 1:4])
    

提交回复
热议问题