Update README.md
Browse files
README.md
CHANGED
@@ -47,7 +47,7 @@ Then you can load the dataset like this, for example all lighting conditions for
|
|
47 |
```
|
48 |
from datasets import load_dataset
|
49 |
|
50 |
-
ds = load_dataset("LukasDb/dropjects", "omni", streaming=True, trust_remote_code=True, split='
|
51 |
for data in ds.with_format('tensorflow'):
|
52 |
rgb = data['rgb'] # tf.uint8 Tensor, (h,w,3)
|
53 |
```
|
|
|
47 |
```
|
48 |
from datasets import load_dataset
|
49 |
|
50 |
+
ds = load_dataset("LukasDb/dropjects", "omni", streaming=True, trust_remote_code=True, split='train')
|
51 |
for data in ds.with_format('tensorflow'):
|
52 |
rgb = data['rgb'] # tf.uint8 Tensor, (h,w,3)
|
53 |
```
|