Topic 2 Question 29
2 つ選択Which of the following are examples of hyperparameters?
Number of hidden layers
Number of nodes in each hidden layer
Biases
Weights
解説
If model parameters are variables that get adjusted by training with existing data, your hyperparameters are the variables about the training process itself. For example, part of setting up a deep neural network is deciding how many "hidden" layers of nodes to use between the input layer and the output layer, as well as how many nodes each layer should use. These variables are not directly related to the training data at all. They are configuration variables. Another difference is that parameters change during a training job, while the hyperparameters are usually constant during a job. Weights and biases are variables that get adjusted during the training process, so they are not hyperparameters. Reference: https://cloud.google.com/ml-engine/docs/hyperparameter-tuning-overview
コメント(4)
Answer: A, B Description: Hyperparamters are configuration variables and cannot change
👍 11[Removed]2020/03/28A and B are correct answer.
👍 6saurabh18052020/08/18Answer : AB
👍 5[Removed]2020/03/21
シャッフルモード