Spaces:
Runtime error
Runtime error
hacpdsae2023
commited on
Commit
·
fafd797
1
Parent(s):
3503538
fix bug
Browse filesdataset contains train and test - possibly
app.py
CHANGED
@@ -2,4 +2,4 @@ import streamlit as st
|
|
2 |
from datasets import load_dataset
|
3 |
dataset = load_dataset("roneneldan/TinyStories")
|
4 |
|
5 |
-
st.write(dataset[0])
|
|
|
2 |
from datasets import load_dataset
|
3 |
dataset = load_dataset("roneneldan/TinyStories")
|
4 |
|
5 |
+
st.write(dataset['train'][0])
|