(data_dir: Optional[str])
| 1521 | Raises: |
| 1522 | ValueError: If the provided dtype does not fulfil the validation check. |
| 1523 | """ |
| 1524 | if dtype not in _supported_float_dtypes: |
| 1525 | raise ValueError(f"float dtype ({dtype}) must be one of {_supported_float_dtypes}.") |
| 1526 | |
| 1527 |
no outgoing calls