Acquisition view
acquisition_view
¶
An acquisition plot.
Classes¶
AcquisitionView
¶
AcquisitionView(active_learning_algo: ActiveLearningAlgo)
View of points acquired during active learning.
This visualization tool only works with a 2-dimensional input space.
Parameters:
-
active_learning_algo
(ActiveLearningAlgo
) –The active learning algorithm using sequential acquisition.
Raises:
-
NotImplementedError
–When the active learning algorithm uses parallel acquisition.
Source code in src/gemseo_mlearning/active_learning/visualization/acquisition_view.py
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
|
Functions¶
draw
¶
draw(
new_point: RealArray | None = None,
discipline: Discipline | None = None,
filled: bool = True,
n_test: int = 30,
show: bool = True,
file_path: str | Path = "",
) -> Figure
Draw the points acquired through active learning.
This visualization includes four surface plots representing variables of interest in function of the two inputs:
- (top left) the surface plot of the discipline,
- (top right) the surface plot of the acquisition criterion,
- (bottom left) the surface plot of the regressor,
- (bottom right) the standard deviation of the regressor.
The
Parameters:
-
new_point
(RealArray | None
, default:None
) –The new point to be acquired.
-
discipline
(Discipline | None
, default:None
) –The discipline for which
n_test**2
evaluations will be done. IfNone
, do not plot the discipline, i.e. the first subplot. In particular, if the discipline is costly, it is better to leave this argument toNone
. -
n_test
(int
, default:30
) –The number of points per dimension.
-
filled
(bool
, default:True
) –Whether to plot filled contours. Otherwise, plot contour lines.
-
show
(bool
, default:True
) –Whether to display the view.
-
file_path
(str | Path
, default:''
) –The file path to save the view. If empty, do not save it.
Returns:
-
Figure
–The acquisition view.
Source code in src/gemseo_mlearning/active_learning/visualization/acquisition_view.py
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 |
|