So far, we have seen how to train and validate models in CNTK using C#. Also, there many more details which should be revealed in order to better understand the CNTK library. One of the important features not only in the CNTK but also in every DNN (deep neural networks) is the learning rate.
In ANN, the learning rate is the number by which the derivative is multiplied before it is subtracted by the weight. If the weight is decreased too much, the loss function will be increased and the network will diverge. On the other hand, if the weight is decreased too little, the loss function will be changed little and the convergent progress would go to slowly. So selecting the right value of the parameter is important. During the training process, the learning rate is usually defined as constant value. In CNTK, the learning rate is defined as follows:
var learningRate = new TrainingParameterScheduleDouble(0.2, 1);
From the code above, the learning rate is assigned to 0.2 value per sample. This means that the whole training process will be done with the learning rate of 0.2.
The CNTK supports dynamic changing of the learning rate.
Assume we want to setup different learning rates so that from the first to the 100 iterations, the learning rate would be 0.2. From the 100 to 500 iterations, we want the learning rate to be 0.1. Moreover, after the 500 iterations are completed and to the end of the iteration process, we want to setup the learning rate to 0.05.
Above said can be expressed:
lr1=0.2 , from 1 to 100 iterations
lr2= 0.1 from 100 to 500 iterations
lr3= 0.05 from 500 to the end of the searching process.
In case we want to setup the learning rate dynamically, we need to use the PairSizeTDouble
class in order to define the learning rate. So for the above requirements, the flowing code should be implemented:
PairSizeTDouble p1 = new PairSizeTDouble(2, 0.2);
PairSizeTDouble p2 = new PairSizeTDouble(10, 0.1);
PairSizeTDouble p3 = new PairSizeTDouble(1, 0.05);
var vp = new VectorPairSizeTDouble() { p1, p2, p3 };
var learningRatePerSample = new CNTK.TrainingParameterScheduleDouble(vp, 50);
First, we need to define PairSizeTDouble
object for every learning rate value, with the integer number which will be multiplied.
Once we define the rates, make an array of rate values by creating the VectorPairSizeTDouble
object. Then the array is passed as the first argument in the TrainingParameterScheduleDouble
method. The second argument of the method is multiplication number. So in the first rate value, the 2 is multiple with 50 which is 100, and denotes the iteration number. Similar multiplication is done in the other rate values.
Filed under: .NET, C#, CNTK, CodeProject
Tagged: C#, CNTK, CodeProject, Machine Learning