Hi,
The hyperparameters to be tuned can be added in the Experiment Manager. In the code file, which contains the network definition, these hyperparameters can be accessed via the params variable, which is a structure with fields from the Experiment Manager hyperparameter table. These hyperparameters should be declared in the network definition code before starting the process of hyperparameter tuning.
For example, to tune the filter size hyperparameter in this example, first add this hyperparameter in the Experiment Manager. Define the Range, Type, Transform for this hyperparameter. Now, use this hyperparameter in the network definition (defined in the BayesOptExperiment_setup1.mlx file).
convBlock(params.FilterSize,numF,params.SectionDepth)
After all the hyperparameters to be tuned are added in both, the Experiment Manager and in the code file, the hyperparameter tuning process can commence.