lvwerra HF staff commited on
Commit
7666b36
β€’
1 Parent(s): d9b0aa1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -13,8 +13,11 @@ def load_all_usernames():
13
  usernames = json.loads(f.read().decode('utf-8'))
14
  return usernames
15
 
 
 
16
  st.title("Am I in The Stack?")
17
- st.markdown("As part of the BigCode project, we are releasing and maintaining [The Stack](https://huggingface.co/datasets/bigcode/the-stack), a 3.1 TB dataset of permissively licensed source code in 30 programming languages. One of our goals in this project is to give the people who wrote this source code a choice as to whether or not it should be used to develop and evaluate LLMs, as we acknowledge that not all developers may wish to have their data used for that purpose.")
 
18
 
19
  st.markdown("This tool lets you check if a repository under a given username is part of The Stack dataset.")
20
 
 
13
  usernames = json.loads(f.read().decode('utf-8'))
14
  return usernames
15
 
16
+ st.image("./banner.png", use_column_width=True)
17
+
18
  st.title("Am I in The Stack?")
19
+ st.markdown("> The Stack is an open governance interface between the AI and open source communities."
20
+ st.markdown("As part of the BigCode project, we released and maintain [The Stack](https://huggingface.co/datasets/bigcode/the-stack), a 3.1 TB dataset of permissively licensed source code in 30 programming languages. One of our goals in this project is to give the people who wrote this source code a choice as to whether or not it can be employed to develop and evaluate LLMs, as we acknowledge that not all developers may wish to have their data used for that purpose.")
21
 
22
  st.markdown("This tool lets you check if a repository under a given username is part of The Stack dataset.")
23