| ```CODE: |
| # Load model directly |
| from transformers import AutoModel |
| model = AutoModel.from_pretrained("FlashLabs/Chroma-4B", trust_remote_code=True, dtype="auto") |
| ``` |
|
|
| ERROR: |
| Traceback (most recent call last): |
| File "/tmp/.cache/uv/environments-v2/78bfeaa12e6fea46/lib/python3.13/site-packages/huggingface_hub/utils/_http.py", line 657, in hf_raise_for_status |
| response.raise_for_status() |
| ~~~~~~~~~~~~~~~~~~~~~~~~~^^ |
| File "/tmp/.cache/uv/environments-v2/78bfeaa12e6fea46/lib/python3.13/site-packages/httpx/_models.py", line 829, in raise_for_status |
| raise HTTPStatusError(message, request=request, response=self) |
| httpx.HTTPStatusError: Client error '403 Forbidden' for url 'https://huggingface.co/FlashLabs/Chroma-4B/resolve/main/config.json' |
| For more information check: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/403 |
|
|
| The above exception was the direct cause of the following exception: |
|
|
| Traceback (most recent call last): |
| File "/tmp/.cache/uv/environments-v2/78bfeaa12e6fea46/lib/python3.13/site-packages/transformers/utils/hub.py", line 419, in cached_files |
| hf_hub_download( |
| ~~~~~~~~~~~~~~~^ |
| path_or_repo_id, |
| ^^^^^^^^^^^^^^^^ |
| ...<9 lines>... |
| local_files_only=local_files_only, |
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| ) |
| ^ |
| File "/tmp/.cache/uv/environments-v2/78bfeaa12e6fea46/lib/python3.13/site-packages/huggingface_hub/utils/_validators.py", line 89, in _inner_fn |
| return fn(*args, **kwargs) |
| File "/tmp/.cache/uv/environments-v2/78bfeaa12e6fea46/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 1024, in hf_hub_download |
| return _hf_hub_download_to_cache_dir( |
| # Destination |
| ...<15 lines>... |
| dry_run=dry_run, |
| ) |
| File "/tmp/.cache/uv/environments-v2/78bfeaa12e6fea46/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 1175, 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/78bfeaa12e6fea46/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 1804, in _raise_on_head_call_error |
| raise head_call_error |
| File "/tmp/.cache/uv/environments-v2/78bfeaa12e6fea46/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 1691, in _get_metadata_or_catch_error |
| metadata = get_hf_file_metadata( |
| url=url, |
| ...<4 lines>... |
| retry_on_errors=retry_on_errors, |
| ) |
| File "/tmp/.cache/uv/environments-v2/78bfeaa12e6fea46/lib/python3.13/site-packages/huggingface_hub/utils/_validators.py", line 89, in _inner_fn |
| return fn(*args, **kwargs) |
| File "/tmp/.cache/uv/environments-v2/78bfeaa12e6fea46/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 1614, in get_hf_file_metadata |
| response = _httpx_follow_relative_redirects( |
| method="HEAD", url=url, headers=hf_headers, timeout=timeout, retry_on_errors=retry_on_errors |
| ) |
| File "/tmp/.cache/uv/environments-v2/78bfeaa12e6fea46/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 309, in _httpx_follow_relative_redirects |
| hf_raise_for_status(response) |
| ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^ |
| File "/tmp/.cache/uv/environments-v2/78bfeaa12e6fea46/lib/python3.13/site-packages/huggingface_hub/utils/_http.py", line 677, in hf_raise_for_status |
| raise _format(GatedRepoError, message, response) from e |
| huggingface_hub.errors.GatedRepoError: 403 Client Error. (Request ID: Root=1-697b0b35-590a7d06780ad1c744734b19;c05efcf6-e212-4de8-b75b-c60e510650be) |
|
|
| Cannot access gated repo for url https://huggingface.co/FlashLabs/Chroma-4B/resolve/main/config.json. |
| Access to model FlashLabs/Chroma-4B is restricted and you are not in the authorized list. Visit https://huggingface.co/FlashLabs/Chroma-4B to ask for access. |
|
|
| The above exception was the direct cause of the following exception: |
|
|
| Traceback (most recent call last): |
| File "/tmp/FlashLabs_Chroma-4B_1294R6S.py", line 25, in <module> |
| model = AutoModel.from_pretrained("FlashLabs/Chroma-4B", trust_remote_code=True, dtype="auto") |
| File "/tmp/.cache/uv/environments-v2/78bfeaa12e6fea46/lib/python3.13/site-packages/transformers/models/auto/auto_factory.py", line 317, in from_pretrained |
| config, kwargs = AutoConfig.from_pretrained( |
| ~~~~~~~~~~~~~~~~~~~~~~~~~~^ |
| pretrained_model_name_or_path, |
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| ...<4 lines>... |
| **kwargs, |
| ^^^^^^^^^ |
| ) |
| ^ |
| File "/tmp/.cache/uv/environments-v2/78bfeaa12e6fea46/lib/python3.13/site-packages/transformers/models/auto/configuration_auto.py", line 1356, in from_pretrained |
| config_dict, unused_kwargs = PreTrainedConfig.get_config_dict(pretrained_model_name_or_path, **kwargs) |
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| File "/tmp/.cache/uv/environments-v2/78bfeaa12e6fea46/lib/python3.13/site-packages/transformers/configuration_utils.py", line 569, in get_config_dict |
| config_dict, kwargs = cls._get_config_dict(pretrained_model_name_or_path, **kwargs) |
| ~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| File "/tmp/.cache/uv/environments-v2/78bfeaa12e6fea46/lib/python3.13/site-packages/transformers/configuration_utils.py", line 624, in _get_config_dict |
| resolved_config_file = cached_file( |
| pretrained_model_name_or_path, |
| ...<9 lines>... |
| _commit_hash=commit_hash, |
| ) |
| File "/tmp/.cache/uv/environments-v2/78bfeaa12e6fea46/lib/python3.13/site-packages/transformers/utils/hub.py", line 276, in cached_file |
| file = cached_files(path_or_repo_id=path_or_repo_id, filenames=[filename], **kwargs) |
| File "/tmp/.cache/uv/environments-v2/78bfeaa12e6fea46/lib/python3.13/site-packages/transformers/utils/hub.py", line 483, 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/FlashLabs/Chroma-4B. |
| 403 Client Error. (Request ID: Root=1-697b0b35-590a7d06780ad1c744734b19;c05efcf6-e212-4de8-b75b-c60e510650be) |
|
|
| Cannot access gated repo for url https://huggingface.co/FlashLabs/Chroma-4B/resolve/main/config.json. |
| Access to model FlashLabs/Chroma-4B is restricted and you are not in the authorized list. Visit https://huggingface.co/FlashLabs/Chroma-4B to ask for access. |
|
|