Spaces:
Sleeping
Sleeping
Upload templates.py
Browse files- templates.py +22 -0
templates.py
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from config import context_markdown, content_markdown, evaluation_content, data_instruction_commands
|
| 2 |
+
|
| 3 |
+
# The following templates are markdowns
|
| 4 |
+
overview = """
|
| 5 |
+
## Context
|
| 6 |
+
""" + context_markdown + \
|
| 7 |
+
"""
|
| 8 |
+
## Content
|
| 9 |
+
""" + content_markdown + \
|
| 10 |
+
"""
|
| 11 |
+
<br /> <br /> <br /> <br /> <br /> <br /> <br /> <br />
|
| 12 |
+
Made with Love by [Jeremy Atia](https://il.linkedin.com/in/jatia/en) using [mini_datathon](https://towardsdatascience.com/mini-datathon-the-platform-you-need-for-your-data-science-hackathon-b386cd125ca2).
|
| 13 |
+
"""
|
| 14 |
+
|
| 15 |
+
data = """
|
| 16 |
+
In order to get the data simply run the following commands:
|
| 17 |
+
""" + data_instruction_commands + \
|
| 18 |
+
"""
|
| 19 |
+
Please submit your predictions in the exact same format as y_train.
|
| 20 |
+
"""
|
| 21 |
+
|
| 22 |
+
evaluation = evaluation_content
|