Abhishek Thakur
commited on
Commit
·
7997251
1
Parent(s):
d5ca063
fix
Browse files- .env.example +1 -5
- pages/1_🤗_Dataset.py +2 -3
.env.example
CHANGED
@@ -2,8 +2,4 @@ HF_ACCESS_TOKEN=hf_app_XXX
|
|
2 |
AUTOTRAIN_USERNAME=autoevaluator
|
3 |
AUTOTRAIN_TOKEN=hf_XXX
|
4 |
AUTOTRAIN_BACKEND_API=https://api.autotrain.huggingface.co
|
5 |
-
MOONLANDING_URL=https://huggingface.co
|
6 |
-
SUBMISSION_LIMIT=5
|
7 |
-
SELECTION_LIMIT=2
|
8 |
-
END_DATE=2022-12-1
|
9 |
-
EVAL_HIGHER_IS_BETTER=1
|
|
|
2 |
AUTOTRAIN_USERNAME=autoevaluator
|
3 |
AUTOTRAIN_TOKEN=hf_XXX
|
4 |
AUTOTRAIN_BACKEND_API=https://api.autotrain.huggingface.co
|
5 |
+
MOONLANDING_URL=https://huggingface.co
|
|
|
|
|
|
|
|
pages/1_🤗_Dataset.py
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
import streamlit as st
|
|
|
2 |
|
3 |
|
4 |
def app():
|
@@ -6,9 +7,7 @@ def app():
|
|
6 |
|
7 |
st.markdown("# Dataset")
|
8 |
# st.sidebar.header("Dataset")
|
9 |
-
st.write(
|
10 |
-
"""The dataset used for this competition can be found here: https://huggingface.co/datasets/cats_vs_dogs"""
|
11 |
-
)
|
12 |
|
13 |
|
14 |
if __name__ == "__main__":
|
|
|
1 |
import streamlit as st
|
2 |
+
import config
|
3 |
|
4 |
|
5 |
def app():
|
|
|
7 |
|
8 |
st.markdown("# Dataset")
|
9 |
# st.sidebar.header("Dataset")
|
10 |
+
st.write(f"""{config.competition_info.dataset_description}""")
|
|
|
|
|
11 |
|
12 |
|
13 |
if __name__ == "__main__":
|