Datasets:
Formats:
parquet
Size:
10K - 100K
Update README.md
Browse files
README.md
CHANGED
|
@@ -150,7 +150,7 @@ This dataset is designed to facilitate research in areas such as multi-view 3D r
|
|
| 150 |
|
| 151 |
## Dataset Structure
|
| 152 |
|
| 153 |
-
The dataset is structured into splits based on the `split` field in the original data. The standard splits are `train`, `
|
| 154 |
|
| 155 |
Each split is a standard Hugging Face `Dataset` object. Each row in the dataset corresponds to a single detected bird instance in a single frame, with associated multi-modal data.
|
| 156 |
|
|
@@ -161,7 +161,7 @@ from datasets import load_dataset
|
|
| 161 |
dataset = load_dataset("anonymous-submission000/bird3m") # Replace with your actual repo_id
|
| 162 |
|
| 163 |
train_dataset = dataset["train"]
|
| 164 |
-
|
| 165 |
test_dataset = dataset["test"]
|
| 166 |
```
|
| 167 |
|
|
@@ -185,7 +185,7 @@ Each example in the dataset has the following fields:
|
|
| 185 |
* `side_view_boundary` (`Sequence[int64]`): View boundary coordinates for the **side** view. (Format similar to `back_view_boundary`).
|
| 186 |
* `backpack_color` (`string`): Color of the backpack tag on the bird (e.g., "purple", "yellow", "red").
|
| 187 |
* `experiment_id` (`string`): Simplified experiment identifier (e.g., "copExpBP03", "juvExpBP05").
|
| 188 |
-
* `split` (`string`): Dataset split for this example ("train", "
|
| 189 |
* `top_bbox_2d` (`Sequence[float64]`): 2D bounding box for the **top** camera view. (Format similar to `back_bbox_2d`).
|
| 190 |
* `top_keypoints_2d` (`Sequence[float64]`): 2D keypoint coordinates and visibility for the **top** camera view. (Format similar to `back_keypoints_2d`).
|
| 191 |
* `top_view_boundary` (`Sequence[int64]`): View boundary coordinates for the **top** view. (Format similar to `back_view_boundary`).
|
|
|
|
| 150 |
|
| 151 |
## Dataset Structure
|
| 152 |
|
| 153 |
+
The dataset is structured into splits based on the `split` field in the original data. The standard splits are `train`, `val` (mapped from `val`), and `test`.
|
| 154 |
|
| 155 |
Each split is a standard Hugging Face `Dataset` object. Each row in the dataset corresponds to a single detected bird instance in a single frame, with associated multi-modal data.
|
| 156 |
|
|
|
|
| 161 |
dataset = load_dataset("anonymous-submission000/bird3m") # Replace with your actual repo_id
|
| 162 |
|
| 163 |
train_dataset = dataset["train"]
|
| 164 |
+
val_dataset = dataset["val"]
|
| 165 |
test_dataset = dataset["test"]
|
| 166 |
```
|
| 167 |
|
|
|
|
| 185 |
* `side_view_boundary` (`Sequence[int64]`): View boundary coordinates for the **side** view. (Format similar to `back_view_boundary`).
|
| 186 |
* `backpack_color` (`string`): Color of the backpack tag on the bird (e.g., "purple", "yellow", "red").
|
| 187 |
* `experiment_id` (`string`): Simplified experiment identifier (e.g., "copExpBP03", "juvExpBP05").
|
| 188 |
+
* `split` (`string`): Dataset split for this example ("train", "val", "test").
|
| 189 |
* `top_bbox_2d` (`Sequence[float64]`): 2D bounding box for the **top** camera view. (Format similar to `back_bbox_2d`).
|
| 190 |
* `top_keypoints_2d` (`Sequence[float64]`): 2D keypoint coordinates and visibility for the **top** camera view. (Format similar to `back_keypoints_2d`).
|
| 191 |
* `top_view_boundary` (`Sequence[int64]`): View boundary coordinates for the **top** view. (Format similar to `back_view_boundary`).
|