What is a Learning Curve in machine learning?

后端 未结 10 2105
有刺的猬
有刺的猬 2020-12-23 02:15

I want to know what a learning curve in machine learning is. What is the standard way of plotting it? I mean what should be the x and y axis of my plot?

10条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-23 02:44

    It usually refers to a plot of the prediction accuracy/error vs. the training set size (i.e: how better does the model get at predicting the target as you the increase number of instances used to train it)

    learning-curve

    Usually both the training and test/validation performance are plotted together so we can diagnose the bias-variance tradeoff (i.e determine if we benefit from adding more training data, and assess the model complexity by controlling regularization or number of features).

    bias-variance

提交回复
热议问题