harpreetsahota commited on
Commit
22f48ac
·
verified ·
1 Parent(s): 9d7bef7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -9
README.md CHANGED
@@ -82,17 +82,13 @@ pip install -U fiftyone
82
  import fiftyone as fo
83
  from huggingface_hub import snapshot_download
84
 
85
-
86
  # Download the dataset snapshot to the current working directory
87
-
88
  snapshot_download(
89
  repo_id="Voxel51/graspclutter6d",
90
  local_dir=".",
91
  repo_type="dataset"
92
  )
93
 
94
-
95
-
96
  # Load dataset from current directory using FiftyOne's native format
97
  dataset = fo.Dataset.from_dir(
98
  dataset_dir=".", # Current directory contains the dataset files
@@ -102,11 +98,6 @@ dataset = fo.Dataset.from_dir(
102
 
103
  # Launch the App
104
  session = fo.launch_app(dataset)
105
-
106
- # Launch the App
107
- session = fo.launch_app(dataset)
108
-
109
-
110
  ```
111
 
112
 
 
82
  import fiftyone as fo
83
  from huggingface_hub import snapshot_download
84
 
 
85
  # Download the dataset snapshot to the current working directory
 
86
  snapshot_download(
87
  repo_id="Voxel51/graspclutter6d",
88
  local_dir=".",
89
  repo_type="dataset"
90
  )
91
 
 
 
92
  # Load dataset from current directory using FiftyOne's native format
93
  dataset = fo.Dataset.from_dir(
94
  dataset_dir=".", # Current directory contains the dataset files
 
98
 
99
  # Launch the App
100
  session = fo.launch_app(dataset)
 
 
 
 
 
101
  ```
102
 
103