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