Get the cache directory path.
(self)
| 283 | |
| 284 | @property |
| 285 | def cache_dir(self) -> Path: |
| 286 | """Get the cache directory path.""" |
| 287 | return Path(self.get("paths.cache", DEFAULT_CACHE_DIR)) |
| 288 | |
| 289 | @property |
| 290 | def weights_dir(self) -> Optional[Path]: |