Spaces:
Running
Running
feat: challenges and refactoring of page order
Browse files- src/images/design/challenge1.png +3 -0
- src/images/design/challenge2.png +3 -0
- src/images/design/leaderboard.png +3 -0
- src/pages/{5_π€_requests.py β 3_π€_data requests.py} +0 -0
- src/pages/4_π_benchmarking.py +0 -8
- src/pages/{3_π₯_classifiers.py β 4_π₯_classifiers.py} +0 -0
- src/pages/5_π_benchmarking.py +15 -0
- src/pages/6_π_challenges.py +24 -0
- src/pages/{6_π_gallery.py β 7_π_gallery.py} +0 -0
- src/pages/{7_π§_coordinates.py β 8_π§_coordinates.py} +0 -0
src/images/design/challenge1.png
ADDED
![]() |
Git LFS Details
|
src/images/design/challenge2.png
ADDED
![]() |
Git LFS Details
|
src/images/design/leaderboard.png
ADDED
![]() |
Git LFS Details
|
src/pages/{5_π€_requests.py β 3_π€_data requests.py}
RENAMED
File without changes
|
src/pages/4_π_benchmarking.py
DELETED
@@ -1,8 +0,0 @@
|
|
1 |
-
import streamlit as st
|
2 |
-
|
3 |
-
st.set_page_config(
|
4 |
-
page_title="Benchmarking",
|
5 |
-
page_icon="π",
|
6 |
-
)
|
7 |
-
|
8 |
-
from utils.st_logs import parse_log_buffer, init_logging_session_states
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
src/pages/{3_π₯_classifiers.py β 4_π₯_classifiers.py}
RENAMED
File without changes
|
src/pages/5_π_benchmarking.py
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
st.set_page_config(
|
4 |
+
page_title="Benchmarking",
|
5 |
+
page_icon="π",
|
6 |
+
layout="wide",
|
7 |
+
)
|
8 |
+
|
9 |
+
st.title("Benchmark of ML models")
|
10 |
+
|
11 |
+
st.write("All credits go to the original Leaderboard on hugging face: https://huggingface.co/spaces/opencompass/opencompass-llm-leaderboard"
|
12 |
+
)
|
13 |
+
st.write("This image serves as a pure placeholder to illustrate benchmarking possibilities.")
|
14 |
+
|
15 |
+
st.image("src/images/design/leaderboard.png", caption="Benchmarking models")
|
src/pages/6_π_challenges.py
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
st.set_page_config(
|
4 |
+
page_title="Challenges",
|
5 |
+
page_icon="π",
|
6 |
+
layout="wide",
|
7 |
+
)
|
8 |
+
|
9 |
+
st.title("Research Challenges (Kaggle)")
|
10 |
+
|
11 |
+
st.write("Working together to innovate is essential. Here are the current and past challenges on Kaggle organized around cetacean conservation.")
|
12 |
+
|
13 |
+
st.link_button("Click here for the full challenge.",
|
14 |
+
url = "https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://www.kaggle.com/competitions/happy-whale-and-dolphin&ved=2ahUKEwiIoPjCicaMAxVrzgIHHaDYH6MQFnoECAoQAQ&usg=AOvVaw3Cl2cK7ZwU_jTyDeA5Yg1m"
|
15 |
+
)
|
16 |
+
st.image("src/images/design/challenge2.png",
|
17 |
+
caption= "Ted Cheeseman, Ken Southerland, Walter Reade, and Addison Howard. Happywhale - Whale and Dolphin Identification. https://kaggle.com/competitions/happy-whale-and-dolphin, 2022. Kaggle.")
|
18 |
+
|
19 |
+
|
20 |
+
st.link_button("Click here for the full challenge.",
|
21 |
+
url="https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://www.kaggle.com/competitions/humpback-whale-identification&ved=2ahUKEwiIoPjCicaMAxVrzgIHHaDYH6MQFnoECB8QAQ&usg=AOvVaw0IdiKQC3GpODtI-fBt-yV3"
|
22 |
+
)
|
23 |
+
st.image("src/images/design/challenge1.png",
|
24 |
+
caption ="Addison Howard, inversion, Ken Southerland, and Ted Cheeseman. Humpback Whale Identification. https://kaggle.com/competitions/humpback-whale-identification, 2018. Kaggle.")
|
src/pages/{6_π_gallery.py β 7_π_gallery.py}
RENAMED
File without changes
|
src/pages/{7_π§_coordinates.py β 8_π§_coordinates.py}
RENAMED
File without changes
|