LukasDb commited on
Commit
90455be
1 Parent(s): e416d01

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
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='test')
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
  ```