A unique key to describe this submission, e.g. the model name. This is also the name that will later appear in the benchmark table. The name needs to be unique across the whole benchmark. Non-unique names will raise an error during submission of a PR.
(self)
| 44 | |
| 45 | @abc.abstractmethod |
| 46 | def names(self): |
| 47 | """A unique key to describe this submission, e.g. the model name. |
| 48 | |
| 49 | This is also the name that will later appear in the benchmark table. The name |
| 50 | needs to be unique across the whole benchmark. Non-unique names will raise an |
| 51 | error during submission of a PR. |
| 52 | """ |
| 53 | raise NotImplementedError() |
| 54 | |
| 55 | @abc.abstractmethod |
| 56 | def get_predictions(self): |