huggingface-hub 0.20.2__py3-none-any.whl → 0.21.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of huggingface-hub might be problematic. Click here for more details.
- huggingface_hub/__init__.py +19 -1
- huggingface_hub/_commit_api.py +49 -20
- huggingface_hub/_inference_endpoints.py +10 -0
- huggingface_hub/_login.py +2 -2
- huggingface_hub/commands/download.py +1 -1
- huggingface_hub/file_download.py +57 -21
- huggingface_hub/hf_api.py +269 -54
- huggingface_hub/hf_file_system.py +131 -8
- huggingface_hub/hub_mixin.py +204 -42
- huggingface_hub/inference/_client.py +56 -9
- huggingface_hub/inference/_common.py +4 -3
- huggingface_hub/inference/_generated/_async_client.py +57 -9
- huggingface_hub/inference/_text_generation.py +5 -0
- huggingface_hub/inference/_types.py +17 -0
- huggingface_hub/lfs.py +6 -3
- huggingface_hub/repocard.py +5 -3
- huggingface_hub/repocard_data.py +11 -3
- huggingface_hub/serialization/__init__.py +19 -0
- huggingface_hub/serialization/_base.py +168 -0
- huggingface_hub/serialization/_numpy.py +67 -0
- huggingface_hub/serialization/_tensorflow.py +93 -0
- huggingface_hub/serialization/_torch.py +199 -0
- huggingface_hub/templates/datasetcard_template.md +1 -1
- huggingface_hub/templates/modelcard_template.md +1 -4
- huggingface_hub/utils/__init__.py +14 -10
- huggingface_hub/utils/_datetime.py +4 -11
- huggingface_hub/utils/_errors.py +29 -0
- huggingface_hub/utils/_hf_folder.py +4 -23
- huggingface_hub/utils/_runtime.py +21 -15
- huggingface_hub/utils/endpoint_helpers.py +27 -1
- {huggingface_hub-0.20.2.dist-info → huggingface_hub-0.21.0.dist-info}/METADATA +7 -3
- {huggingface_hub-0.20.2.dist-info → huggingface_hub-0.21.0.dist-info}/RECORD +36 -31
- {huggingface_hub-0.20.2.dist-info → huggingface_hub-0.21.0.dist-info}/LICENSE +0 -0
- {huggingface_hub-0.20.2.dist-info → huggingface_hub-0.21.0.dist-info}/WHEEL +0 -0
- {huggingface_hub-0.20.2.dist-info → huggingface_hub-0.21.0.dist-info}/entry_points.txt +0 -0
- {huggingface_hub-0.20.2.dist-info → huggingface_hub-0.21.0.dist-info}/top_level.txt +0 -0
|
@@ -15,6 +15,7 @@ with the aim for a user-friendly interface.
|
|
|
15
15
|
"""
|
|
16
16
|
import math
|
|
17
17
|
import re
|
|
18
|
+
import warnings
|
|
18
19
|
from dataclasses import dataclass
|
|
19
20
|
from typing import TYPE_CHECKING, List, Optional, Union
|
|
20
21
|
|
|
@@ -73,9 +74,15 @@ class DatasetFilter:
|
|
|
73
74
|
compatible with the REST API. For all parameters capitalization does not
|
|
74
75
|
matter.
|
|
75
76
|
|
|
77
|
+
<Tip warning={true}>
|
|
78
|
+
|
|
79
|
+
The `DatasetFilter` class is deprecated and will be removed in huggingface_hub>=0.24. Please pass the filter parameters as keyword arguments directly to [`list_datasets`].
|
|
80
|
+
|
|
81
|
+
</Tip>
|
|
82
|
+
|
|
76
83
|
Args:
|
|
77
84
|
author (`str`, *optional*):
|
|
78
|
-
A string
|
|
85
|
+
A string that can be used to identify datasets on
|
|
79
86
|
the Hub by the original uploader (author or organization), such as
|
|
80
87
|
`facebook` or `huggingface`.
|
|
81
88
|
benchmark (`str` or `List`, *optional*):
|
|
@@ -151,6 +158,12 @@ class DatasetFilter:
|
|
|
151
158
|
task_categories: Optional[Union[str, List[str]]] = None
|
|
152
159
|
task_ids: Optional[Union[str, List[str]]] = None
|
|
153
160
|
|
|
161
|
+
def __post_init__(self):
|
|
162
|
+
warnings.warn(
|
|
163
|
+
"'DatasetFilter' is deprecated and will be removed in huggingface_hub>=0.24. Please pass the filter parameters as keyword arguments directly to the `list_datasets` method.",
|
|
164
|
+
category=FutureWarning,
|
|
165
|
+
)
|
|
166
|
+
|
|
154
167
|
|
|
155
168
|
@dataclass
|
|
156
169
|
class ModelFilter:
|
|
@@ -159,6 +172,12 @@ class ModelFilter:
|
|
|
159
172
|
compatible with the REST API. For all parameters capitalization does not
|
|
160
173
|
matter.
|
|
161
174
|
|
|
175
|
+
<Tip warning={true}>
|
|
176
|
+
|
|
177
|
+
The `ModelFilter` class is deprecated and will be removed in huggingface_hub>=0.24. Please pass the filter parameters as keyword arguments directly to [`list_models`].
|
|
178
|
+
|
|
179
|
+
</Tip>
|
|
180
|
+
|
|
162
181
|
Args:
|
|
163
182
|
author (`str`, *optional*):
|
|
164
183
|
A string that can be used to identify models on the Hub by the
|
|
@@ -183,6 +202,7 @@ class ModelFilter:
|
|
|
183
202
|
A string tag or a list of string tags of the trained dataset for a
|
|
184
203
|
model on the Hub.
|
|
185
204
|
|
|
205
|
+
Examples:
|
|
186
206
|
|
|
187
207
|
```python
|
|
188
208
|
>>> from huggingface_hub import ModelFilter
|
|
@@ -221,3 +241,9 @@ class ModelFilter:
|
|
|
221
241
|
task: Optional[Union[str, List[str]]] = None
|
|
222
242
|
trained_dataset: Optional[Union[str, List[str]]] = None
|
|
223
243
|
tags: Optional[Union[str, List[str]]] = None
|
|
244
|
+
|
|
245
|
+
def __post_init__(self):
|
|
246
|
+
warnings.warn(
|
|
247
|
+
"'ModelFilter' is deprecated and will be removed in huggingface_hub>=0.24. Please pass the filter parameters as keyword arguments directly to the `list_models` method.",
|
|
248
|
+
FutureWarning,
|
|
249
|
+
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: huggingface-hub
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.21.0
|
|
4
4
|
Summary: Client library to download and publish models, datasets and other repos on the huggingface.co hub
|
|
5
5
|
Home-page: https://github.com/huggingface/huggingface_hub
|
|
6
6
|
Author: Hugging Face, Inc.
|
|
@@ -92,6 +92,8 @@ Provides-Extra: fastai
|
|
|
92
92
|
Requires-Dist: toml ; extra == 'fastai'
|
|
93
93
|
Requires-Dist: fastai >=2.4 ; extra == 'fastai'
|
|
94
94
|
Requires-Dist: fastcore >=1.3.27 ; extra == 'fastai'
|
|
95
|
+
Provides-Extra: hf_transfer
|
|
96
|
+
Requires-Dist: hf-transfer >=0.1.4 ; extra == 'hf_transfer'
|
|
95
97
|
Provides-Extra: inference
|
|
96
98
|
Requires-Dist: aiohttp ; extra == 'inference'
|
|
97
99
|
Requires-Dist: pydantic <2.0,>1.1 ; (python_version == "3.8") and extra == 'inference'
|
|
@@ -124,6 +126,7 @@ Requires-Dist: pydantic <2.0,>1.1 ; (python_version == "3.8") and extra == 'test
|
|
|
124
126
|
Requires-Dist: pydantic <3.0,>1.1 ; (python_version > "3.8") and extra == 'testing'
|
|
125
127
|
Provides-Extra: torch
|
|
126
128
|
Requires-Dist: torch ; extra == 'torch'
|
|
129
|
+
Requires-Dist: safetensors ; extra == 'torch'
|
|
127
130
|
Provides-Extra: typing
|
|
128
131
|
Requires-Dist: typing-extensions >=4.8.0 ; extra == 'typing'
|
|
129
132
|
Requires-Dist: types-PyYAML ; extra == 'typing'
|
|
@@ -155,8 +158,9 @@ Requires-Dist: types-urllib3 ; extra == 'typing'
|
|
|
155
158
|
<p>
|
|
156
159
|
<b>English</b> |
|
|
157
160
|
<a href="https://github.com/huggingface/huggingface_hub/blob/main/README_de.md">Deutsch</a> |
|
|
158
|
-
<a href="https://github.com/huggingface/huggingface_hub/blob/main/README_hi.md">हिंदी</a> |
|
|
159
|
-
<a href="https://github.com/huggingface/huggingface_hub/blob/main/README_ko.md">한국어</a>
|
|
161
|
+
<a href="https://github.com/huggingface/huggingface_hub/blob/main/README_hi.md">हिंदी</a> |
|
|
162
|
+
<a href="https://github.com/huggingface/huggingface_hub/blob/main/README_ko.md">한국어</a> |
|
|
163
|
+
<a href="https://github.com/huggingface/huggingface_hub/blob/main/README_cn.md">中文(简体)</a>
|
|
160
164
|
<p>
|
|
161
165
|
</h4>
|
|
162
166
|
---
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
huggingface_hub/__init__.py,sha256=
|
|
2
|
-
huggingface_hub/_commit_api.py,sha256=
|
|
1
|
+
huggingface_hub/__init__.py,sha256=dAfnVhlvL5z0YPCN4McCyZaveC-w9SAlrK-Trua6IRM,21502
|
|
2
|
+
huggingface_hub/_commit_api.py,sha256=ShZvHuBuARsZqzDVSzH07_E1M4LYk7dekGng9CYO0B0,29194
|
|
3
3
|
huggingface_hub/_commit_scheduler.py,sha256=FgfjYv3E0oK3iBxDdy45Y7t78FWkmjnBR4dRd5aZviU,13653
|
|
4
|
-
huggingface_hub/_inference_endpoints.py,sha256=
|
|
5
|
-
huggingface_hub/_login.py,sha256=
|
|
4
|
+
huggingface_hub/_inference_endpoints.py,sha256=HLsc3vr1EIBxB5zLtJvJh02ahew-0tXuEEWlpvzOjY4,15426
|
|
5
|
+
huggingface_hub/_login.py,sha256=t5R3PXZN6loc27SJF9f8_d5Q4whhcd3ftHwDEhN-cPI,15363
|
|
6
6
|
huggingface_hub/_multi_commits.py,sha256=xEiS4N8ZmIrrDxVGS93mA33VoVrbhlAp5T8M_XQTMiA,12518
|
|
7
7
|
huggingface_hub/_snapshot_download.py,sha256=-0Kpp1gG1m2Slkbyj4GhvdOZeqzDTChqMQ1TGFHNjnA,15377
|
|
8
8
|
huggingface_hub/_space_api.py,sha256=Kr1rRpbMVoUs51U52KFY_FQcMA9TEC7RDCKGB4nzGus,5116
|
|
@@ -12,20 +12,20 @@ huggingface_hub/_webhooks_server.py,sha256=u3Kua_O4okXPgnH60GDIhJTDEEyIiVX6Go4CU
|
|
|
12
12
|
huggingface_hub/community.py,sha256=SHc_LOZYSzCuk5aA73InLObrrnW-0MJuv2e63FXwg50,12202
|
|
13
13
|
huggingface_hub/constants.py,sha256=fYBWYCLnyFOOldgN6a8E8PLmDVuGNdnKhfm5Qu8SLfE,7717
|
|
14
14
|
huggingface_hub/fastai_utils.py,sha256=5I7zAfgHJU_mZnxnf9wgWTHrCRu_EAV8VTangDVfE_o,16676
|
|
15
|
-
huggingface_hub/file_download.py,sha256=
|
|
16
|
-
huggingface_hub/hf_api.py,sha256=
|
|
17
|
-
huggingface_hub/hf_file_system.py,sha256=
|
|
18
|
-
huggingface_hub/hub_mixin.py,sha256=
|
|
15
|
+
huggingface_hub/file_download.py,sha256=1_7W6f0CmQYlRbmIrFNsIcHsnqHJ4UIhE-XS9cmm9WY,77558
|
|
16
|
+
huggingface_hub/hf_api.py,sha256=ebPm0KHK4V2OJLZW6t_tMSacegDhA6dQTXqbRpmwG8M,367012
|
|
17
|
+
huggingface_hub/hf_file_system.py,sha256=ogOnc3Pnfgo71dHZ4agt1WDa47lWM-_K0BeLkTGQzkg,34173
|
|
18
|
+
huggingface_hub/hub_mixin.py,sha256=VFMnTtsRNH8iXetw5MhJfBtc9MQRQxQU_525TDjBscU,22732
|
|
19
19
|
huggingface_hub/inference_api.py,sha256=UXOKu_Ez2I3hDsjguqCcCrj03WFDndehpngYiIAucdg,8331
|
|
20
20
|
huggingface_hub/keras_mixin.py,sha256=fxVjwm742fwsLwbuNVt7Slo3KAjEX7sCcTudKnolPZM,18741
|
|
21
|
-
huggingface_hub/lfs.py,sha256=
|
|
22
|
-
huggingface_hub/repocard.py,sha256=
|
|
23
|
-
huggingface_hub/repocard_data.py,sha256=
|
|
21
|
+
huggingface_hub/lfs.py,sha256=_YA93hK_R2j8TUnMnGk2CanYty-hTPBZX0MJDHbzUqc,19333
|
|
22
|
+
huggingface_hub/repocard.py,sha256=rHmWR1YJzzwJk_MS1arcqLLcpkrOrD6RrNGb87tfCHU,34291
|
|
23
|
+
huggingface_hub/repocard_data.py,sha256=wPTeJX2w5dGoFFZEp2Y1tYtogrwtH2p85_A3Gq511QA,31583
|
|
24
24
|
huggingface_hub/repository.py,sha256=8oNhKNvJRye3dr67cTn8faKkBSiWFgvj7bIBlOpI-8U,54489
|
|
25
25
|
huggingface_hub/commands/__init__.py,sha256=AkbM2a-iGh0Vq_xAWhK3mu3uZ44km8-X5uWjKcvcrUQ,928
|
|
26
26
|
huggingface_hub/commands/_cli_utils.py,sha256=VA_3cHzIlsEQmKPnfNTgJNI36UtcrxRmfB44RdbP1LA,1970
|
|
27
27
|
huggingface_hub/commands/delete_cache.py,sha256=9Nn2ihdORPpkULkhAzju6aYar2rsa4laSE38rt8645I,16130
|
|
28
|
-
huggingface_hub/commands/download.py,sha256=
|
|
28
|
+
huggingface_hub/commands/download.py,sha256=YnwGiL0--tq65pfLWKI5G5N3HGOovhIb7t2AI0vU1yM,9166
|
|
29
29
|
huggingface_hub/commands/env.py,sha256=LJjOxo-m0DrvQdyhWGjnLGtWt91ec63BMI4FQ-5bWXQ,1225
|
|
30
30
|
huggingface_hub/commands/huggingface_cli.py,sha256=o862C98OcZoyqCzY7mNpia1h0KaLJUgSb0y10ot8sxA,1924
|
|
31
31
|
huggingface_hub/commands/lfs.py,sha256=6E769AoRxUDiIOapn1_QvTbNtdUnUiouu2F4Gopp4do,7318
|
|
@@ -33,44 +33,49 @@ huggingface_hub/commands/scan_cache.py,sha256=nMEJxBScezxs00EWyAvJtWCjhwxCL1YlBE
|
|
|
33
33
|
huggingface_hub/commands/upload.py,sha256=vrac37T3sYwzaf6gpVR5qWzwh4fOhqakRvDUrLEx4Kg,13621
|
|
34
34
|
huggingface_hub/commands/user.py,sha256=QApZJOCQEHADhjunM3hlQ72uqHsearCiCE4SdpzGdcc,6893
|
|
35
35
|
huggingface_hub/inference/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
|
-
huggingface_hub/inference/_client.py,sha256=
|
|
37
|
-
huggingface_hub/inference/_common.py,sha256=
|
|
38
|
-
huggingface_hub/inference/_text_generation.py,sha256=
|
|
39
|
-
huggingface_hub/inference/_types.py,sha256=
|
|
36
|
+
huggingface_hub/inference/_client.py,sha256=bR8BqBKuCavMCjdadn0rsa-pvxHp1hWK3-RjBpmv3hU,88740
|
|
37
|
+
huggingface_hub/inference/_common.py,sha256=7FejyCmwnVDaDCkgvgIjpDNJVs-2cBbFsPBIJDXCJSQ,11374
|
|
38
|
+
huggingface_hub/inference/_text_generation.py,sha256=LErz7X6YQwrJBuEVWSI_VXlQkVfmjl73enjd0YDwkhg,20616
|
|
39
|
+
huggingface_hub/inference/_types.py,sha256=qmMF3Z_Rft5FkHZ0Ij5aLkvpHP8WqfXC3SGs1dFHCwY,6068
|
|
40
40
|
huggingface_hub/inference/_generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
|
-
huggingface_hub/inference/_generated/_async_client.py,sha256=
|
|
42
|
-
huggingface_hub/
|
|
43
|
-
huggingface_hub/
|
|
44
|
-
huggingface_hub/
|
|
41
|
+
huggingface_hub/inference/_generated/_async_client.py,sha256=wCh0352cLysg5TR9Rbwzui8CWvqr8mwjd7lRB_ngbqI,91618
|
|
42
|
+
huggingface_hub/serialization/__init__.py,sha256=xGIpRYLosQ5MZl1Ht3_SJNCM37rKSkWLaFZrSWApyaw,909
|
|
43
|
+
huggingface_hub/serialization/_base.py,sha256=6_lA2BzLDjZoBLvfzUBNws2G77FUz8VSClN7DxC9c8U,7132
|
|
44
|
+
huggingface_hub/serialization/_numpy.py,sha256=aWbqBD56mDPgiLGWFdJDZcGwRm6Tt1i55nq941vzq1o,2670
|
|
45
|
+
huggingface_hub/serialization/_tensorflow.py,sha256=TRYyqo0IZwPEGClu2UTRpXRAyYTj3uPqrPvnhLuWdAk,3558
|
|
46
|
+
huggingface_hub/serialization/_torch.py,sha256=UtqRNhyhiRsgrsGbIXYzG_1nQVjEfd8L9JIDgg-0PJM,7686
|
|
47
|
+
huggingface_hub/templates/datasetcard_template.md,sha256=W-EMqR6wndbrnZorkVv56URWPG49l7MATGeI015kTvs,5503
|
|
48
|
+
huggingface_hub/templates/modelcard_template.md,sha256=4AqArS3cqdtbit5Bo-DhjcnDFR-pza5hErLLTPM4Yuc,6870
|
|
49
|
+
huggingface_hub/utils/__init__.py,sha256=OrAjppTGd2eaaVJ0jix4vnjSJx9IGznkL_r2K5GZcvE,3323
|
|
45
50
|
huggingface_hub/utils/_cache_assets.py,sha256=kai77HPQMfYpROouMBQCr_gdBCaeTm996Sqj0dExbNg,5728
|
|
46
51
|
huggingface_hub/utils/_cache_manager.py,sha256=zRBo37DaHS6IDWyQ_53oCL4-U6p--inAGsC8DLtAQ_I,29103
|
|
47
52
|
huggingface_hub/utils/_chunk_utils.py,sha256=6VRyjiGr2bPupPl1azSUTxKuJ51wdgELipwJ2YRfH5U,2129
|
|
48
|
-
huggingface_hub/utils/_datetime.py,sha256=
|
|
53
|
+
huggingface_hub/utils/_datetime.py,sha256=vrR5-HN19j8bg2wxWfWzIU_7fRF_zzLyxhqGZWmTYH0,2553
|
|
49
54
|
huggingface_hub/utils/_deprecation.py,sha256=HZhRGGUX_QMKBBBwHHlffLtmCSK01TOpeXHefZbPfwI,4872
|
|
50
|
-
huggingface_hub/utils/_errors.py,sha256=
|
|
55
|
+
huggingface_hub/utils/_errors.py,sha256=nGtrPcPSMgtgy4klg52wjozAqwxLX8Wx6i7Wg1PhAb4,14733
|
|
51
56
|
huggingface_hub/utils/_experimental.py,sha256=rBx4gV2NU1dT_OfeRzsCmCWyIF4Wxcf0PdkmIASoT6o,2394
|
|
52
57
|
huggingface_hub/utils/_fixes.py,sha256=wFvfTYj62Il2OwkQB_Qp0xONG6SARQ5oEkT3_FhB4rc,2437
|
|
53
58
|
huggingface_hub/utils/_git_credential.py,sha256=NMfMmuqdub_QX3T2d32Jhpf3RBnf2eh4VnDhHoqyZRA,4595
|
|
54
59
|
huggingface_hub/utils/_headers.py,sha256=wz0kPrpu9PHpeCIJAq8MBiHuR2HbNWGukd0QgWS6lWo,9344
|
|
55
|
-
huggingface_hub/utils/_hf_folder.py,sha256=
|
|
60
|
+
huggingface_hub/utils/_hf_folder.py,sha256=5fxKNZ8y12szgmLhxZWJsjK_zx-wopMtVoFPCuwI1VI,3612
|
|
56
61
|
huggingface_hub/utils/_http.py,sha256=qJ9wlsv-SU9L4Epr8FLHznY3COIcOrUUmGMjJXfrQvI,12889
|
|
57
62
|
huggingface_hub/utils/_pagination.py,sha256=VfpmMLyNCRo24fw0o_yWysMK69d9M6sSg2-nWtuypO4,1840
|
|
58
63
|
huggingface_hub/utils/_paths.py,sha256=nUaxXN-R2EcWfHE8ivFWfHqEKMIvXEdUeCGDC_QHMqc,4397
|
|
59
|
-
huggingface_hub/utils/_runtime.py,sha256=
|
|
64
|
+
huggingface_hub/utils/_runtime.py,sha256=SkZmZuFLcpeMv1sTn6_YwnmWz592riCJGPS_-bgGMOs,10430
|
|
60
65
|
huggingface_hub/utils/_safetensors.py,sha256=EE9v9HflWBUqIegn0dCGHgNu9G9Db3v2aszvG4ldPF8,4876
|
|
61
66
|
huggingface_hub/utils/_subprocess.py,sha256=LW9b8TWh9rsm3pW9_5b-mVV_AtYNyLXgC6e09SthkWI,4616
|
|
62
67
|
huggingface_hub/utils/_telemetry.py,sha256=jHAdgWNcL9nVvMT3ec3i78O-cwL09GnlifuokzpQjMI,4641
|
|
63
68
|
huggingface_hub/utils/_token.py,sha256=e3GGABkd6zPYLE4-RdUxnH6vyen4vsvNxEl2PgStiTA,5475
|
|
64
69
|
huggingface_hub/utils/_typing.py,sha256=zTA0nTJAILGveXbJKyeh6u9uIagrFgPoRqr-uCEGDQI,921
|
|
65
70
|
huggingface_hub/utils/_validators.py,sha256=3ZmHubjslDRwFYe1oKyaUw6DZrc3DsuV2gABPrx7PTw,9358
|
|
66
|
-
huggingface_hub/utils/endpoint_helpers.py,sha256=
|
|
71
|
+
huggingface_hub/utils/endpoint_helpers.py,sha256=Q9YpLXVkMVaGEZb4PAMioghxFcepEUictZ1LBe9Uxyk,9535
|
|
67
72
|
huggingface_hub/utils/insecure_hashlib.py,sha256=OjxlvtSQHpbLp9PWSrXBDJ0wHjxCBU-SQJgucEEXDbU,1058
|
|
68
73
|
huggingface_hub/utils/logging.py,sha256=mARNwc5gY6apMQ9IM5zymn-RsYnFbYW3b0HDMYXmBS0,4729
|
|
69
74
|
huggingface_hub/utils/sha.py,sha256=IVi7CfBthfu-ExLduY_CQltTy-tVGTbrvURCTOWKcLA,901
|
|
70
75
|
huggingface_hub/utils/tqdm.py,sha256=zBWgoxxwHooOceABVREVqSNpJGcMpaByKFVDU8VbuUQ,6334
|
|
71
|
-
huggingface_hub-0.
|
|
72
|
-
huggingface_hub-0.
|
|
73
|
-
huggingface_hub-0.
|
|
74
|
-
huggingface_hub-0.
|
|
75
|
-
huggingface_hub-0.
|
|
76
|
-
huggingface_hub-0.
|
|
76
|
+
huggingface_hub-0.21.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
77
|
+
huggingface_hub-0.21.0.dist-info/METADATA,sha256=ABa5ut8FnLDuOZKQ1hdSLrrIuV9hlNd5TUA0YMmud0s,13176
|
|
78
|
+
huggingface_hub-0.21.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
79
|
+
huggingface_hub-0.21.0.dist-info/entry_points.txt,sha256=Y3Z2L02rBG7va_iE6RPXolIgwOdwUFONyRN3kXMxZ0g,131
|
|
80
|
+
huggingface_hub-0.21.0.dist-info/top_level.txt,sha256=8KzlQJAY4miUvjAssOAJodqKOw3harNzuiwGQ9qLSSk,16
|
|
81
|
+
huggingface_hub-0.21.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|