dp-100-data-scientist-assoc video for scenario: The Unlimited Class Wrestling Federation (UCWF), founded by promoter Edward Garner, is leveraging technology to
Scenario: The Unlimited Class Wrestling Federation (UCWF), founded by promoter Edward Garner, is leveraging technology to enhance its business operations. As an expert in Microsoft Azure, you are advising the IT team on optimizing hyperparameter tuning for a neural network classification model using the Azure Machine Learning Service. Edward has specified the following hyperparameter space for random sampling: Learning rate: Selected from a normal distribution with a mean of 10 and a standard deviation of 3. Batch size: Must be 16, 32, or 64. Keep probability: Must be randomly sampled from a uniform distribution in the range 0.05 to 0.1. The developer needs to use the param_sampling method from the Python API for Azure Machine Learning Service: python from azureml . train . hyperdrive import RandomParameterSampling param_sampling = RandomParameterSampling ( { “ learning_rate ”: normal ( 10 , 3 ), “ batch_size ”: choice ( 16 , 32 , 64 ), “ keep_probability ”: [?] } ) What correct value should replace [?] in the code segment to ensure proper uniform sampling of keep_probability ?