Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,7 @@ import streamlit as st
|
|
4 |
|
5 |
@st.cache()
|
6 |
def get_repo_names():
|
7 |
-
list_of_repo_names = load_dataset("bigcode/the-stack-paths")["repository_name"]#["lvwerra/test", "lvwerra/test2", "numpy/numpy"]
|
8 |
return list_of_repo_names
|
9 |
|
10 |
st.title("Am I in The Stack?")
|
|
|
4 |
|
5 |
@st.cache()
|
6 |
def get_repo_names():
|
7 |
+
list_of_repo_names = load_dataset("bigcode/the-stack-paths", split="train")["repository_name"]#["lvwerra/test", "lvwerra/test2", "numpy/numpy"]
|
8 |
return list_of_repo_names
|
9 |
|
10 |
st.title("Am I in The Stack?")
|