silterra's picture
Add basic app and basic Dockerfile
ec60126
raw
history blame
104 Bytes
# import torch
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)