marco-schouten commited on
Commit
609dd1f
·
verified ·
1 Parent(s): 02b6118

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -1
README.md CHANGED
@@ -56,7 +56,16 @@ px_w, px_h = bbox[2] * 512, bbox[3] * 512
56
  ```
57
  ---
58
 
59
- ## Example Entry
 
 
 
 
 
 
 
 
 
60
 
61
  ```json
62
  {
 
56
  ```
57
  ---
58
 
59
+ ## Example Setup
60
+ huggingface-cli login
61
+
62
+ ```python
63
+ from datasets import load_dataset
64
+
65
+ dataset = load_dataset("marco-schouten/hidden-objects", streaming=True)
66
+ first_row = next(iter(dataset["train"]))
67
+ print(first_row)
68
+ ```
69
 
70
  ```json
71
  {