gfathertech commited on
Commit
e85c1cc
·
verified ·
1 Parent(s): e8d30f5

Create app py

Browse files
Files changed (1) hide show
  1. app py +12 -0
app py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from datasets import load_dataset
2
+
3
+ def main():
4
+ # Replace with your own Hugging Face username/repo name
5
+ repo = "gfather/publications"
6
+ data_file = "project_1.json"
7
+
8
+ dataset = load_dataset(repo, data_files=data_file)
9
+ print(dataset)
10
+
11
+ if __name__ == "__main__":
12
+ main()