Tensorflow Object Detection API

前端 未结 2 1778
死守一世寂寞
死守一世寂寞 2021-02-08 03:43

I decided to take a dip into ML and with a lot of trial and error was able to create a model using TS\' inception.

To take this a step further, I want to use their Objec

2条回答
  •  情书的邮戳
    2021-02-08 04:13

    The training jobs in the Tensorflow Object Detection API expect to get TF Record files with certain fields populated with groundtruth data.

    You can either set up your data in the same format as the Pascal VOC or Oxford-IIIT examples, or you can just directly create the TFRecord files ignoring the XML formats.

    In the latter case, the create_pet_tf_record.py or create_pascal_tf_record.py scripts are likely to still be useful as a reference for which fields the API expects to see and what format they should take. Currently we do not provide a tool that creates these TFRecord files generally, so you will have to write your own.

提交回复
热议问题