Krows7 commited on
Commit
a8fee61
·
1 Parent(s): 69d8eb6

Fix README

Browse files
Files changed (1) hide show
  1. README.md +7 -8
README.md CHANGED
@@ -21,7 +21,6 @@ tags:
21
  - agent-perception
22
  - reinforcement-learning
23
  - embodied-ai
24
- - datasets
25
  configs:
26
  - config_name: core
27
  default: true
@@ -126,7 +125,7 @@ CraftSight exposes three configurations:
126
  ```python
127
  from datasets import load_dataset
128
 
129
- dataset = load_dataset("Krows7/CraftSight", "core")
130
 
131
  print(dataset)
132
 
@@ -143,20 +142,20 @@ The `image` column is created automatically by Hugging Face `ImageFolder`. Acces
143
  `core` is the default configuration:
144
 
145
  ```python
146
- dataset = load_dataset("Krows7/CraftSight")
147
  ```
148
 
149
  Load all 48 labels:
150
 
151
  ```python
152
- full = load_dataset("Krows7/CraftSight", "full")
153
  ```
154
 
155
  Load the unlabeled image index:
156
 
157
  ```python
158
  unlabeled = load_dataset(
159
- "Krows7/CraftSight",
160
  "unlabeled",
161
  split="train",
162
  )
@@ -220,7 +219,7 @@ images/<namespace>/<relative-path>.webp
220
  from datasets import load_dataset
221
 
222
  dataset = load_dataset(
223
- "Krows7/CraftSight",
224
  "core",
225
  split="train",
226
  )
@@ -239,7 +238,7 @@ print(image.size)
239
  from datasets import Image, load_dataset
240
 
241
  dataset = load_dataset(
242
- "Krows7/CraftSight",
243
  "core",
244
  split="train",
245
  )
@@ -260,7 +259,7 @@ Depending on the loading mode, this returns a local cached path, a remote path,
260
  from datasets import load_dataset
261
 
262
  stream = load_dataset(
263
- "Krows7/CraftSight",
264
  "core",
265
  split="train",
266
  streaming=True,
 
21
  - agent-perception
22
  - reinforcement-learning
23
  - embodied-ai
 
24
  configs:
25
  - config_name: core
26
  default: true
 
125
  ```python
126
  from datasets import load_dataset
127
 
128
+ dataset = load_dataset("Krows7/CraftSight-Minecraft", "core")
129
 
130
  print(dataset)
131
 
 
142
  `core` is the default configuration:
143
 
144
  ```python
145
+ dataset = load_dataset("Krows7/CraftSight-Minecraft")
146
  ```
147
 
148
  Load all 48 labels:
149
 
150
  ```python
151
+ full = load_dataset("Krows7/CraftSight-Minecraft", "full")
152
  ```
153
 
154
  Load the unlabeled image index:
155
 
156
  ```python
157
  unlabeled = load_dataset(
158
+ "Krows7/CraftSight-Minecraft",
159
  "unlabeled",
160
  split="train",
161
  )
 
219
  from datasets import load_dataset
220
 
221
  dataset = load_dataset(
222
+ "Krows7/CraftSight-Minecraft",
223
  "core",
224
  split="train",
225
  )
 
238
  from datasets import Image, load_dataset
239
 
240
  dataset = load_dataset(
241
+ "Krows7/CraftSight-Minecraft",
242
  "core",
243
  split="train",
244
  )
 
259
  from datasets import load_dataset
260
 
261
  stream = load_dataset(
262
+ "Krows7/CraftSight-Minecraft",
263
  "core",
264
  split="train",
265
  streaming=True,