Spaces:
Paused
Paused
Anton Forsman
commited on
Commit
•
4b12dd4
1
Parent(s):
fe08291
added model
Browse files- app.py +1 -1
- model.py +0 -0
- model_final.pt +3 -0
- requirements.txt +4 -0
app.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
-
x = st.slider('Select a
|
4 |
st.write(x, 'squared is', x * x)
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
+
x = st.slider('Select a values')
|
4 |
st.write(x, 'squared is', x * x)
|
model.py
ADDED
File without changes
|
model_final.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:06166fd3aa3d14b08ba6a5c33dac5e8218ad6e0e9a950ab337ed8d933bb561fe
|
3 |
+
size 335624490
|
requirements.txt
CHANGED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
streamlit
|
2 |
+
pytorch
|
3 |
+
torchvision
|
4 |
+
numpy
|