Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
|
|
4 |
|
5 |
cd ReconocimientoDeEntrorno
|
6 |
git add app.py
|
7 |
git commit -m "Add application file"
|
8 |
git push
|
9 |
|
10 |
-
import streamlit as st
|
11 |
|
12 |
x = st.slider('Select a value')
|
13 |
st.write(x, 'squared is', x * x)
|
|
|
1 |
+
import streamlit as st
|
2 |
+
from transformers import pipeline
|
3 |
+
import streamlit as st
|
4 |
+
|
5 |
|
6 |
cd ReconocimientoDeEntrorno
|
7 |
git add app.py
|
8 |
git commit -m "Add application file"
|
9 |
git push
|
10 |
|
|
|
11 |
|
12 |
x = st.slider('Select a value')
|
13 |
st.write(x, 'squared is', x * x)
|