Spaces:
Running
Running
File size: 1,084 Bytes
4688574 a793e12 6160b72 a793e12 6160b72 a793e12 6160b72 a793e12 6160b72 a793e12 6160b72 a793e12 4688574 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
import re
hf_pattern = re.compile(
r"https://huggingface.co/(?P<account>[^/]+)/(?P<repo_id>[^/]+)/.*/(?P<branch>[^/]+)/(?P<filename>[^?]+).*"
)
def human_readable_size(size_in_bytes: int) -> str:
# Convert file size to a human-readable format
for unit in ["B", "KB", "MB", "GB", "TB", "PB"]:
if size_in_bytes < 1024:
return f"{size_in_bytes:.2f} {unit}"
size_in_bytes /= 1024
return f"{size_in_bytes:.2f} EB"
def abbreviate_number(number: int) -> str:
# Convert large numbers to abbreviated format
for unit, threshold in [("B", 1e9), ("M", 1e6), ("K", 1e3)]:
if number >= threshold:
return f"{number/threshold:.2f} {unit}"
return str(number)
def cleanup_url(url: str) -> str:
match = hf_pattern.match(url)
if match:
account = match.group("account")
repo_id = match.group("repo_id")
branch = match.group("branch")
filename = match.group("filename")
return f"https://huggingface.co/{account}/{repo_id}/resolve/{branch}/{filename}"
return url.strip()
|