Wakka2905 commited on
Commit
2147f2b
1 Parent(s): ec0670d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -1,4 +1,11 @@
1
  import streamlit as st
 
 
 
 
 
 
 
2
 
3
  x = st.slider('Select a value')
4
  st.write(x, 'squared is', x * x)
 
1
  import streamlit as st
2
+ from transformers import pipeline
3
+
4
+
5
+ pipeline = pipeline(task="reinforcement-learning", model="Wakka2905/dino-ai")
6
+
7
+ st.title("Proyecto Final: Entrenamiento por Refuerzo del Dinosaurio de Chrome")
8
+
9
 
10
  x = st.slider('Select a value')
11
  st.write(x, 'squared is', x * x)