Parameter Tuning
Date
Parameter adjustment implementation method
References:
Build AI with AI
From idea to launch — accelerate your AI development with free AI co-coding, out-of-the-box environment and best price of GPUs.
Date
Parameter AdjustmentRefers to adjusting parameters to achieve better results, with the goal of obtaining a better model: fixing errors and improving the accuracy of neural network training.
The optimal parameters of a model depend on many scenarios. In model evaluation and selection, in addition to the selection of the algorithm, its parameters also need to be set. Parameter adjustment is the process of completing parameter setting. At present, the common practice is to select a range and a step size for the parameter, such as [0, 0.2] with a step size of 0.05. In this way, there are 5 candidate parameter values, and the ideal value will be obtained from these 5 candidate values. Although the parameter value obtained in this way is not the optimal value, it can compromise between computational overhead and performance estimation.
Usually, the discriminant effect on the test set will be used to estimate the generalization ability of the model in actual application. The training data will be divided into training set and validation set, and model selection and parameter adjustment will be performed based on the performance on the validation set.
From idea to launch — accelerate your AI development with free AI co-coding, out-of-the-box environment and best price of GPUs.
Date
Parameter AdjustmentRefers to adjusting parameters to achieve better results, with the goal of obtaining a better model: fixing errors and improving the accuracy of neural network training.
The optimal parameters of a model depend on many scenarios. In model evaluation and selection, in addition to the selection of the algorithm, its parameters also need to be set. Parameter adjustment is the process of completing parameter setting. At present, the common practice is to select a range and a step size for the parameter, such as [0, 0.2] with a step size of 0.05. In this way, there are 5 candidate parameter values, and the ideal value will be obtained from these 5 candidate values. Although the parameter value obtained in this way is not the optimal value, it can compromise between computational overhead and performance estimation.
Usually, the discriminant effect on the test set will be used to estimate the generalization ability of the model in actual application. The training data will be divided into training set and validation set, and model selection and parameter adjustment will be performed based on the performance on the validation set.
From idea to launch — accelerate your AI development with free AI co-coding, out-of-the-box environment and best price of GPUs.