Add huggingface csv files
Browse files- create_metadata.py +95 -0
- test.csv +30 -0
- train.csv +0 -0
- validation.csv +30 -0
create_metadata.py
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""
|
| 3 |
+
Generate HuggingFace-compatible metadata CSV files for the billiards dataset.
|
| 4 |
+
Creates train.csv, validation.csv, and test.csv with image paths and annotations.
|
| 5 |
+
"""
|
| 6 |
+
|
| 7 |
+
import csv
|
| 8 |
+
import os
|
| 9 |
+
from pathlib import Path
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
def read_yolo_labels(label_path):
|
| 13 |
+
"""Read YOLO format labels from a text file."""
|
| 14 |
+
if not os.path.exists(label_path):
|
| 15 |
+
return []
|
| 16 |
+
|
| 17 |
+
with open(label_path, 'r') as f:
|
| 18 |
+
lines = f.readlines()
|
| 19 |
+
|
| 20 |
+
annotations = []
|
| 21 |
+
for line in lines:
|
| 22 |
+
parts = line.strip().split()
|
| 23 |
+
if len(parts) == 5:
|
| 24 |
+
class_id, x_center, y_center, width, height = parts
|
| 25 |
+
annotations.append({
|
| 26 |
+
'class_id': int(class_id),
|
| 27 |
+
'x_center': float(x_center),
|
| 28 |
+
'y_center': float(y_center),
|
| 29 |
+
'width': float(width),
|
| 30 |
+
'height': float(height)
|
| 31 |
+
})
|
| 32 |
+
return annotations
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
def create_metadata_csv(split_name, output_filename):
|
| 36 |
+
"""Create a metadata CSV file for a given split."""
|
| 37 |
+
data_dir = Path('data')
|
| 38 |
+
images_dir = data_dir / split_name / 'images'
|
| 39 |
+
labels_dir = data_dir / split_name / 'labels'
|
| 40 |
+
|
| 41 |
+
if not images_dir.exists():
|
| 42 |
+
print(f"Warning: {images_dir} does not exist")
|
| 43 |
+
return
|
| 44 |
+
|
| 45 |
+
rows = []
|
| 46 |
+
image_files = sorted(images_dir.glob('*.png'))
|
| 47 |
+
|
| 48 |
+
for image_path in image_files:
|
| 49 |
+
# Get corresponding label file
|
| 50 |
+
label_filename = image_path.stem + '.txt'
|
| 51 |
+
label_path = labels_dir / label_filename
|
| 52 |
+
|
| 53 |
+
# Read annotations
|
| 54 |
+
annotations = read_yolo_labels(label_path)
|
| 55 |
+
|
| 56 |
+
# Create relative path from root
|
| 57 |
+
relative_image_path = str(image_path)
|
| 58 |
+
|
| 59 |
+
row = {
|
| 60 |
+
'image': relative_image_path,
|
| 61 |
+
'annotations': str(annotations) # Store as string for CSV compatibility
|
| 62 |
+
}
|
| 63 |
+
rows.append(row)
|
| 64 |
+
|
| 65 |
+
# Write CSV file
|
| 66 |
+
if rows:
|
| 67 |
+
with open(output_filename, 'w', newline='') as csvfile:
|
| 68 |
+
fieldnames = ['image', 'annotations']
|
| 69 |
+
writer = csv.DictWriter(csvfile, fieldnames=fieldnames)
|
| 70 |
+
writer.writeheader()
|
| 71 |
+
writer.writerows(rows)
|
| 72 |
+
|
| 73 |
+
print(f"Created {output_filename} with {len(rows)} entries")
|
| 74 |
+
else:
|
| 75 |
+
print(f"No data found for {split_name}")
|
| 76 |
+
|
| 77 |
+
|
| 78 |
+
def main():
|
| 79 |
+
"""Generate metadata CSV files for all splits."""
|
| 80 |
+
# Map split directory names to HuggingFace-compatible output filenames
|
| 81 |
+
splits = {
|
| 82 |
+
'train': 'train.csv',
|
| 83 |
+
'val': 'validation.csv', # 'validation' is a recognized split name
|
| 84 |
+
'test': 'test.csv'
|
| 85 |
+
}
|
| 86 |
+
|
| 87 |
+
for split_dir, output_file in splits.items():
|
| 88 |
+
create_metadata_csv(split_dir, output_file)
|
| 89 |
+
|
| 90 |
+
print("\nMetadata CSV files created successfully!")
|
| 91 |
+
print("These files are compatible with HuggingFace's dataset viewer.")
|
| 92 |
+
|
| 93 |
+
|
| 94 |
+
if __name__ == '__main__':
|
| 95 |
+
main()
|
test.csv
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
image,annotations
|
| 2 |
+
data/test/images/frame_0013.png,"[{'class_id': 0, 'x_center': 0.469921875, 'y_center': 0.29375, 'width': 0.02421875, 'height': 0.0375}, {'class_id': 0, 'x_center': 0.656640625, 'y_center': 0.21666666666666667, 'width': 0.02734375, 'height': 0.041666666666666664}, {'class_id': 0, 'x_center': 0.600390625, 'y_center': 0.37083333333333335, 'width': 0.02265625, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.59765625, 'y_center': 0.4125, 'width': 0.0234375, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.581640625, 'y_center': 0.4930555555555556, 'width': 0.02734375, 'height': 0.03611111111111111}, {'class_id': 0, 'x_center': 0.61328125, 'y_center': 0.5, 'width': 0.025, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.661328125, 'y_center': 0.5270833333333333, 'width': 0.02578125, 'height': 0.0375}, {'class_id': 0, 'x_center': 0.833984375, 'y_center': 0.6013888888888889, 'width': 0.02890625, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.405078125, 'y_center': 0.6840277777777778, 'width': 0.02421875, 'height': 0.0375}, {'class_id': 0, 'x_center': 0.3375, 'y_center': 0.51875, 'width': 0.0234375, 'height': 0.0375}]"
|
| 3 |
+
data/test/images/frame_0015.png,"[{'class_id': 0, 'x_center': 0.441015625, 'y_center': 0.29097222222222224, 'width': 0.02109375, 'height': 0.0375}, {'class_id': 0, 'x_center': 0.646484375, 'y_center': 0.21597222222222223, 'width': 0.02890625, 'height': 0.043055555555555555}, {'class_id': 0, 'x_center': 0.601953125, 'y_center': 0.37083333333333335, 'width': 0.02265625, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.574609375, 'y_center': 0.42083333333333334, 'width': 0.02734375, 'height': 0.041666666666666664}, {'class_id': 0, 'x_center': 0.599609375, 'y_center': 0.47638888888888886, 'width': 0.02421875, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.569921875, 'y_center': 0.49444444444444446, 'width': 0.02578125, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.58671875, 'y_center': 0.56875, 'width': 0.025, 'height': 0.04027777777777778}, {'class_id': 0, 'x_center': 0.4046875, 'y_center': 0.6840277777777778, 'width': 0.025, 'height': 0.04027777777777778}, {'class_id': 0, 'x_center': 0.337109375, 'y_center': 0.5194444444444445, 'width': 0.02265625, 'height': 0.03611111111111111}, {'class_id': 0, 'x_center': 0.833984375, 'y_center': 0.6013888888888889, 'width': 0.02890625, 'height': 0.03888888888888889}]"
|
| 4 |
+
data/test/images/frame_0016.png,"[{'class_id': 0, 'x_center': 0.441015625, 'y_center': 0.29097222222222224, 'width': 0.02109375, 'height': 0.0375}, {'class_id': 0, 'x_center': 0.337109375, 'y_center': 0.5194444444444445, 'width': 0.02265625, 'height': 0.03611111111111111}, {'class_id': 0, 'x_center': 0.4046875, 'y_center': 0.6840277777777778, 'width': 0.0234375, 'height': 0.0375}, {'class_id': 0, 'x_center': 0.586328125, 'y_center': 0.56875, 'width': 0.02578125, 'height': 0.04027777777777778}, {'class_id': 0, 'x_center': 0.57265625, 'y_center': 0.4986111111111111, 'width': 0.0203125, 'height': 0.030555555555555555}, {'class_id': 0, 'x_center': 0.599609375, 'y_center': 0.47638888888888886, 'width': 0.02421875, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.57578125, 'y_center': 0.42083333333333334, 'width': 0.025, 'height': 0.041666666666666664}, {'class_id': 0, 'x_center': 0.601953125, 'y_center': 0.37083333333333335, 'width': 0.02265625, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.833984375, 'y_center': 0.6013888888888889, 'width': 0.02890625, 'height': 0.03888888888888889}]"
|
| 5 |
+
data/test/images/frame_0028.png,"[{'class_id': 0, 'x_center': 0.520703125, 'y_center': 0.20972222222222223, 'width': 0.02734375, 'height': 0.044444444444444446}, {'class_id': 0, 'x_center': 0.646484375, 'y_center': 0.21597222222222223, 'width': 0.02890625, 'height': 0.043055555555555555}, {'class_id': 0, 'x_center': 0.73828125, 'y_center': 0.3034722222222222, 'width': 0.028125, 'height': 0.0375}, {'class_id': 0, 'x_center': 0.599609375, 'y_center': 0.37083333333333335, 'width': 0.02734375, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.49296875, 'y_center': 0.42083333333333334, 'width': 0.025, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.440625, 'y_center': 0.29097222222222224, 'width': 0.021875, 'height': 0.0375}, {'class_id': 0, 'x_center': 0.337109375, 'y_center': 0.5194444444444445, 'width': 0.02265625, 'height': 0.03611111111111111}, {'class_id': 0, 'x_center': 0.403125, 'y_center': 0.6833333333333333, 'width': 0.028125, 'height': 0.041666666666666664}, {'class_id': 0, 'x_center': 0.558984375, 'y_center': 0.5493055555555556, 'width': 0.02578125, 'height': 0.034722222222222224}, {'class_id': 0, 'x_center': 0.58671875, 'y_center': 0.5680555555555555, 'width': 0.0265625, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.833203125, 'y_center': 0.6013888888888889, 'width': 0.02890625, 'height': 0.03888888888888889}, {'class_id': 1, 'x_center': 0.7647145828127598, 'y_center': 0.6836240444592517, 'width': 0.30859375, 'height': 0.3958333333333333}]"
|
| 6 |
+
data/test/images/frame_0033.png,"[{'class_id': 0, 'x_center': 0.6017807245254516, 'y_center': 0.3696385277642144, 'width': 0.025154924392700194, 'height': 0.04473639594184028}, {'class_id': 0, 'x_center': 0.6488024473190308, 'y_center': 0.21463271247016058, 'width': 0.02541813850402832, 'height': 0.04539710150824653}, {'class_id': 0, 'x_center': 0.35570003986358645, 'y_center': 0.34997296863132055, 'width': 0.025116395950317384, 'height': 0.04486717647976345}, {'class_id': 0, 'x_center': 0.8345304489135742, 'y_center': 0.6001993391248915, 'width': 0.029068374633789064, 'height': 0.0428865220811632}, {'class_id': 0, 'x_center': 0.44099090099334715, 'y_center': 0.28898936377631296, 'width': 0.02299790382385254, 'height': 0.04266060723198785}, {'class_id': 0, 'x_center': 0.5542637825012207, 'y_center': 0.5645484500461154, 'width': 0.02570972442626953, 'height': 0.044114939371744794}, {'class_id': 0, 'x_center': 0.5875986814498901, 'y_center': 0.5661956787109375, 'width': 0.026723146438598633, 'height': 0.04391420152452257}, {'class_id': 0, 'x_center': 0.7383388996124267, 'y_center': 0.3022460619608561, 'width': 0.02864360809326172, 'height': 0.04345823923746745}, {'class_id': 0, 'x_center': 0.337109375, 'y_center': 0.5194444444444445, 'width': 0.02265625, 'height': 0.03611111111111111}, {'class_id': 0, 'x_center': 0.403515625, 'y_center': 0.6840277777777778, 'width': 0.02734375, 'height': 0.04027777777777778}, {'class_id': 1, 'x_center': 0.118359375, 'y_center': 0.41458333333333336, 'width': 0.23671875, 'height': 0.0875}]"
|
| 7 |
+
data/test/images/frame_0056.png,"[{'class_id': 0, 'x_center': 0.6489693641662597, 'y_center': 0.21473473442925348, 'width': 0.025682449340820312, 'height': 0.04571940104166667}, {'class_id': 0, 'x_center': 0.25076682567596437, 'y_center': 0.5533742904663086, 'width': 0.026299238204956055, 'height': 0.04475568135579427}, {'class_id': 0, 'x_center': 0.8347589492797851, 'y_center': 0.6001549402872721, 'width': 0.02887859344482422, 'height': 0.042612923516167536}, {'class_id': 0, 'x_center': 0.5541867733001709, 'y_center': 0.5645896275838216, 'width': 0.025820827484130858, 'height': 0.044570541381835936}, {'class_id': 0, 'x_center': 0.9284877300262451, 'y_center': 0.4863916185167101, 'width': 0.030030345916748045, 'height': 0.04550052218967014}, {'class_id': 0, 'x_center': 0.5875797271728516, 'y_center': 0.566147338019477, 'width': 0.02689971923828125, 'height': 0.04349674648708767}, {'class_id': 0, 'x_center': 0.2518638849258423, 'y_center': 0.20544391208224827, 'width': 0.02425518035888672, 'height': 0.041242218017578124}, {'class_id': 0, 'x_center': 0.81796875, 'y_center': 0.13194444444444445, 'width': 0.0296875, 'height': 0.041666666666666664}]"
|
| 8 |
+
data/test/images/frame_10008.png,"[{'class_id': 1, 'x_center': 0.87109375, 'y_center': 0.3756944444444445, 'width': 0.2578125, 'height': 0.751388888888889}]"
|
| 9 |
+
data/test/images/frame_10011.png,"[{'class_id': 0, 'x_center': 0.7365453720092774, 'y_center': 0.78773439195421, 'width': 0.026922225952148438, 'height': 0.04677310519748264}, {'class_id': 0, 'x_center': 0.6508630037307739, 'y_center': 0.4167064454820421, 'width': 0.028725385665893555, 'height': 0.0436515384250217}, {'class_id': 0, 'x_center': 0.7928925037384034, 'y_center': 0.3929459889729818, 'width': 0.025874805450439454, 'height': 0.04030948215060764}, {'class_id': 0, 'x_center': 0.7482837438583374, 'y_center': 0.5772769927978516, 'width': 0.02807173728942871, 'height': 0.04328511555989583}, {'class_id': 0, 'x_center': 0.7260656356811523, 'y_center': 0.4987144258287218, 'width': 0.02715892791748047, 'height': 0.044303343031141494}, {'class_id': 0, 'x_center': 0.6826189756393433, 'y_center': 0.2607203483581543, 'width': 0.02692732810974121, 'height': 0.044121572706434464}, {'class_id': 0, 'x_center': 0.2745009660720825, 'y_center': 0.3807363510131836, 'width': 0.024408578872680664, 'height': 0.04136178758409288}, {'class_id': 0, 'x_center': 0.5296039581298828, 'y_center': 0.5586195627848307, 'width': 0.028554439544677734, 'height': 0.044460296630859375}, {'class_id': 0, 'x_center': 0.615885853767395, 'y_center': 0.3602005852593316, 'width': 0.028288602828979492, 'height': 0.044784800211588545}, {'class_id': 0, 'x_center': 0.7629577398300171, 'y_center': 0.14559739960564508, 'width': 0.02893939018249512, 'height': 0.04656782150268555}, {'class_id': 0, 'x_center': 0.7897851943969727, 'y_center': 0.14412860870361327, 'width': 0.026078033447265624, 'height': 0.04578598870171441}, {'class_id': 0, 'x_center': 0.5361991882324219, 'y_center': 0.5114595837063259, 'width': 0.027801513671875, 'height': 0.041786575317382814}, {'class_id': 0, 'x_center': 0.7365472316741943, 'y_center': 0.7881453620062934, 'width': 0.038199424743652344, 'height': 0.06593577067057292}]"
|
| 10 |
+
data/test/images/frame_10029.png,"[{'class_id': 0, 'x_center': 0.7929950714111328, 'y_center': 0.3932231691148546, 'width': 0.025685882568359374, 'height': 0.04054400126139323}, {'class_id': 0, 'x_center': 0.7261725902557373, 'y_center': 0.4988569047715929, 'width': 0.026816844940185547, 'height': 0.04432271321614583}, {'class_id': 0, 'x_center': 0.6508258581161499, 'y_center': 0.4167060428195529, 'width': 0.0286923885345459, 'height': 0.04376356336805556}, {'class_id': 0, 'x_center': 0.7484662532806396, 'y_center': 0.5773068110148112, 'width': 0.027822399139404298, 'height': 0.043046357896592884}, {'class_id': 0, 'x_center': 0.14131665229797363, 'y_center': 0.38496555752224393, 'width': 0.03231523036956787, 'height': 0.045254347059461804}, {'class_id': 0, 'x_center': 0.6827028751373291, 'y_center': 0.2606715202331543, 'width': 0.026478290557861328, 'height': 0.04343420664469401}, {'class_id': 0, 'x_center': 0.6159720420837402, 'y_center': 0.3602004369099935, 'width': 0.028380489349365233, 'height': 0.044905895657009545}, {'class_id': 0, 'x_center': 0.27448431253433225, 'y_center': 0.3806157853868273, 'width': 0.02448403835296631, 'height': 0.04114515516493056}, {'class_id': 0, 'x_center': 0.5379706144332885, 'y_center': 0.5118489371405708, 'width': 0.023743867874145508, 'height': 0.04147648281521267}, {'class_id': 0, 'x_center': 0.7629406452178955, 'y_center': 0.14568452305263943, 'width': 0.028933143615722655, 'height': 0.04691347546047635}, {'class_id': 0, 'x_center': 0.7897615432739258, 'y_center': 0.14423979653252494, 'width': 0.02607860565185547, 'height': 0.046146625942654076}, {'class_id': 0, 'x_center': 0.067578125, 'y_center': 0.24861111111111112, 'width': 0.02578125, 'height': 0.03611111111111111}, {'class_id': 1, 'x_center': 0.462109375, 'y_center': 0.7486111111111111, 'width': 0.36640625, 'height': 0.35833333333333334}]"
|
| 11 |
+
data/test/images/frame_10032.png,"[{'class_id': 0, 'x_center': 0.4478064298629761, 'y_center': 0.12066548665364583, 'width': 0.025119829177856445, 'height': 0.047079383002387155}, {'class_id': 0, 'x_center': 0.7928540706634521, 'y_center': 0.39320360819498695, 'width': 0.02598714828491211, 'height': 0.040376705593532985}, {'class_id': 0, 'x_center': 0.747805905342102, 'y_center': 0.5774779849582248, 'width': 0.028976583480834962, 'height': 0.043194749620225695}, {'class_id': 0, 'x_center': 0.726099967956543, 'y_center': 0.4987227969699436, 'width': 0.026989841461181642, 'height': 0.04426303439670139}, {'class_id': 0, 'x_center': 0.6508945941925048, 'y_center': 0.4167244381374783, 'width': 0.028618335723876953, 'height': 0.0435577392578125}, {'class_id': 0, 'x_center': 0.6828081607818604, 'y_center': 0.2608218616909451, 'width': 0.026662921905517577, 'height': 0.04393104977077908}, {'class_id': 0, 'x_center': 0.5378772735595703, 'y_center': 0.5118446350097656, 'width': 0.024263381958007812, 'height': 0.0417878892686632}, {'class_id': 0, 'x_center': 0.6159331798553467, 'y_center': 0.360255061255561, 'width': 0.02832822799682617, 'height': 0.04434769948323568}, {'class_id': 0, 'x_center': 0.3644384503364563, 'y_center': 0.47363465627034507, 'width': 0.023924422264099122, 'height': 0.04055069817437066}, {'class_id': 0, 'x_center': 0.7630444288253784, 'y_center': 0.14560645421346027, 'width': 0.02874312400817871, 'height': 0.046378135681152344}, {'class_id': 0, 'x_center': 0.7898593187332154, 'y_center': 0.14417302343580457, 'width': 0.025906705856323244, 'height': 0.04568916956583659}, {'class_id': 0, 'x_center': 0.054910044977511306, 'y_center': 0.11130545838192021, 'width': 0.030193236714975834, 'height': 0.049975012493753114}]"
|
| 12 |
+
data/test/images/frame_10035.png,"[{'class_id': 0, 'x_center': 0.65082848072052, 'y_center': 0.41668088701036243, 'width': 0.02894482612609863, 'height': 0.044005203247070315}, {'class_id': 0, 'x_center': 0.7482436895370483, 'y_center': 0.5772104263305664, 'width': 0.02830395698547363, 'height': 0.04348504808213976}, {'class_id': 0, 'x_center': 0.47396254539489746, 'y_center': 0.10896853340996636, 'width': 0.024732303619384766, 'height': 0.04649202558729384}, {'class_id': 0, 'x_center': 0.79278724193573, 'y_center': 0.39313748677571614, 'width': 0.026448488235473633, 'height': 0.04065594143337674}, {'class_id': 0, 'x_center': 0.7260038375854492, 'y_center': 0.49872175852457684, 'width': 0.027375221252441406, 'height': 0.04449653625488281}, {'class_id': 0, 'x_center': 0.6827307939529419, 'y_center': 0.2606121910942925, 'width': 0.026640558242797853, 'height': 0.04333407084147135}, {'class_id': 0, 'x_center': 0.3641724824905396, 'y_center': 0.4732798046535916, 'width': 0.023256349563598632, 'height': 0.03967391120062934}, {'class_id': 0, 'x_center': 0.6159172773361206, 'y_center': 0.3601760334438748, 'width': 0.028334856033325195, 'height': 0.04464825524224175}, {'class_id': 0, 'x_center': 0.5367945909500123, 'y_center': 0.5119197421603733, 'width': 0.026341676712036133, 'height': 0.04228922526041667}, {'class_id': 0, 'x_center': 0.790625, 'y_center': 0.14166666666666666, 'width': 0.0234375, 'height': 0.03333333333333333}, {'class_id': 0, 'x_center': 0.76328125, 'y_center': 0.14097222222222222, 'width': 0.0296875, 'height': 0.02638888888888889}, {'class_id': 1, 'x_center': 0.815234375, 'y_center': 0.09791666666666667, 'width': 0.36953125, 'height': 0.05138888888888889}]"
|
| 13 |
+
data/test/images/frame_10037.png,"[{'class_id': 0, 'x_center': 0.7481394290924073, 'y_center': 0.5772553549872504, 'width': 0.02854146957397461, 'height': 0.04396866692437066}, {'class_id': 0, 'x_center': 0.6507893323898315, 'y_center': 0.41655587090386287, 'width': 0.02902951240539551, 'height': 0.04418428209092882}, {'class_id': 0, 'x_center': 0.11767622828483582, 'y_center': 0.32197949091593425, 'width': 0.03417094945907593, 'height': 0.06006692250569661}, {'class_id': 0, 'x_center': 0.7925230503082276, 'y_center': 0.39317349327935114, 'width': 0.027186870574951172, 'height': 0.04163864983452691}, {'class_id': 0, 'x_center': 0.7260869741439819, 'y_center': 0.4986849466959635, 'width': 0.027351999282836915, 'height': 0.04455040825737847}, {'class_id': 0, 'x_center': 0.6823717355728149, 'y_center': 0.26060191260443794, 'width': 0.0273836612701416, 'height': 0.04473893907335069}, {'class_id': 0, 'x_center': 0.536328125, 'y_center': 0.5131944444444444, 'width': 0.02734375, 'height': 0.0375}, {'class_id': 0, 'x_center': 0.61640625, 'y_center': 0.36180555555555555, 'width': 0.028125, 'height': 0.0375}, {'class_id': 0, 'x_center': 0.365234375, 'y_center': 0.475, 'width': 0.02265625, 'height': 0.03611111111111111}, {'class_id': 1, 'x_center': 0.6906510937239713, 'y_center': 0.059027777777777804, 'width': 0.4516146874479425, 'height': 0.11805555555555561}]"
|
| 14 |
+
data/test/images/frame_10050.png,"[{'class_id': 0, 'x_center': 0.7588034391403198, 'y_center': 0.21089184019300672, 'width': 0.027016305923461915, 'height': 0.04475243886311849}, {'class_id': 0, 'x_center': 0.8880181312561035, 'y_center': 0.4327674865722656, 'width': 0.03018779754638672, 'height': 0.04426201714409722}, {'class_id': 0, 'x_center': 0.7483474016189575, 'y_center': 0.5771956337822808, 'width': 0.02812514305114746, 'height': 0.04345393710666233}, {'class_id': 0, 'x_center': 0.6507941007614135, 'y_center': 0.4166947470770942, 'width': 0.0288693904876709, 'height': 0.043927976820203996}, {'class_id': 0, 'x_center': 0.7260603189468384, 'y_center': 0.4986960728963216, 'width': 0.02712416648864746, 'height': 0.04432928297254774}, {'class_id': 0, 'x_center': 0.6826169490814209, 'y_center': 0.26064241197374133, 'width': 0.026901721954345703, 'height': 0.04422009785970052}, {'class_id': 0, 'x_center': 0.5335359573364258, 'y_center': 0.21786325242784288, 'width': 0.025121688842773438, 'height': 0.04318067762586805}, {'class_id': 0, 'x_center': 0.9048247814178467, 'y_center': 0.30357402165730796, 'width': 0.030449771881103517, 'height': 0.045515547858344184}, {'class_id': 0, 'x_center': 0.615982460975647, 'y_center': 0.3602437973022461, 'width': 0.028261518478393553, 'height': 0.044772635565863715}, {'class_id': 0, 'x_center': 0.536328125, 'y_center': 0.5131944444444444, 'width': 0.02734375, 'height': 0.0375}, {'class_id': 0, 'x_center': 0.365234375, 'y_center': 0.475, 'width': 0.02265625, 'height': 0.03611111111111111}]"
|
| 15 |
+
data/test/images/frame_10054.png,"[{'class_id': 0, 'x_center': 0.7587167024612427, 'y_center': 0.2108531845940484, 'width': 0.02750287055969238, 'height': 0.044909265306260854}, {'class_id': 0, 'x_center': 0.9053829669952392, 'y_center': 0.6253917270236545, 'width': 0.029977703094482423, 'height': 0.045076243082682294}, {'class_id': 0, 'x_center': 0.6866114139556885, 'y_center': 0.455096795823839, 'width': 0.028434371948242186, 'height': 0.04537171257866753}, {'class_id': 0, 'x_center': 0.6827001571655273, 'y_center': 0.26074088414510094, 'width': 0.02693452835083008, 'height': 0.04388718075222439}, {'class_id': 0, 'x_center': 0.36425641775131223, 'y_center': 0.4731556150648329, 'width': 0.02384340763092041, 'height': 0.04044024149576823}, {'class_id': 0, 'x_center': 0.724051547050476, 'y_center': 0.5175700929429796, 'width': 0.02716660499572754, 'height': 0.04453790452745226}, {'class_id': 0, 'x_center': 0.7485982656478882, 'y_center': 0.5774456236097548, 'width': 0.027713632583618163, 'height': 0.042867151896158855}, {'class_id': 0, 'x_center': 0.6506865501403809, 'y_center': 0.41632826063368056, 'width': 0.028619384765625, 'height': 0.04362894694010417}, {'class_id': 0, 'x_center': 0.5809291124343872, 'y_center': 0.21525378757052951, 'width': 0.027950525283813477, 'height': 0.044748348659939235}, {'class_id': 0, 'x_center': 0.6160601854324341, 'y_center': 0.3603490299648709, 'width': 0.028116464614868164, 'height': 0.044498676723904076}, {'class_id': 0, 'x_center': 0.536328125, 'y_center': 0.5131944444444444, 'width': 0.02734375, 'height': 0.0375}]"
|
| 16 |
+
data/test/images/frame_10065.png,"[{'class_id': 0, 'x_center': 0.5578125, 'y_center': 0.5027777777777778, 'width': 0.0234375, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.5328125, 'y_center': 0.5159722222222223, 'width': 0.028125, 'height': 0.0375}, {'class_id': 0, 'x_center': 0.36484375, 'y_center': 0.475, 'width': 0.0234375, 'height': 0.03611111111111111}, {'class_id': 0, 'x_center': 0.616015625, 'y_center': 0.3625, 'width': 0.02890625, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.639453125, 'y_center': 0.3875, 'width': 0.02421875, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.58125, 'y_center': 0.21736111111111112, 'width': 0.028125, 'height': 0.04027777777777778}, {'class_id': 0, 'x_center': 0.68125, 'y_center': 0.26180555555555557, 'width': 0.028125, 'height': 0.0375}, {'class_id': 0, 'x_center': 0.7578125, 'y_center': 0.21180555555555555, 'width': 0.0296875, 'height': 0.04027777777777778}, {'class_id': 0, 'x_center': 0.721484375, 'y_center': 0.5326388888888889, 'width': 0.02890625, 'height': 0.04027777777777778}, {'class_id': 0, 'x_center': 0.74765625, 'y_center': 0.5784722222222223, 'width': 0.028125, 'height': 0.0375}]"
|
| 17 |
+
data/test/images/frame_10070.png,"[{'class_id': 1, 'x_center': 0.3120449509338398, 'y_center': 0.6585505258344765, 'width': 0.05737575182019625, 'height': 0.6828989483310469}]"
|
| 18 |
+
data/test/images/frame_10078.png,"[{'class_id': 1, 'x_center': 0.391015625, 'y_center': 0.8076388888888889, 'width': 0.03411458333333333, 'height': 0.13657407407407407}]"
|
| 19 |
+
data/test/images/frame_10085.png,"[{'class_id': 1, 'x_center': 0.900390625, 'y_center': 0.4930555555555556, 'width': 0.08880208333333334, 'height': 0.019444444444444445}]"
|
| 20 |
+
data/test/images/frame_10091.png,"[{'class_id': 1, 'x_center': 0.8073757518201963, 'y_center': 0.33418495656149977, 'width': 0.3852484963596075, 'height': 0.6517032464563328}]"
|
| 21 |
+
data/test/images/frame_10096.png,"[{'class_id': 1, 'x_center': 0.975390625, 'y_center': 0.46412037037037035, 'width': 0.04921875, 'height': 0.024537037037037038}]"
|
| 22 |
+
data/test/images/frame_20007.png,"[{'class_id': 1, 'x_center': 0.23177083333333334, 'y_center': 0.7935185185185185, 'width': 0.08072916666666667, 'height': 0.412962962962963}]"
|
| 23 |
+
data/test/images/frame_20015.png,"[{'class_id': 1, 'x_center': 0.8765625, 'y_center': 0.46550925925925923, 'width': 0.246875, 'height': 0.027314814814814816}]"
|
| 24 |
+
data/test/images/frame_20019.png,"[{'class_id': 1, 'x_center': 0.5443167845408122, 'y_center': 0.26317638644465696, 'width': 0.18184448877970377, 'height': 0.5009360419379341}]"
|
| 25 |
+
data/test/images/frame_20038.png,"[{'class_id': 1, 'x_center': 0.6009114583333334, 'y_center': 0.36875, 'width': 0.5471354166666667, 'height': 0.26990740740740743}]"
|
| 26 |
+
data/test/images/frame_20039.png,"[{'class_id': 1, 'x_center': 0.6759114583333333, 'y_center': 0.12337962962962963, 'width': 0.15234375, 'height': 0.24675925925925926}]"
|
| 27 |
+
data/test/images/frame_20042.png,"[{'class_id': 1, 'x_center': 0.17278645833333334, 'y_center': 0.23287037037037037, 'width': 0.18203125, 'height': 0.46574074074074073}]"
|
| 28 |
+
data/test/images/frame_20045.png,"[{'class_id': 1, 'x_center': 0.11901041666666666, 'y_center': 0.6685185185185185, 'width': 0.23802083333333332, 'height': 0.07685185185185185}]"
|
| 29 |
+
data/test/images/frame_20049.png,"[{'class_id': 1, 'x_center': 0.4381510416666667, 'y_center': 0.7076388888888889, 'width': 0.02890625, 'height': 0.5847222222222223}]"
|
| 30 |
+
data/test/images/frame_20050.png,"[{'class_id': 1, 'x_center': 0.41780096689860025, 'y_center': 0.5852024502224392, 'width': 0.1117373784383138, 'height': 0.8081742463288484}]"
|
train.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
validation.csv
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
image,annotations
|
| 2 |
+
data/val/images/frame_0009.png,"[{'class_id': 0, 'x_center': 0.6937808275222779, 'y_center': 0.354193549686008, 'width': 0.02833390235900879, 'height': 0.0448444578382704}, {'class_id': 0, 'x_center': 0.7571054697036743, 'y_center': 0.323008484310574, 'width': 0.028785562515258788, 'height': 0.044076559278700085}, {'class_id': 0, 'x_center': 0.8723686695098877, 'y_center': 0.5650179968939887, 'width': 0.029430294036865236, 'height': 0.04281768798828125}, {'class_id': 0, 'x_center': 0.6766777753829956, 'y_center': 0.47658731672498916, 'width': 0.026691770553588866, 'height': 0.04201961093478733}, {'class_id': 0, 'x_center': 0.6567227840423584, 'y_center': 0.5190318213568793, 'width': 0.025377750396728516, 'height': 0.04251302083333333}, {'class_id': 0, 'x_center': 0.5912200450897217, 'y_center': 0.6106395085652669, 'width': 0.02568197250366211, 'height': 0.04180488586425781}]"
|
| 3 |
+
data/val/images/frame_0012.png,"[{'class_id': 0, 'x_center': 0.676171875, 'y_center': 0.24861111111111112, 'width': 0.02890625, 'height': 0.041666666666666664}, {'class_id': 0, 'x_center': 0.60703125, 'y_center': 0.36875, 'width': 0.0265625, 'height': 0.04027777777777778}, {'class_id': 0, 'x_center': 0.536328125, 'y_center': 0.32222222222222224, 'width': 0.02734375, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.6609375, 'y_center': 0.4097222222222222, 'width': 0.0265625, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.670703125, 'y_center': 0.4527777777777778, 'width': 0.02734375, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.594140625, 'y_center': 0.4895833333333333, 'width': 0.02578125, 'height': 0.0375}, {'class_id': 0, 'x_center': 0.351953125, 'y_center': 0.5208333333333334, 'width': 0.02265625, 'height': 0.03611111111111111}, {'class_id': 0, 'x_center': 0.40234375, 'y_center': 0.6840277777777778, 'width': 0.0265625, 'height': 0.04027777777777778}, {'class_id': 0, 'x_center': 0.783984375, 'y_center': 0.5138888888888888, 'width': 0.02265625, 'height': 0.03333333333333333}, {'class_id': 0, 'x_center': 0.83359375, 'y_center': 0.6013888888888889, 'width': 0.028125, 'height': 0.03888888888888889}]"
|
| 4 |
+
data/val/images/frame_0020.png,"[{'class_id': 0, 'x_center': 0.6488117456436158, 'y_center': 0.21477985382080078, 'width': 0.025571584701538086, 'height': 0.045364125569661455}, {'class_id': 0, 'x_center': 0.8345794200897216, 'y_center': 0.5998819986979167, 'width': 0.02898378372192383, 'height': 0.04252794053819445}, {'class_id': 0, 'x_center': 0.4409690618515015, 'y_center': 0.28899850845336916, 'width': 0.02328972816467285, 'height': 0.04237049950493706}, {'class_id': 0, 'x_center': 0.6018993854522705, 'y_center': 0.3696354230244954, 'width': 0.02494468688964844, 'height': 0.044479052225748696}, {'class_id': 0, 'x_center': 0.6001032590866089, 'y_center': 0.47492457495795354, 'width': 0.02478489875793457, 'height': 0.0438881344265408}, {'class_id': 0, 'x_center': 0.7381095886230469, 'y_center': 0.3019130918714735, 'width': 0.028829097747802734, 'height': 0.043420494927300345}, {'class_id': 0, 'x_center': 0.5762506008148194, 'y_center': 0.4190025965372721, 'width': 0.023705387115478517, 'height': 0.04202876620822483}, {'class_id': 0, 'x_center': 0.569921875, 'y_center': 0.49444444444444446, 'width': 0.02578125, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.586328125, 'y_center': 0.56875, 'width': 0.02578125, 'height': 0.04027777777777778}, {'class_id': 0, 'x_center': 0.40390625, 'y_center': 0.6840277777777778, 'width': 0.0265625, 'height': 0.04027777777777778}, {'class_id': 0, 'x_center': 0.3375, 'y_center': 0.51875, 'width': 0.0234375, 'height': 0.0375}]"
|
| 5 |
+
data/val/images/frame_0032.png,"[{'class_id': 0, 'x_center': 0.6018564701080322, 'y_center': 0.36976758109198676, 'width': 0.02506875991821289, 'height': 0.04458094702826606}, {'class_id': 0, 'x_center': 0.6489054679870605, 'y_center': 0.2147029134962294, 'width': 0.02531719207763672, 'height': 0.04518697526719835}, {'class_id': 0, 'x_center': 0.355701744556427, 'y_center': 0.3498653835720486, 'width': 0.025204062461853027, 'height': 0.04481048583984375}, {'class_id': 0, 'x_center': 0.8346638679504395, 'y_center': 0.6001144621107314, 'width': 0.02866668701171875, 'height': 0.042036141289605033}, {'class_id': 0, 'x_center': 0.4408817529678345, 'y_center': 0.2890035841200087, 'width': 0.02317662239074707, 'height': 0.042530526055230035}, {'class_id': 0, 'x_center': 0.5542958498001098, 'y_center': 0.5646972232394748, 'width': 0.02556500434875488, 'height': 0.04392946031358507}, {'class_id': 0, 'x_center': 0.5877323150634766, 'y_center': 0.5662723753187392, 'width': 0.026464271545410156, 'height': 0.04356337653266059}, {'class_id': 0, 'x_center': 0.7385376691818237, 'y_center': 0.30223345226711695, 'width': 0.02829766273498535, 'height': 0.043030272589789496}, {'class_id': 0, 'x_center': 0.3375, 'y_center': 0.51875, 'width': 0.0234375, 'height': 0.0375}, {'class_id': 0, 'x_center': 0.4046875, 'y_center': 0.6847222222222222, 'width': 0.0234375, 'height': 0.03888888888888889}]"
|
| 6 |
+
data/val/images/frame_0036.png,"[{'class_id': 0, 'x_center': 0.6488205432891846, 'y_center': 0.21470281812879774, 'width': 0.025535106658935547, 'height': 0.04558529324001736}, {'class_id': 0, 'x_center': 0.6018653392791748, 'y_center': 0.3696492830912272, 'width': 0.025094032287597656, 'height': 0.044729889763726126}, {'class_id': 0, 'x_center': 0.35591896772384646, 'y_center': 0.35005415810479057, 'width': 0.02527177333831787, 'height': 0.04497547149658203}, {'class_id': 0, 'x_center': 0.834627914428711, 'y_center': 0.6001593483818902, 'width': 0.028802108764648438, 'height': 0.04203953213161892}, {'class_id': 0, 'x_center': 0.4407372951507568, 'y_center': 0.2889972898695204, 'width': 0.023425960540771486, 'height': 0.04252548217773437}, {'class_id': 0, 'x_center': 0.5542417764663696, 'y_center': 0.5646736780802409, 'width': 0.025657796859741212, 'height': 0.04398858812120226}, {'class_id': 0, 'x_center': 0.7383199214935303, 'y_center': 0.302266894446479, 'width': 0.028618907928466795, 'height': 0.04321871863471137}, {'class_id': 0, 'x_center': 0.5875219583511353, 'y_center': 0.5662189695570204, 'width': 0.026697397232055664, 'height': 0.043735970391167535}, {'class_id': 0, 'x_center': 0.337109375, 'y_center': 0.5194444444444445, 'width': 0.02265625, 'height': 0.03611111111111111}, {'class_id': 0, 'x_center': 0.404296875, 'y_center': 0.6847222222222222, 'width': 0.02578125, 'height': 0.03888888888888889}, {'class_id': 1, 'x_center': 0.171875, 'y_center': 0.4076388888888889, 'width': 0.34375, 'height': 0.10972222222222222}]"
|
| 7 |
+
data/val/images/frame_0040.png,"[{'class_id': 0, 'x_center': 0.6488864898681641, 'y_center': 0.21473352644178603, 'width': 0.02560005187988281, 'height': 0.04564408196343316}, {'class_id': 0, 'x_center': 0.75813729763031, 'y_center': 0.6956935458713107, 'width': 0.027692174911499022, 'height': 0.045654296875}, {'class_id': 0, 'x_center': 0.9117970943450928, 'y_center': 0.47237623002794055, 'width': 0.030759525299072266, 'height': 0.04599978129069011}, {'class_id': 0, 'x_center': 0.5541366338729858, 'y_center': 0.564710447523329, 'width': 0.02569117546081543, 'height': 0.04419826931423611}, {'class_id': 0, 'x_center': 0.8346117973327637, 'y_center': 0.6000639809502496, 'width': 0.02877178192138672, 'height': 0.04215439690483941}, {'class_id': 0, 'x_center': 0.5876107215881348, 'y_center': 0.5663557052612305, 'width': 0.02671184539794922, 'height': 0.04392958747016059}, {'class_id': 0, 'x_center': 0.3375, 'y_center': 0.51875, 'width': 0.0234375, 'height': 0.0375}, {'class_id': 0, 'x_center': 0.403515625, 'y_center': 0.6847222222222222, 'width': 0.02734375, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.816796875, 'y_center': 0.1326388888888889, 'width': 0.02890625, 'height': 0.04027777777777778}]"
|
| 8 |
+
data/val/images/frame_0044.png,"[{'class_id': 0, 'x_center': 0.7695020914077759, 'y_center': 0.7140475379096137, 'width': 0.027673006057739258, 'height': 0.045215606689453125}, {'class_id': 0, 'x_center': 0.6488230705261231, 'y_center': 0.21476448906792533, 'width': 0.02575397491455078, 'height': 0.04569507175021702}, {'class_id': 0, 'x_center': 0.834846019744873, 'y_center': 0.600161255730523, 'width': 0.028387069702148438, 'height': 0.042058096991644964}, {'class_id': 0, 'x_center': 0.554142427444458, 'y_center': 0.5646705627441406, 'width': 0.025751209259033202, 'height': 0.0442596435546875}, {'class_id': 0, 'x_center': 0.5875102758407593, 'y_center': 0.5663625081380208, 'width': 0.026897573471069337, 'height': 0.043962860107421876}, {'class_id': 0, 'x_center': 0.81796875, 'y_center': 0.13194444444444445, 'width': 0.0296875, 'height': 0.041666666666666664}, {'class_id': 0, 'x_center': 0.928125, 'y_center': 0.48819444444444443, 'width': 0.03125, 'height': 0.04027777777777778}, {'class_id': 0, 'x_center': 0.405078125, 'y_center': 0.6847222222222222, 'width': 0.02265625, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.3375, 'y_center': 0.51875, 'width': 0.0234375, 'height': 0.0375}]"
|
| 9 |
+
data/val/images/frame_0045.png,"[{'class_id': 0, 'x_center': 0.7694574594497681, 'y_center': 0.7138445324367947, 'width': 0.027683496475219727, 'height': 0.04526354471842448}, {'class_id': 0, 'x_center': 0.6488996267318725, 'y_center': 0.21473681131998698, 'width': 0.02570796012878418, 'height': 0.045794635348849824}, {'class_id': 0, 'x_center': 0.8347180843353271, 'y_center': 0.6001097573174371, 'width': 0.028804492950439454, 'height': 0.042709138658311635}, {'class_id': 0, 'x_center': 0.5541871547698974, 'y_center': 0.5646544138590495, 'width': 0.02572774887084961, 'height': 0.04429355197482639}, {'class_id': 0, 'x_center': 0.5875674486160278, 'y_center': 0.5662605073716905, 'width': 0.02693209648132324, 'height': 0.044062508477105036}, {'class_id': 0, 'x_center': 0.81796875, 'y_center': 0.13194444444444445, 'width': 0.0296875, 'height': 0.041666666666666664}, {'class_id': 0, 'x_center': 0.928125, 'y_center': 0.48819444444444443, 'width': 0.03125, 'height': 0.04027777777777778}, {'class_id': 0, 'x_center': 0.403125, 'y_center': 0.6819444444444445, 'width': 0.028125, 'height': 0.044444444444444446}, {'class_id': 0, 'x_center': 0.3375, 'y_center': 0.51875, 'width': 0.0234375, 'height': 0.0375}]"
|
| 10 |
+
data/val/images/frame_0047.png,"[{'class_id': 0, 'x_center': 0.7694100856781005, 'y_center': 0.7140223185221354, 'width': 0.027806758880615234, 'height': 0.04549679226345486}, {'class_id': 0, 'x_center': 0.6488263130187988, 'y_center': 0.21469902462429472, 'width': 0.025767707824707033, 'height': 0.04556024339463976}, {'class_id': 0, 'x_center': 0.8344990730285644, 'y_center': 0.6001610226101346, 'width': 0.029061126708984374, 'height': 0.04231228298611111}, {'class_id': 0, 'x_center': 0.5541791915893555, 'y_center': 0.5646595848931206, 'width': 0.025699520111083986, 'height': 0.04426278008355035}, {'class_id': 0, 'x_center': 0.9283771514892578, 'y_center': 0.48614684210883247, 'width': 0.02999401092529297, 'height': 0.044833204481336805}, {'class_id': 0, 'x_center': 0.5875287055969238, 'y_center': 0.5663243611653646, 'width': 0.026853656768798827, 'height': 0.04387546115451389}, {'class_id': 0, 'x_center': 0.81796875, 'y_center': 0.13194444444444445, 'width': 0.0296875, 'height': 0.041666666666666664}, {'class_id': 0, 'x_center': 0.337109375, 'y_center': 0.51875, 'width': 0.02265625, 'height': 0.0375}, {'class_id': 0, 'x_center': 0.405078125, 'y_center': 0.6847222222222222, 'width': 0.02265625, 'height': 0.03888888888888889}]"
|
| 11 |
+
data/val/images/frame_0048.png,"[{'class_id': 0, 'x_center': 0.769324779510498, 'y_center': 0.7138969421386718, 'width': 0.027964115142822266, 'height': 0.04559139675564236}, {'class_id': 0, 'x_center': 0.6488523960113526, 'y_center': 0.21468264261881512, 'width': 0.025867366790771486, 'height': 0.04580641852484809}, {'class_id': 0, 'x_center': 0.8346670150756836, 'y_center': 0.6001681645711263, 'width': 0.02868995666503906, 'height': 0.042191272311740455}, {'class_id': 0, 'x_center': 0.554194974899292, 'y_center': 0.5646600087483724, 'width': 0.025816917419433594, 'height': 0.04455769856770833}, {'class_id': 0, 'x_center': 0.9283674716949463, 'y_center': 0.48627789815266925, 'width': 0.030015850067138673, 'height': 0.045251549614800345}, {'class_id': 0, 'x_center': 0.3372711896896362, 'y_center': 0.5171976301405165, 'width': 0.023322153091430663, 'height': 0.04049775865342882}, {'class_id': 0, 'x_center': 0.5876214504241943, 'y_center': 0.5661653306749131, 'width': 0.026767253875732422, 'height': 0.04354799058702257}, {'class_id': 0, 'x_center': 0.403515625, 'y_center': 0.6833333333333333, 'width': 0.02734375, 'height': 0.041666666666666664}, {'class_id': 0, 'x_center': 0.81796875, 'y_center': 0.13194444444444445, 'width': 0.0296875, 'height': 0.041666666666666664}, {'class_id': 1, 'x_center': 0.927734375, 'y_center': 0.7387695041368204, 'width': 0.14453125, 'height': 0.05367686527106817}]"
|
| 12 |
+
data/val/images/frame_0052.png,"[{'class_id': 0, 'x_center': 0.6487894773483276, 'y_center': 0.2146861712137858, 'width': 0.02587733268737793, 'height': 0.04592041439480252}, {'class_id': 0, 'x_center': 0.8346054553985596, 'y_center': 0.6000990337795682, 'width': 0.029019260406494142, 'height': 0.042359712388780384}, {'class_id': 0, 'x_center': 0.5541069984436036, 'y_center': 0.5646366331312391, 'width': 0.02572917938232422, 'height': 0.044478056165907116}, {'class_id': 0, 'x_center': 0.9282368659973145, 'y_center': 0.48626912434895836, 'width': 0.030307579040527343, 'height': 0.04524264865451389}, {'class_id': 0, 'x_center': 0.4827083110809326, 'y_center': 0.6791780047946506, 'width': 0.035306262969970706, 'height': 0.0469673580593533}, {'class_id': 0, 'x_center': 0.58740234375, 'y_center': 0.5661929872300889, 'width': 0.027012348175048828, 'height': 0.043900256686740455}, {'class_id': 0, 'x_center': 0.81796875, 'y_center': 0.13194444444444445, 'width': 0.0296875, 'height': 0.041666666666666664}, {'class_id': 0, 'x_center': 0.337109375, 'y_center': 0.51875, 'width': 0.02265625, 'height': 0.0375}, {'class_id': 0, 'x_center': 0.4046875, 'y_center': 0.6847222222222222, 'width': 0.0234375, 'height': 0.03888888888888889}, {'class_id': 1, 'x_center': 0.86796875, 'y_center': 0.7305555555555555, 'width': 0.2640625, 'height': 0.041666666666666664}]"
|
| 13 |
+
data/val/images/frame_10001.png,"[{'class_id': 0, 'x_center': 0.7363556385040283, 'y_center': 0.7878860897488065, 'width': 0.02767038345336914, 'height': 0.047172292073567705}, {'class_id': 0, 'x_center': 0.6508192300796509, 'y_center': 0.4168270111083984, 'width': 0.028943777084350586, 'height': 0.043825191921657985}, {'class_id': 0, 'x_center': 0.7262613296508789, 'y_center': 0.49888490041097006, 'width': 0.0267730712890625, 'height': 0.044062762790256074}, {'class_id': 0, 'x_center': 0.7931729555130005, 'y_center': 0.3930702421400282, 'width': 0.0255338191986084, 'height': 0.039908811781141494}, {'class_id': 0, 'x_center': 0.7481948614120484, 'y_center': 0.5773602803548177, 'width': 0.027931070327758788, 'height': 0.04283667670355903}, {'class_id': 0, 'x_center': 0.682908010482788, 'y_center': 0.2606792661878798, 'width': 0.02640542984008789, 'height': 0.04336217244466146}, {'class_id': 0, 'x_center': 0.2745089530944824, 'y_center': 0.3806881586710612, 'width': 0.024483299255371092, 'height': 0.04130134582519531}, {'class_id': 0, 'x_center': 0.5297539234161377, 'y_center': 0.5585927963256836, 'width': 0.028400707244873046, 'height': 0.04430792066786024}, {'class_id': 0, 'x_center': 0.616043496131897, 'y_center': 0.3603548367818197, 'width': 0.028134679794311522, 'height': 0.04445425669352213}, {'class_id': 0, 'x_center': 0.7631280422210693, 'y_center': 0.14564654562208387, 'width': 0.02886810302734375, 'height': 0.046801683637830944}, {'class_id': 0, 'x_center': 0.536328125, 'y_center': 0.5138888888888888, 'width': 0.02734375, 'height': 0.03611111111111111}, {'class_id': 0, 'x_center': 0.789453125, 'y_center': 0.14583333333333334, 'width': 0.02578125, 'height': 0.041666666666666664}, {'class_id': 1, 'x_center': 0.87109375, 'y_center': 0.37569444444444466, 'width': 0.2578125, 'height': 0.7513888888888893}]"
|
| 14 |
+
data/val/images/frame_10017.png,"[{'class_id': 0, 'x_center': 0.7365669727325439, 'y_center': 0.7876999749077691, 'width': 0.027036190032958984, 'height': 0.04719136555989583}, {'class_id': 0, 'x_center': 0.6509646654129029, 'y_center': 0.4167572021484375, 'width': 0.02856764793395996, 'height': 0.043494330512152776}, {'class_id': 0, 'x_center': 0.7930673599243164, 'y_center': 0.39306685129801433, 'width': 0.025809288024902344, 'height': 0.04022577073838976}, {'class_id': 0, 'x_center': 0.7484142065048218, 'y_center': 0.5772797478569879, 'width': 0.027686929702758788, 'height': 0.04257168240017361}, {'class_id': 0, 'x_center': 0.7259984016418457, 'y_center': 0.4987529754638672, 'width': 0.027345848083496094, 'height': 0.04432898627387153}, {'class_id': 0, 'x_center': 0.6827762126922607, 'y_center': 0.26070437961154513, 'width': 0.026497936248779295, 'height': 0.04345838758680556}, {'class_id': 0, 'x_center': 0.6158575296401978, 'y_center': 0.3602238655090332, 'width': 0.028196001052856447, 'height': 0.04462863074408637}, {'class_id': 0, 'x_center': 0.5296615362167358, 'y_center': 0.5586029900444879, 'width': 0.0286653995513916, 'height': 0.04458652072482639}, {'class_id': 0, 'x_center': 0.789453125, 'y_center': 0.14583333333333334, 'width': 0.02578125, 'height': 0.041666666666666664}, {'class_id': 0, 'x_center': 0.763671875, 'y_center': 0.14791666666666667, 'width': 0.02890625, 'height': 0.04027777777777778}, {'class_id': 0, 'x_center': 0.536328125, 'y_center': 0.5138888888888888, 'width': 0.02734375, 'height': 0.03611111111111111}, {'class_id': 0, 'x_center': 0.275, 'y_center': 0.3819444444444444, 'width': 0.0234375, 'height': 0.03611111111111111}]"
|
| 15 |
+
data/val/images/frame_10018.png,"[{'class_id': 0, 'x_center': 0.748160719871521, 'y_center': 0.5774027718438043, 'width': 0.0282381534576416, 'height': 0.043297025892469615}, {'class_id': 0, 'x_center': 0.65093092918396, 'y_center': 0.41675018734402125, 'width': 0.028658008575439452, 'height': 0.043748262193467884}, {'class_id': 0, 'x_center': 0.7929439544677734, 'y_center': 0.3931138568454319, 'width': 0.025870704650878908, 'height': 0.04052738613552517}, {'class_id': 0, 'x_center': 0.7260947227478027, 'y_center': 0.49885946909586587, 'width': 0.027038002014160158, 'height': 0.04422399732801649}, {'class_id': 0, 'x_center': 0.7365654468536377, 'y_center': 0.7878594292534722, 'width': 0.027477741241455078, 'height': 0.04736548529730903}, {'class_id': 0, 'x_center': 0.6826038837432862, 'y_center': 0.26073926289876304, 'width': 0.02705860137939453, 'height': 0.043794335259331595}, {'class_id': 0, 'x_center': 0.5297080278396606, 'y_center': 0.5586814244588216, 'width': 0.028507471084594727, 'height': 0.04488512674967448}, {'class_id': 0, 'x_center': 0.763671875, 'y_center': 0.14791666666666667, 'width': 0.02890625, 'height': 0.04027777777777778}, {'class_id': 0, 'x_center': 0.78984375, 'y_center': 0.14583333333333334, 'width': 0.025, 'height': 0.041666666666666664}, {'class_id': 0, 'x_center': 0.61640625, 'y_center': 0.3625, 'width': 0.028125, 'height': 0.03888888888888889}, {'class_id': 0, 'x_center': 0.536328125, 'y_center': 0.5138888888888888, 'width': 0.02734375, 'height': 0.03611111111111111}, {'class_id': 0, 'x_center': 0.275, 'y_center': 0.3819444444444444, 'width': 0.0234375, 'height': 0.03611111111111111}, {'class_id': 1, 'x_center': 0.8472846909878393, 'y_center': 0.9001067753160455, 'width': 0.19456938197567872, 'height': 0.19743577285431335}]"
|
| 16 |
+
data/val/images/frame_10024.png,"[{'class_id': 0, 'x_center': 0.27142173051834106, 'y_center': 0.562340439690484, 'width': 0.0257307767868042, 'height': 0.044349458482530385}, {'class_id': 0, 'x_center': 0.7927580356597901, 'y_center': 0.39313693576388886, 'width': 0.026239490509033202, 'height': 0.04076665242513021}, {'class_id': 0, 'x_center': 0.6507656097412109, 'y_center': 0.4167759153578017, 'width': 0.028853893280029297, 'height': 0.043915006849500865}, {'class_id': 0, 'x_center': 0.7260648012161255, 'y_center': 0.49872603946261934, 'width': 0.02707505226135254, 'height': 0.044518068101671006}, {'class_id': 0, 'x_center': 0.6828576326370239, 'y_center': 0.2607732348971897, 'width': 0.026346826553344728, 'height': 0.04350323147243924}, {'class_id': 0, 'x_center': 0.7484749317169189, 'y_center': 0.5773844824896919, 'width': 0.027720928192138672, 'height': 0.0426316155327691}, {'class_id': 0, 'x_center': 0.2744242548942566, 'y_center': 0.3808636983235677, 'width': 0.024310994148254394, 'height': 0.04090991550021701}, {'class_id': 0, 'x_center': 0.5374426364898681, 'y_center': 0.5118862999810113, 'width': 0.02500143051147461, 'height': 0.042003970675998266}, {'class_id': 0, 'x_center': 0.6159487962722778, 'y_center': 0.3601207733154297, 'width': 0.028284406661987303, 'height': 0.044866519504123265}, {'class_id': 0, 'x_center': 0.1122039020061493, 'y_center': 0.2939082039727105, 'width': 0.022967302799224855, 'height': 0.038201861911349826}, {'class_id': 0, 'x_center': 0.7630171060562134, 'y_center': 0.14560413360595703, 'width': 0.028789854049682616, 'height': 0.04677675035264757}, {'class_id': 0, 'x_center': 0.7898460626602173, 'y_center': 0.14419480429755316, 'width': 0.026139593124389647, 'height': 0.04589093526204427}, {'class_id': 1, 'x_center': 0.307421875, 'y_center': 0.8402777777777778, 'width': 0.26015625, 'height': 0.3194444444444444}]"
|
| 17 |
+
data/val/images/frame_10031.png,"[{'class_id': 0, 'x_center': 0.3878002166748047, 'y_center': 0.18970025910271537, 'width': 0.025597667694091795, 'height': 0.047604232364230684}, {'class_id': 0, 'x_center': 0.7929075241088868, 'y_center': 0.39310813479953344, 'width': 0.025836372375488283, 'height': 0.04031689961751302}, {'class_id': 0, 'x_center': 0.7260948419570923, 'y_center': 0.49877406226264104, 'width': 0.02706122398376465, 'height': 0.044437281290690106}, {'class_id': 0, 'x_center': 0.6508870124816895, 'y_center': 0.41679617563883464, 'width': 0.028657913208007812, 'height': 0.043783950805664065}, {'class_id': 0, 'x_center': 0.7483644008636474, 'y_center': 0.5774194717407226, 'width': 0.028250789642333983, 'height': 0.04371630350748698}, {'class_id': 0, 'x_center': 0.6826398372650146, 'y_center': 0.26076591279771594, 'width': 0.0268402099609375, 'height': 0.044161076015896264}, {'class_id': 0, 'x_center': 0.5377460479736328, 'y_center': 0.5118983798556858, 'width': 0.024385452270507812, 'height': 0.04165666368272569}, {'class_id': 0, 'x_center': 0.6159712553024292, 'y_center': 0.3602703200446235, 'width': 0.028325319290161133, 'height': 0.04465414683024089}, {'class_id': 0, 'x_center': 0.7629075527191163, 'y_center': 0.14567532009548612, 'width': 0.02882375717163086, 'height': 0.04638807508680556}, {'class_id': 0, 'x_center': 0.346484375, 'y_center': 0.4618055555555556, 'width': 0.02265625, 'height': 0.0375}, {'class_id': 0, 'x_center': 0.789453125, 'y_center': 0.14583333333333334, 'width': 0.02578125, 'height': 0.041666666666666664}, {'class_id': 0, 'x_center': 0.054910044977511306, 'y_center': 0.1094545319932627, 'width': 0.03227552890221555, 'height': 0.04997501249375312}, {'class_id': 1, 'x_center': 0.3046875, 'y_center': 0.84375, 'width': 0.234375, 'height': 0.3125}]"
|
| 18 |
+
data/val/images/frame_10033.png,"[{'class_id': 0, 'x_center': 0.7928676605224609, 'y_center': 0.3930650922987196, 'width': 0.026093482971191406, 'height': 0.04035305447048611}, {'class_id': 0, 'x_center': 0.7260701656341553, 'y_center': 0.49876249101426867, 'width': 0.02700834274291992, 'height': 0.044267569647894967}, {'class_id': 0, 'x_center': 0.6509052038192749, 'y_center': 0.4167124430338542, 'width': 0.02863631248474121, 'height': 0.04374457465277778}, {'class_id': 0, 'x_center': 0.7483212232589722, 'y_center': 0.5773626539442275, 'width': 0.02837071418762207, 'height': 0.04373779296875}, {'class_id': 0, 'x_center': 0.473832106590271, 'y_center': 0.10834933386908638, 'width': 0.025029420852661133, 'height': 0.04709114498562283}, {'class_id': 0, 'x_center': 0.6827984571456909, 'y_center': 0.260703976949056, 'width': 0.02645077705383301, 'height': 0.04340345594618056}, {'class_id': 0, 'x_center': 0.3642745614051819, 'y_center': 0.4733215543958876, 'width': 0.023682236671447754, 'height': 0.04041964213053385}, {'class_id': 0, 'x_center': 0.5377158641815185, 'y_center': 0.511890771653917, 'width': 0.02432394027709961, 'height': 0.041790813869900176}, {'class_id': 0, 'x_center': 0.6158058643341064, 'y_center': 0.360326968299018, 'width': 0.028265666961669923, 'height': 0.0445232179429796}, {'class_id': 0, 'x_center': 0.7631139755249023, 'y_center': 0.14559319814046223, 'width': 0.028560829162597657, 'height': 0.04623215993245443}, {'class_id': 0, 'x_center': 0.789793872833252, 'y_center': 0.14412825902303059, 'width': 0.02590179443359375, 'height': 0.04558832380506728}]"
|
| 19 |
+
data/val/images/frame_10041.png,"[{'class_id': 0, 'x_center': 0.849960470199585, 'y_center': 0.12411221398247613, 'width': 0.028853893280029297, 'height': 0.04796846177842882}, {'class_id': 0, 'x_center': 0.9103406429290771, 'y_center': 0.4268423504299588, 'width': 0.03126039505004883, 'height': 0.04365289476182726}, {'class_id': 0, 'x_center': 0.7482687473297119, 'y_center': 0.5772037506103516, 'width': 0.028262615203857422, 'height': 0.04326900906032986}, {'class_id': 0, 'x_center': 0.7260885953903198, 'y_center': 0.49875581529405383, 'width': 0.027313852310180665, 'height': 0.044458262125651044}, {'class_id': 0, 'x_center': 0.6508300304412842, 'y_center': 0.4167080561319987, 'width': 0.02881593704223633, 'height': 0.04391356574164496}, {'class_id': 0, 'x_center': 0.6826581954956055, 'y_center': 0.2606655120849609, 'width': 0.02708263397216797, 'height': 0.044295586480034725}, {'class_id': 0, 'x_center': 0.3641258478164673, 'y_center': 0.47314444647894965, 'width': 0.023623180389404298, 'height': 0.04030371771918403}, {'class_id': 0, 'x_center': 0.6159367561340332, 'y_center': 0.3602266523573134, 'width': 0.028427314758300782, 'height': 0.044603051079644095}, {'class_id': 0, 'x_center': 0.5376108884811401, 'y_center': 0.5118689219156901, 'width': 0.02514348030090332, 'height': 0.04280276828342014}, {'class_id': 0, 'x_center': 0.7631948471069336, 'y_center': 0.1455109437306722, 'width': 0.02852773666381836, 'height': 0.04650025897555881}, {'class_id': 0, 'x_center': 0.789453125, 'y_center': 0.14583333333333334, 'width': 0.02578125, 'height': 0.041666666666666664}]"
|
| 20 |
+
data/val/images/frame_10042.png,"[{'class_id': 0, 'x_center': 0.8608681201934815, 'y_center': 0.1650691827138265, 'width': 0.02928171157836914, 'height': 0.04655582639906142}, {'class_id': 0, 'x_center': 0.7483232498168946, 'y_center': 0.577354621887207, 'width': 0.02861642837524414, 'height': 0.04395484924316406}, {'class_id': 0, 'x_center': 0.6507994651794433, 'y_center': 0.41676849789089626, 'width': 0.02896270751953125, 'height': 0.044030549791124134}, {'class_id': 0, 'x_center': 0.7260903120040894, 'y_center': 0.4987412558661567, 'width': 0.02731490135192871, 'height': 0.044498570760091144}, {'class_id': 0, 'x_center': 0.887388038635254, 'y_center': 0.4330036163330078, 'width': 0.030682373046875, 'height': 0.04459720187717014}, {'class_id': 0, 'x_center': 0.6827246665954589, 'y_center': 0.26062083774142797, 'width': 0.027066802978515624, 'height': 0.044230821397569446}, {'class_id': 0, 'x_center': 0.3641302824020386, 'y_center': 0.4731790542602539, 'width': 0.023853349685668945, 'height': 0.04066717359754774}, {'class_id': 0, 'x_center': 0.537643313407898, 'y_center': 0.5119226455688477, 'width': 0.024878168106079103, 'height': 0.042441601223415795}, {'class_id': 0, 'x_center': 0.6159826993942261, 'y_center': 0.3602114783393012, 'width': 0.028409719467163086, 'height': 0.04474334716796875}, {'class_id': 0, 'x_center': 0.7631233930587769, 'y_center': 0.14552157719930012, 'width': 0.02863965034484863, 'height': 0.04667646620008681}, {'class_id': 0, 'x_center': 0.789453125, 'y_center': 0.14583333333333334, 'width': 0.02578125, 'height': 0.041666666666666664}, {'class_id': 1, 'x_center': 0.9453125, 'y_center': 0.07569444444444444, 'width': 0.109375, 'height': 0.05694444444444444}]"
|
| 21 |
+
data/val/images/frame_10058.png,"[{'class_id': 0, 'x_center': 0.758681344985962, 'y_center': 0.2108617040846083, 'width': 0.027448177337646484, 'height': 0.04497161441379123}, {'class_id': 0, 'x_center': 0.55820631980896, 'y_center': 0.5007332060072157, 'width': 0.02497415542602539, 'height': 0.04381311204698351}, {'class_id': 0, 'x_center': 0.6401997804641724, 'y_center': 0.38562950558132597, 'width': 0.02816882133483887, 'height': 0.0448921627468533}, {'class_id': 0, 'x_center': 0.748738169670105, 'y_center': 0.5773923450046116, 'width': 0.02726016044616699, 'height': 0.04276118808322483}, {'class_id': 0, 'x_center': 0.36434086561203005, 'y_center': 0.4731428146362305, 'width': 0.023279738426208497, 'height': 0.03998951382107205}, {'class_id': 0, 'x_center': 0.6826072454452514, 'y_center': 0.2607001092698839, 'width': 0.026921987533569336, 'height': 0.043999968634711374}, {'class_id': 0, 'x_center': 0.7222845077514648, 'y_center': 0.5311871846516927, 'width': 0.027109718322753905, 'height': 0.043958282470703124}, {'class_id': 0, 'x_center': 0.5811268568038941, 'y_center': 0.21532041761610243, 'width': 0.02775111198425293, 'height': 0.04461216396755642}, {'class_id': 0, 'x_center': 0.6157434701919555, 'y_center': 0.3603543281555176, 'width': 0.028037214279174806, 'height': 0.04457047780354818}, {'class_id': 0, 'x_center': 0.5329241037368775, 'y_center': 0.5144512600368923, 'width': 0.02635979652404785, 'height': 0.04322111341688368}]"
|
| 22 |
+
data/val/images/frame_10081.png,"[{'class_id': 1, 'x_center': 0.6911068821225071, 'y_center': 0.8431168882557771, 'width': 0.06294293091168086, 'height': 0.20012266540044318}]"
|
| 23 |
+
data/val/images/frame_10089.png,"[{'class_id': 1, 'x_center': 0.6969738000553973, 'y_center': 0.3820191868031374, 'width': 0.33261489988920545, 'height': 0.43996429953220073}]"
|
| 24 |
+
data/val/images/frame_10094.png,"[{'class_id': 1, 'x_center': 0.8115885416666667, 'y_center': 0.15486111111111112, 'width': 0.34765625, 'height': 0.08472222222222223}]"
|
| 25 |
+
data/val/images/frame_20021.png,"[{'class_id': 1, 'x_center': 0.5284905231085787, 'y_center': 0.10227392634800046, 'width': 0.22989771288382396, 'height': 0.20454785269600093}]"
|
| 26 |
+
data/val/images/frame_20035.png,"[{'class_id': 1, 'x_center': 0.9256510416666667, 'y_center': 0.4233796296296296, 'width': 0.13359375, 'height': 0.04212962962962963}]"
|
| 27 |
+
data/val/images/frame_20041.png,"[{'class_id': 1, 'x_center': 0.2513020833333333, 'y_center': 0.2462962962962963, 'width': 0.10677083333333333, 'height': 0.4925925925925926}]"
|
| 28 |
+
data/val/images/frame_20043.png,"[{'class_id': 1, 'x_center': 0.17757240136464436, 'y_center': 0.5083759449146412, 'width': 0.3483057657877604, 'height': 0.2390369556568287}]"
|
| 29 |
+
data/val/images/frame_20058.png,"[{'class_id': 1, 'x_center': 0.7679165204366049, 'y_center': 0.7297473766185619, 'width': 0.45902309417724607, 'height': 0.4607261940285012}]"
|
| 30 |
+
data/val/images/frame_20059.png,"[{'class_id': 1, 'x_center': 0.808984375, 'y_center': 0.6418981481481482, 'width': 0.37161458333333336, 'height': 0.04490740740740741}]"
|