Commit
·
0ee3ac3
1
Parent(s):
0eefb9c
Update README.md
Browse files
README.md
CHANGED
@@ -48,8 +48,7 @@ from datasets import load_dataset</br>
|
|
48 |
dataset = load_dataset("markytools/goorealv3")
|
49 |
|
50 |
The image datasets will be stored in ""~/.cache/huggingface", so you need to delete the files here if you want to free up space.
|
51 |
-
|
52 |
-
The only difference here is that there is a new feature name called "splits", ["train", "test"] </br>
|
53 |
The "bboxes" and "labels" features are in string format, so you can use the code below to convert the string into list:</br>
|
54 |
import ast</br>
|
55 |
listOfBboxes = ast.literal_eval(dataset["test"]["bboxes"][0])</br>
|
|
|
48 |
dataset = load_dataset("markytools/goorealv3")
|
49 |
|
50 |
The image datasets will be stored in ""~/.cache/huggingface", so you need to delete the files here if you want to free up space.
|
51 |
+
</br>
|
|
|
52 |
The "bboxes" and "labels" features are in string format, so you can use the code below to convert the string into list:</br>
|
53 |
import ast</br>
|
54 |
listOfBboxes = ast.literal_eval(dataset["test"]["bboxes"][0])</br>
|