ribs.archives.CQDScoreResult¶
- class ribs.archives.CQDScoreResult(iterations: int | integer, mean: float | floating, scores: ndarray, target_points: ndarray, penalties: ndarray, obj_min: float | floating, obj_max: float | floating, dist_max: float | floating, dist_ord: Any)[source]¶
Stores the result of running
cqd_score().Methods
Attributes
Number of times the score was computed.
The mean score.
Array of scores obtained on each iteration.
(iterations, n, measure_dim) array of target points passed into the function.
1D array of penalties used in the computation.
Minimum objective passed into the function.
Maximum objective passed into the function.
Max distance passed into the function.
Order of the norm for distance that was passed into the function.
- dist_ord : Any¶
Order of the norm for distance that was passed into the function. Refer to the
ordargument innumpy.linalg.norm()for type info.