Lamp Socrates commited on
Commit
83c7953
1 Parent(s): e027bf5
Files changed (2) hide show
  1. README.md +7 -1
  2. app.py +4 -0
README.md CHANGED
@@ -8,7 +8,13 @@ sdk_version: 1.34.0
8
  app_file: app.py
9
  pinned: false
10
  license: apache-2.0
 
11
  short_description: Sample space for group coursework for NLP
12
  ---
13
 
14
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
8
  app_file: app.py
9
  pinned: false
10
  license: apache-2.0
11
+ python_version: 3.11.5
12
  short_description: Sample space for group coursework for NLP
13
  ---
14
 
15
+
16
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
17
+
18
+
19
+ ## Setting up Github Actions
20
+ https://huggingface.co/docs/hub/en/spaces-github-actions
app.py CHANGED
@@ -70,6 +70,10 @@ def prep_page():
70
 
71
  st.markdown(styled_text, unsafe_allow_html=True)
72
 
 
 
 
 
73
 
74
 
75
  if __name__ == '__main__':
 
70
 
71
  st.markdown(styled_text, unsafe_allow_html=True)
72
 
73
+ def load_data():
74
+ from datasets import load_dataset
75
+ dat_CW = load_dataset("surrey-nlp/PLOD-CW")
76
+
77
 
78
 
79
  if __name__ == '__main__':