com3dian commited on
Commit
e740ec1
·
verified ·
1 Parent(s): 337c3f3

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +3 -6
src/streamlit_app.py CHANGED
@@ -4,13 +4,10 @@ import pandas as pd
4
  import streamlit as st
5
 
6
  """
7
- # Welcome to Streamlit!
8
 
9
- Edit `/streamlit_app.py` to customize this app to your heart's desire :heart:.
10
- If you have any questions, checkout our [documentation](https://docs.streamlit.io) and [community
11
- forums](https://discuss.streamlit.io).
12
-
13
- In the meantime, below is an example of what you can do with just a few lines of code:
14
  """
15
 
16
  num_points = st.slider("Number of points in spiral", 1, 10000, 1100)
 
4
  import streamlit as st
5
 
6
  """
7
+ # Welcome to the exercises of reinforcement learning!
8
 
9
+ In this exercise we will train two popular deep reinforcement learning agents that you have learned through your courses.
10
+ This is the time to put that knowledge to practice!
 
 
 
11
  """
12
 
13
  num_points = st.slider("Number of points in spiral", 1, 10000, 1100)