r"""Get the validation data. Returns: List[Dict[str, Any]]: The validation data.
(self)
| 97 | |
| 98 | @property |
| 99 | def valid(self) -> List[Dict[str, Any]]: |
| 100 | r"""Get the validation data. |
| 101 | |
| 102 | Returns: |
| 103 | List[Dict[str, Any]]: The validation data. |
| 104 | """ |
| 105 | if not self._data: |
| 106 | logger.info("Data not loaded. Loading data.") |
| 107 | self.load() |
| 108 | return self._data["valid"] |
| 109 | |
| 110 | @property |
| 111 | def test(self) -> List[Dict[str, Any]]: |