Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
afwull
/
SemistructedTables
like
0
Dataset card
Files
Files and versions
xet
Community
afwull
commited on
Jun 20
Commit
ed9313f
·
verified
·
1 Parent(s):
3eff354
Create README.md
Browse files
Files changed (1)
hide
show
README.md
+8
-0
README.md
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
Example usage:
2
+
```python
3
+
def load_file(pickle_):
4
+
return pickle.loads(pickle_)
5
+
6
+
d = datasets.load_dataset("afwull/SemistructedTables", split='pdf_short')
7
+
print(load_file(d[0]['content']))
8
+
```