Datasets:
Andy Janco
commited on
Commit
·
cd621be
1
Parent(s):
bf423c5
Update README.md
Browse files
README.md
CHANGED
|
@@ -90,4 +90,8 @@ The dataset contains an entry for each image with the following fields:
|
|
| 90 |
from datasets import load_dataset
|
| 91 |
|
| 92 |
dataset = load_dataset('ajanco/pesp')
|
|
|
|
|
|
|
|
|
|
|
|
|
| 93 |
```
|
|
|
|
| 90 |
from datasets import load_dataset
|
| 91 |
|
| 92 |
dataset = load_dataset('ajanco/pesp')
|
| 93 |
+
for item in dataset['train']:
|
| 94 |
+
for prediction in item['yolo_predictions']:
|
| 95 |
+
print(prediction)
|
| 96 |
+
|
| 97 |
```
|