rwcuffney commited on
Commit
ee66b9d
·
1 Parent(s): d57f416

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -36,6 +36,9 @@ st.write(model.__class__.__name__)
36
  st.code(type(model))
37
 
38
 
 
 
 
39
  '''
40
  x = st.slider('Select a value')
41
  st.write(x, 'squared is', x * x)
 
36
  st.code(type(model))
37
 
38
 
39
+ from datasets import load_dataset
40
+ dataset = load_dataset("rwcuffney/pick_a_card_test")
41
+
42
  '''
43
  x = st.slider('Select a value')
44
  st.write(x, 'squared is', x * x)