Spaces:
Runtime error
Runtime error
# AUTOGENERATED! DO NOT EDIT! File to edit: app.ipynb. | |
# %% auto 0 | |
__all__ = ['iface', 'size'] | |
# %% app.ipynb 6 | |
import gradio as gr | |
from fastcore.net import urljson, HTTPError | |
# %% app.ipynb 7 | |
def size(repo:str): | |
"Returns the size in GB of a HuggingFace Dataset." | |
url = f'https://huggingface.co/api/datasets/{repo}' | |
try: resp = urljson(f'{url}/treesize/main') | |
except HTTPError: return f'Did not find repo: {url}' | |
gb = resp['size'] / 1e9 | |
return f'{gb:.2f} GB' | |
# %% app.ipynb 11 | |
iface = gr.Interface(fn=size, inputs=gr.Text(value="tglcourse/CelebA-faces-cropped-128"), outputs="text") | |
iface.launch(width=500) | |