rm table
Browse files
app.py
CHANGED
@@ -7,9 +7,6 @@ import streamlit as st
|
|
7 |
|
8 |
|
9 |
GITHUB_CODE = "https://huggingface.co/datasets/lvwerra/github-code"
|
10 |
-
INCODER_IMG = (
|
11 |
-
"https://huggingface.co/datasets/loubnabnl/repo-images/raw/main/incoder.png"
|
12 |
-
)
|
13 |
HUMANEVAL_IMG = (
|
14 |
"https://huggingface.co/datasets/loubnabnl/repo-images/raw/main/humaneval_scores.png"
|
15 |
)
|
@@ -69,8 +66,6 @@ col1, col2= st.columns([1,2])
|
|
69 |
with col1:
|
70 |
selected_model = st.selectbox("", MODELS, key=2)
|
71 |
read_markdown(f"architectures/{selected_model.lower()}.txt")
|
72 |
-
if selected_model == "InCoder":
|
73 |
-
st.image(INCODER_IMG, caption="Figure 1: InCoder training", width=700)
|
74 |
|
75 |
# Model evaluation
|
76 |
st.subheader("3 - Code models evaluation")
|
|
|
7 |
|
8 |
|
9 |
GITHUB_CODE = "https://huggingface.co/datasets/lvwerra/github-code"
|
|
|
|
|
|
|
10 |
HUMANEVAL_IMG = (
|
11 |
"https://huggingface.co/datasets/loubnabnl/repo-images/raw/main/humaneval_scores.png"
|
12 |
)
|
|
|
66 |
with col1:
|
67 |
selected_model = st.selectbox("", MODELS, key=2)
|
68 |
read_markdown(f"architectures/{selected_model.lower()}.txt")
|
|
|
|
|
69 |
|
70 |
# Model evaluation
|
71 |
st.subheader("3 - Code models evaluation")
|