Commit
·
0eefb9c
1
Parent(s):
cb093bd
Update README.md
Browse files
README.md
CHANGED
@@ -54,4 +54,4 @@ The "bboxes" and "labels" features are in string format, so you can use the code
|
|
54 |
import ast</br>
|
55 |
listOfBboxes = ast.literal_eval(dataset["test"]["bboxes"][0])</br>
|
56 |
</br>
|
57 |
-
The feature "seg" is now in string format instead of numpy ndarray. This is an optional feature, and you can manually download the files here (https://huggingface.co/datasets/markytools/goosegmv3)
|
|
|
54 |
import ast</br>
|
55 |
listOfBboxes = ast.literal_eval(dataset["test"]["bboxes"][0])</br>
|
56 |
</br>
|
57 |
+
The feature "seg" is now in string format instead of numpy ndarray. This is an optional feature, and you can manually download the files here (https://huggingface.co/datasets/markytools/goosegmv3) using wget commandline. The files are in .npy so load it using np.load (https://numpy.org/doc/stable/reference/generated/numpy.save.html).
|