I'm trying to train a model using the Tensorflow lite model maker but i can't load the data. I'm using the object_detector.DataLoader.from_pascal_voc
method and I get an errorKey Error: pose
. Please help me!
Asked
Active
Viewed 341 times
0

Mr K.
- 1,064
- 3
- 19
- 22

Kerem-Uteu
- 23
- 6
1 Answers
1
If you are using object_detector.DataLoader.from_pascal_voc
method to load the data, then your XML data must follow the Pascal VOC format. For example,
<annotation>
<folder>Folder 1 Name</folder>
...
<object>
<name>Object 1 Name</object>
<pose>Unspecified</pose>
...
</object>
</annotation>
If you are not using pose
information, then you can annotate your data with Unspecified
.

Jared Junyoung Lim
- 180
- 5