Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- 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
|
8 |
|
9 |
-
|
10 |
-
|
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)
|