generate_random_parameter_samples ============================================================ .. py:function:: petpal.utils.testing_utils.generate_random_parameter_samples(num_samples, num_params, hi, lo) Generates an array of random parameter samples. :param num_samples: The number of samples to generate. :type num_samples: int :param num_params: The number of parameters per sample. :type num_params: int :param hi: The upper limit (exclusive) of the interval to draw random samples. :type hi: float :param lo: The lower limit (inclusive) of the interval to draw random samples. :type lo: float :returns: *np.ndarray* -- An array of random parameters samples with shape ``(num_samples, num_params)``. .. note:: Uses :func:`np.random.random` to generate random values in a given shape.