```CODE: # Load model directly from transformers import AutoModelForSeq2SeqLM model = AutoModelForSeq2SeqLM.from_pretrained("Aratako/T5Gemma-TTS-2b-2b", trust_remote_code=True, dtype="auto") ``` ERROR: Traceback (most recent call last): File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/huggingface_hub/utils/_http.py", line 402, in hf_raise_for_status response.raise_for_status() ~~~~~~~~~~~~~~~~~~~~~~~~~^^ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/requests/models.py", line 1026, in raise_for_status raise HTTPError(http_error_msg, response=self) requests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://huggingface.co/Aratako/T5Gemma-TTS-2b-2b/resolve/main/config.json The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/transformers/utils/hub.py", line 479, in cached_files hf_hub_download( ~~~~~~~~~~~~~~~^ path_or_repo_id, ^^^^^^^^^^^^^^^^ ...<10 lines>... local_files_only=local_files_only, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ) ^ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/huggingface_hub/utils/_validators.py", line 114, in _inner_fn return fn(*args, **kwargs) File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 1007, in hf_hub_download return _hf_hub_download_to_cache_dir( # Destination ...<14 lines>... force_download=force_download, ) File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 1114, in _hf_hub_download_to_cache_dir _raise_on_head_call_error(head_call_error, force_download, local_files_only) ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 1655, in _raise_on_head_call_error raise head_call_error File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 1543, in _get_metadata_or_catch_error metadata = get_hf_file_metadata( url=url, proxies=proxies, timeout=etag_timeout, headers=headers, token=token, endpoint=endpoint ) File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/huggingface_hub/utils/_validators.py", line 114, in _inner_fn return fn(*args, **kwargs) File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 1460, in get_hf_file_metadata r = _request_wrapper( method="HEAD", ...<5 lines>... timeout=timeout, ) File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 283, in _request_wrapper response = _request_wrapper( method=method, ...<2 lines>... **params, ) File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 307, in _request_wrapper hf_raise_for_status(response) ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/huggingface_hub/utils/_http.py", line 419, in hf_raise_for_status raise _format(GatedRepoError, message, response) from e huggingface_hub.errors.GatedRepoError: 403 Client Error. (Request ID: Root=1-69522b56-48a09cc040285e1e2f64936a;3975313d-0a40-4d6d-b4d5-d369915e9cc6) Cannot access gated repo for url https://huggingface.co/Aratako/T5Gemma-TTS-2b-2b/resolve/main/config.json. Access to model Aratako/T5Gemma-TTS-2b-2b is restricted and you are not in the authorized list. Visit https://huggingface.co/Aratako/T5Gemma-TTS-2b-2b to ask for access. The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/tmp/Aratako_T5Gemma-TTS-2b-2b_2G7fbgz.py", line 25, in model = AutoModelForSeq2SeqLM.from_pretrained("Aratako/T5Gemma-TTS-2b-2b", trust_remote_code=True, dtype="auto") File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/transformers/models/auto/auto_factory.py", line 549, in from_pretrained config, kwargs = AutoConfig.from_pretrained( ~~~~~~~~~~~~~~~~~~~~~~~~~~^ pretrained_model_name_or_path, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ...<4 lines>... **kwargs, ^^^^^^^^^ ) ^ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/transformers/models/auto/configuration_auto.py", line 1332, in from_pretrained config_dict, unused_kwargs = PretrainedConfig.get_config_dict(pretrained_model_name_or_path, **kwargs) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/transformers/configuration_utils.py", line 662, in get_config_dict config_dict, kwargs = cls._get_config_dict(pretrained_model_name_or_path, **kwargs) ~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/transformers/configuration_utils.py", line 721, in _get_config_dict resolved_config_file = cached_file( pretrained_model_name_or_path, ...<10 lines>... _commit_hash=commit_hash, ) File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/transformers/utils/hub.py", line 322, in cached_file file = cached_files(path_or_repo_id=path_or_repo_id, filenames=[filename], **kwargs) File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/transformers/utils/hub.py", line 543, in cached_files raise OSError( ...<2 lines>... ) from e OSError: You are trying to access a gated repo. Make sure to have access to it at https://huggingface.co/Aratako/T5Gemma-TTS-2b-2b. 403 Client Error. (Request ID: Root=1-69522b56-48a09cc040285e1e2f64936a;3975313d-0a40-4d6d-b4d5-d369915e9cc6) Cannot access gated repo for url https://huggingface.co/Aratako/T5Gemma-TTS-2b-2b/resolve/main/config.json. Access to model Aratako/T5Gemma-TTS-2b-2b is restricted and you are not in the authorized list. Visit https://huggingface.co/Aratako/T5Gemma-TTS-2b-2b to ask for access.