(self)
| 105 | """Dataset for testing the interpreter that uses 'TEST_DATA' as the source.""" |
| 106 | |
| 107 | def spec(self) -> lit_types.Spec: |
| 108 | return { |
| 109 | 'x': lit_types.Scalar(), |
| 110 | 'label': lit_types.Scalar(), |
| 111 | } |
| 112 | |
| 113 | @property |
| 114 | def examples(self) -> list[lit_types.JsonDict]: |
no outgoing calls
no test coverage detected