Conditions | 1 |
Total Lines | 16 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | """Base class for experiment.""" |
||
61 | def _score(self, params): |
||
62 | """Score the parameters. |
||
63 | |||
64 | Parameters |
||
65 | ---------- |
||
66 | params : dict with string keys |
||
67 | Parameters to score. |
||
68 | |||
69 | Returns |
||
70 | ------- |
||
71 | float |
||
72 | The score of the parameters. |
||
73 | dict |
||
74 | Additional metadata about the search. |
||
75 | """ |
||
76 | raise NotImplementedError |
||
77 |