Discrete Data Fitting using neural networks in matlab
2 次查看(过去 30 天)
显示 更早的评论
Dear Friends,
I want to predict machine fault size (Continuous Variable) from 5 faults observation (Discrete Variables)
is it correct to use the fitting toolbox in MATLAB when my output data are Discrete??
when i use the fitting toolbox, the regression showing me R^2 = 0.92 (which is very good result) however, the MSE showing me very large number, the best MSE was =65 !! after few training.
shall i consider the MSE ?? if yes,, how to minimize it??
Regards
3 个评论
priya singh
2022-6-10
how to feed discrete data in neural network ? Kindly help if you can provide any source to feed the continuous variable in discrete form.
采纳的回答
Greg Heath
2016-1-16
Normalize mse(error) for error = output-target with the mean target variance. Then
vart = mean(var(target',1))
NMSE = 1 - mse(error)/vart
and
Rsquare = 1 - NMSE
Hope this helps.
Thank you for formally accepting my answer
Greg
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Gaussian Process Regression 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!