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.

  • 相关阅读:
    贴图UV动画
    编辑器开发读取LIGHTMAP的脚本
    一个角色旋转身体在向前行走的代码
    第一周
    《大道至简》读后感
    第二周
    Easyui,好的设计思路
    有关反射
    Easyui表格的行编辑
    冒泡排序
  • 原文地址:https://www.cnblogs.com/ysjxw/p/1144196.html
Copyright © 2011-2022 走看看