File size: 212 Bytes
d74ac86
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from pathlib import Path

import streamlit as st

x = st.slider('Select a value')
st.write(x, 'squared is', x * x)

hub_folder = Path('~/.cache/huggingface/hub')
for path in hub_folder.walk():
    st.write(path)