Commit
Β·
0ad2321
1
Parent(s):
3a7b266
Add markdown
Browse files
app.py
CHANGED
|
@@ -184,6 +184,18 @@ def test_(hf_username):
|
|
| 184 |
|
| 185 |
|
| 186 |
with gr.Blocks() as demo:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 187 |
hf_username = gr.Textbox(placeholder="ThomasSimonini", label="Your Hugging Face Username")
|
| 188 |
email = gr.Textbox(placeholder="thomas.simonini@huggingface.co", label="Your Email (to receive your certificate)")
|
| 189 |
check_progress_button = gr.Button(value="Check my progress")
|
|
|
|
| 184 |
|
| 185 |
|
| 186 |
with gr.Blocks() as demo:
|
| 187 |
+
gr.Markdown(f"""
|
| 188 |
+
# π Check your progress in the Deep Reinforcement Learning Course π
|
| 189 |
+
|
| 190 |
+
You can check here your progress.
|
| 191 |
+
|
| 192 |
+
- To get a certificate of completion: you need to complete 80% of the assignments **before the end of April 2023**.
|
| 193 |
+
- To get a certificate of honors: you need to complete 100% of the assignments **before the end of April 2023**.
|
| 194 |
+
|
| 195 |
+
Just type your Hugging Face Username π€ (in my case ThomasSimonini)
|
| 196 |
+
|
| 197 |
+
""")
|
| 198 |
+
|
| 199 |
hf_username = gr.Textbox(placeholder="ThomasSimonini", label="Your Hugging Face Username")
|
| 200 |
email = gr.Textbox(placeholder="thomas.simonini@huggingface.co", label="Your Email (to receive your certificate)")
|
| 201 |
check_progress_button = gr.Button(value="Check my progress")
|