zoukankan      html  css  js  c++  java
  • the Overfitting in Neural Network

    Related Definition:

    1.Overfitting happens when a model works very well on its trainning set,but has poor performance on new data.

    2.Overfitting is when the NN learns the specific details of the training set, instead of the general pattern found in all present and future data

    A simple example is as follows. Given n points on 2-D space, do curve fitting. The optimal solution (i.e., no error) is a n+1 polynomial function. However, as it is easily know, such high order functions will be very irrgular. Intuitively, that will not be the real case.

    overfitting 过拟合
    a traditional problem of pattern recognition in SLT(statistical learning theory), the VC dim. of your nn(neural networks) is too high, so produce the phemenon, so in SVM(support vector machine) we fix the training error and reduce the VC dim. of nn.
     
    There can be two causes:

    1.Training for too long. Solution?
        1.1 Test against a separate test set every so often.
        1.2 Stop when the results on the test set start getting worse.
    2.Too many hidden nodes
        2.1 One node can model a linear function
        2.2 More nodes can model higher-order functions, or more input patterns
        2.3 Too many nodes model the training set too closely, preventing generalisation.

  • 相关阅读:
    有nativeQuery = true和没有的区别
    itext隐藏table的单元格边框
    Semaphore (参考资料,还没细看)
    STL 一级/二级空间配置器
    内联函数
    死锁
    用户态和内核态
    关于变量的可见性和生命周期
    主从库原理
    xx亿数据处理
  • 原文地址:https://www.cnblogs.com/ysjxw/p/1144196.html
Copyright © 2011-2022 走看看