This is a dedicated watch page for a single video.
Scenario: The Unlimited Class Wrestling Federation (UCWF), founded by Edward Garner, is embracing technology to enhance its business operations. Edward has enlisted your expertise to assist with the company’s Microsoft Azure service. Project Details: The IT team is utilizing Azure Machine Learning Service to automate hyperparameter exploration for their neural network classification model. Hyperparameter Constraints: Edward has specified the following hyperparameter space for automatic tuning using random sampling: Learning rate: Sampled from a normal distribution with a mean of 10 and standard deviation of 3. Batch size: Must be one of 16, 32, or 64. Keep probability: Sampled from a uniform distribution between 0.05 and 0.1. Implementation Requirement: A developer needs to implement this using the param_sampling method from the Azure Machine Learning Service Python API. Question: How should they complete the code segment, replacing [?] with the correct value? python from azureml . train . hyperdrive import RandomParameterSampling param_sampling = RandomParameterSampling ( { “ learning_rate ”: normal ( 10 , 3 ), “ batch_size ”: choice ( 16 , 32 , 64 ), “ keep_probability ”: [?] } )