Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update app.py
Browse files
app.py
CHANGED
@@ -5,7 +5,7 @@ import streamlit as st
|
|
5 |
@st.cache()
|
6 |
def load_all_usernames():
|
7 |
list_of_usernames = load_dataset("bigcode/the-stack-usernames", split="train")["usernames"]
|
8 |
-
return set(
|
9 |
|
10 |
st.title("Am I in The Stack?")
|
11 |
st.markdown("This tool lets you check if a repository under a given username is part of [The Stack dataset](https://huggingface.co/datasets/bigcode/the-stack).")
|
|
|
5 |
@st.cache()
|
6 |
def load_all_usernames():
|
7 |
list_of_usernames = load_dataset("bigcode/the-stack-usernames", split="train")["usernames"]
|
8 |
+
return set(list_of_usernames)
|
9 |
|
10 |
st.title("Am I in The Stack?")
|
11 |
st.markdown("This tool lets you check if a repository under a given username is part of [The Stack dataset](https://huggingface.co/datasets/bigcode/the-stack).")
|