Spaces:
Runtime error
Runtime error
def human_format(num): | |
num = float("{:.3g}".format(num)) | |
magnitude = 0 | |
while abs(num) >= 1000: | |
magnitude += 1 | |
num /= 1000.0 | |
return "{}{}".format( | |
"{:f}".format(num).rstrip("0").rstrip("."), ["", "K", "M", "B", "T"][magnitude] | |
) | |
def make_clickable_model(model_name, link=None): | |
if link is None: | |
link = "https://huggingface.co/" + model_name | |
# Remove user from model name | |
return f'<a target="_blank" style="text-decoration: underline" href="{link}">{model_name.split("/")[-1]}</a>' | |