ariG23498 HF Staff commited on
Commit
d092401
·
verified ·
1 Parent(s): 918982e

Upload Aratako_T5Gemma-TTS-2b-2b_2.txt with huggingface_hub

Browse files
Files changed (1) hide show
  1. Aratako_T5Gemma-TTS-2b-2b_2.txt +108 -0
Aratako_T5Gemma-TTS-2b-2b_2.txt ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ```CODE:
2
+ # Load model directly
3
+ from transformers import AutoModelForSeq2SeqLM
4
+ model = AutoModelForSeq2SeqLM.from_pretrained("Aratako/T5Gemma-TTS-2b-2b", trust_remote_code=True, dtype="auto")
5
+ ```
6
+
7
+ ERROR:
8
+ Traceback (most recent call last):
9
+ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/huggingface_hub/utils/_http.py", line 402, in hf_raise_for_status
10
+ response.raise_for_status()
11
+ ~~~~~~~~~~~~~~~~~~~~~~~~~^^
12
+ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/requests/models.py", line 1026, in raise_for_status
13
+ raise HTTPError(http_error_msg, response=self)
14
+ requests.exceptions.HTTPError: 403 Client Error: Forbidden for url: https://huggingface.co/Aratako/T5Gemma-TTS-2b-2b/resolve/main/config.json
15
+
16
+ The above exception was the direct cause of the following exception:
17
+
18
+ Traceback (most recent call last):
19
+ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/transformers/utils/hub.py", line 479, in cached_files
20
+ hf_hub_download(
21
+ ~~~~~~~~~~~~~~~^
22
+ path_or_repo_id,
23
+ ^^^^^^^^^^^^^^^^
24
+ ...<10 lines>...
25
+ local_files_only=local_files_only,
26
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
27
+ )
28
+ ^
29
+ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/huggingface_hub/utils/_validators.py", line 114, in _inner_fn
30
+ return fn(*args, **kwargs)
31
+ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 1007, in hf_hub_download
32
+ return _hf_hub_download_to_cache_dir(
33
+ # Destination
34
+ ...<14 lines>...
35
+ force_download=force_download,
36
+ )
37
+ 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
38
+ _raise_on_head_call_error(head_call_error, force_download, local_files_only)
39
+ ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
40
+ 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
41
+ raise head_call_error
42
+ 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
43
+ metadata = get_hf_file_metadata(
44
+ url=url, proxies=proxies, timeout=etag_timeout, headers=headers, token=token, endpoint=endpoint
45
+ )
46
+ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/huggingface_hub/utils/_validators.py", line 114, in _inner_fn
47
+ return fn(*args, **kwargs)
48
+ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 1460, in get_hf_file_metadata
49
+ r = _request_wrapper(
50
+ method="HEAD",
51
+ ...<5 lines>...
52
+ timeout=timeout,
53
+ )
54
+ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 283, in _request_wrapper
55
+ response = _request_wrapper(
56
+ method=method,
57
+ ...<2 lines>...
58
+ **params,
59
+ )
60
+ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 307, in _request_wrapper
61
+ hf_raise_for_status(response)
62
+ ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
63
+ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/huggingface_hub/utils/_http.py", line 419, in hf_raise_for_status
64
+ raise _format(GatedRepoError, message, response) from e
65
+ huggingface_hub.errors.GatedRepoError: 403 Client Error. (Request ID: Root=1-693fb655-6361ac70077d077330d2e12e;bae20dca-cbc3-4b3d-a92f-cb0591397c94)
66
+
67
+ Cannot access gated repo for url https://huggingface.co/Aratako/T5Gemma-TTS-2b-2b/resolve/main/config.json.
68
+ 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.
69
+
70
+ The above exception was the direct cause of the following exception:
71
+
72
+ Traceback (most recent call last):
73
+ File "/tmp/Aratako_T5Gemma-TTS-2b-2b_2LFct4o.py", line 25, in <module>
74
+ model = AutoModelForSeq2SeqLM.from_pretrained("Aratako/T5Gemma-TTS-2b-2b", trust_remote_code=True, dtype="auto")
75
+ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/transformers/models/auto/auto_factory.py", line 549, in from_pretrained
76
+ config, kwargs = AutoConfig.from_pretrained(
77
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~^
78
+ pretrained_model_name_or_path,
79
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
80
+ ...<4 lines>...
81
+ **kwargs,
82
+ ^^^^^^^^^
83
+ )
84
+ ^
85
+ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/transformers/models/auto/configuration_auto.py", line 1332, in from_pretrained
86
+ config_dict, unused_kwargs = PretrainedConfig.get_config_dict(pretrained_model_name_or_path, **kwargs)
87
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
88
+ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/transformers/configuration_utils.py", line 662, in get_config_dict
89
+ config_dict, kwargs = cls._get_config_dict(pretrained_model_name_or_path, **kwargs)
90
+ ~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
91
+ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/transformers/configuration_utils.py", line 721, in _get_config_dict
92
+ resolved_config_file = cached_file(
93
+ pretrained_model_name_or_path,
94
+ ...<10 lines>...
95
+ _commit_hash=commit_hash,
96
+ )
97
+ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/transformers/utils/hub.py", line 322, in cached_file
98
+ file = cached_files(path_or_repo_id=path_or_repo_id, filenames=[filename], **kwargs)
99
+ File "/tmp/.cache/uv/environments-v2/080d9ae496fc89c0/lib/python3.13/site-packages/transformers/utils/hub.py", line 543, in cached_files
100
+ raise OSError(
101
+ ...<2 lines>...
102
+ ) from e
103
+ OSError: You are trying to access a gated repo.
104
+ Make sure to have access to it at https://huggingface.co/Aratako/T5Gemma-TTS-2b-2b.
105
+ 403 Client Error. (Request ID: Root=1-693fb655-6361ac70077d077330d2e12e;bae20dca-cbc3-4b3d-a92f-cb0591397c94)
106
+
107
+ Cannot access gated repo for url https://huggingface.co/Aratako/T5Gemma-TTS-2b-2b/resolve/main/config.json.
108
+ 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.