HamedMP / tensorflow_export_cpp_example

Tutorial for how to export your tensorflow models in python to C++

Home Page:https://medium.com/@hamedmp/exporting-trained-tensorflow-models-to-c-the-right-way-cf24b609d183

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Trainlabels csv

alfredeep opened this issue · comments

Dear HamedMP,

Thank you for your project and your explanation, really it is very interesting.
But I found a small problem when convert to TF records is in the file trainlabels.csv.
I made a file contains the path of my images and after space and then the class, but still does not consider this file.
I also made a file taking the class only 0..9 a..z and still without results.
here is an example :
./images/chiffres/0/1.jpg 0
./images/chiffres/0/2.jpg 0
./images/chiffres/1/1.jpg 1
.......
./images/chiffres/9/1.jpg 9
./images/chiffres/a/1.jpg a
.....
./images/chiffres/z/1.jpg z
....

What is the structure of your csv file?

Please help me because I was stuck in this step