_type (`str`, *optional*): Specify the repo type (useful when downloading from a space for instance). Passing `use_auth_token=True` is required when you want to use a private model. Returns: `Optional[str]`: Returns the resolved file (to the cache folder if downloaded from a repo). Examples: ```python # Download a model weight from the Hub and cache it. model_weights_file = cached_file("bert-base-uncased", "pytorch_model.bin") ```z+Offline mode: forcing local_files_only=TrueTNrj