ariG23498 HF Staff commited on
Commit
6b7a352
·
verified ·
1 Parent(s): 1a3e335

Upload amd_Nitro-E_0.txt with huggingface_hub

Browse files
Files changed (1) hide show
  1. amd_Nitro-E_0.txt +83 -0
amd_Nitro-E_0.txt ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ```CODE:
2
+ from diffusers import DiffusionPipeline
3
+
4
+ pipe = DiffusionPipeline.from_pretrained("amd/Nitro-E")
5
+
6
+ prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k"
7
+ image = pipe(prompt).images[0]
8
+ ```
9
+
10
+ ERROR:
11
+ Traceback (most recent call last):
12
+ File "/tmp/.cache/uv/environments-v2/4425754efcb788fa/lib/python3.13/site-packages/huggingface_hub/utils/_http.py", line 402, in hf_raise_for_status
13
+ response.raise_for_status()
14
+ ~~~~~~~~~~~~~~~~~~~~~~~~~^^
15
+ File "/tmp/.cache/uv/environments-v2/4425754efcb788fa/lib/python3.13/site-packages/requests/models.py", line 1026, in raise_for_status
16
+ raise HTTPError(http_error_msg, response=self)
17
+ requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://huggingface.co/amd/Nitro-E/resolve/main/model_index.json
18
+
19
+ The above exception was the direct cause of the following exception:
20
+
21
+ Traceback (most recent call last):
22
+ File "/tmp/amd_Nitro-E_0YnOGUv.py", line 18, in <module>
23
+ pipe = DiffusionPipeline.from_pretrained("amd/Nitro-E")
24
+ File "/tmp/.cache/uv/environments-v2/4425754efcb788fa/lib/python3.13/site-packages/huggingface_hub/utils/_validators.py", line 114, in _inner_fn
25
+ return fn(*args, **kwargs)
26
+ File "/tmp/.cache/uv/environments-v2/4425754efcb788fa/lib/python3.13/site-packages/diffusers/pipelines/pipeline_utils.py", line 833, in from_pretrained
27
+ cached_folder = cls.download(
28
+ pretrained_model_name_or_path,
29
+ ...<14 lines>...
30
+ **kwargs,
31
+ )
32
+ File "/tmp/.cache/uv/environments-v2/4425754efcb788fa/lib/python3.13/site-packages/huggingface_hub/utils/_validators.py", line 114, in _inner_fn
33
+ return fn(*args, **kwargs)
34
+ File "/tmp/.cache/uv/environments-v2/4425754efcb788fa/lib/python3.13/site-packages/diffusers/pipelines/pipeline_utils.py", line 1490, in download
35
+ config_file = hf_hub_download(
36
+ pretrained_model_name,
37
+ ...<5 lines>...
38
+ token=token,
39
+ )
40
+ File "/tmp/.cache/uv/environments-v2/4425754efcb788fa/lib/python3.13/site-packages/huggingface_hub/utils/_validators.py", line 114, in _inner_fn
41
+ return fn(*args, **kwargs)
42
+ File "/tmp/.cache/uv/environments-v2/4425754efcb788fa/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 1007, in hf_hub_download
43
+ return _hf_hub_download_to_cache_dir(
44
+ # Destination
45
+ ...<14 lines>...
46
+ force_download=force_download,
47
+ )
48
+ File "/tmp/.cache/uv/environments-v2/4425754efcb788fa/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 1070, in _hf_hub_download_to_cache_dir
49
+ (url_to_download, etag, commit_hash, expected_size, xet_file_data, head_call_error) = _get_metadata_or_catch_error(
50
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
51
+ repo_id=repo_id,
52
+ ^^^^^^^^^^^^^^^^
53
+ ...<10 lines>...
54
+ relative_filename=relative_filename,
55
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
56
+ )
57
+ ^
58
+ File "/tmp/.cache/uv/environments-v2/4425754efcb788fa/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 1543, in _get_metadata_or_catch_error
59
+ metadata = get_hf_file_metadata(
60
+ url=url, proxies=proxies, timeout=etag_timeout, headers=headers, token=token, endpoint=endpoint
61
+ )
62
+ File "/tmp/.cache/uv/environments-v2/4425754efcb788fa/lib/python3.13/site-packages/huggingface_hub/utils/_validators.py", line 114, in _inner_fn
63
+ return fn(*args, **kwargs)
64
+ File "/tmp/.cache/uv/environments-v2/4425754efcb788fa/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 1460, in get_hf_file_metadata
65
+ r = _request_wrapper(
66
+ method="HEAD",
67
+ ...<5 lines>...
68
+ timeout=timeout,
69
+ )
70
+ File "/tmp/.cache/uv/environments-v2/4425754efcb788fa/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 283, in _request_wrapper
71
+ response = _request_wrapper(
72
+ method=method,
73
+ ...<2 lines>...
74
+ **params,
75
+ )
76
+ File "/tmp/.cache/uv/environments-v2/4425754efcb788fa/lib/python3.13/site-packages/huggingface_hub/file_download.py", line 307, in _request_wrapper
77
+ hf_raise_for_status(response)
78
+ ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
79
+ File "/tmp/.cache/uv/environments-v2/4425754efcb788fa/lib/python3.13/site-packages/huggingface_hub/utils/_http.py", line 413, in hf_raise_for_status
80
+ raise _format(EntryNotFoundError, message, response) from e
81
+ huggingface_hub.errors.EntryNotFoundError: 404 Client Error. (Request ID: Root=1-6901fd28-6e5210fb60cedc9567ce3207;c4e778b6-cea2-4e1f-8104-0b30daf466ef)
82
+
83
+ Entry Not Found for url: https://huggingface.co/amd/Nitro-E/resolve/main/model_index.json.