| ```CODE: | |
| # Use a pipeline as a high-level helper | |
| from transformers import pipeline | |
| pipe = pipeline("text-to-speech", model="Aratako/T5Gemma-TTS-2b-2b", trust_remote_code=True) | |
| ``` | |
| ERROR: | |
| Traceback (most recent call last): | |
| File "/tmp/.cache/uv/environments-v2/b0ad62d065a77f74/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/b0ad62d065a77f74/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/b0ad62d065a77f74/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/b0ad62d065a77f74/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/b0ad62d065a77f74/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/b0ad62d065a77f74/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/b0ad62d065a77f74/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/b0ad62d065a77f74/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/b0ad62d065a77f74/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/b0ad62d065a77f74/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/b0ad62d065a77f74/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/b0ad62d065a77f74/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/b0ad62d065a77f74/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-69522b51-5a59e3ed1775247e11d18ca7;3d9574fb-e965-4964-9972-74abd3b7566d) | |
| 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_1kVmEOa.py", line 26, in <module> | |
| pipe = pipeline("text-to-speech", model="Aratako/T5Gemma-TTS-2b-2b", trust_remote_code=True) | |
| File "/tmp/.cache/uv/environments-v2/b0ad62d065a77f74/lib/python3.13/site-packages/transformers/pipelines/__init__.py", line 922, in pipeline | |
| config = AutoConfig.from_pretrained( | |
| model, _from_pipeline=task, code_revision=code_revision, **hub_kwargs, **model_kwargs | |
| ) | |
| File "/tmp/.cache/uv/environments-v2/b0ad62d065a77f74/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/b0ad62d065a77f74/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/b0ad62d065a77f74/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/b0ad62d065a77f74/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/b0ad62d065a77f74/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-69522b51-5a59e3ed1775247e11d18ca7;3d9574fb-e965-4964-9972-74abd3b7566d) | |
| 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. | |