我是R编程的新手,我需要使用随机搜索方法对R中的神经网络进行超参数调整方面的帮助。我目前使用的参数是隐藏层,我也想使用神经元和历元来优化模型。我希望有人能帮帮忙。该模型的代码如下所示。
set.seed(2)
N <- neuralnet(Accident_Severity ~.,
data = train_accident,
hidden = c(3,5),
linear.output = FALSE)