Hey Robert,
I had a typo and it should be multi-class classification NOT multi-label.
I understand the part where I'm going to need to create a custom ExampleGen component by creating a custom executor to read the jpg images and labels as integers but am curious how to store multiple labels. For example, if I have a jpg image of a flower and would like to predict the color and shape of the flower I'll need two labels for that image. Can I simply create a custom executor (i.e. apache beam pipeline) to read the image and the labels as a list of integers when creating my custom ExampleGen component? This way, when the model makes predictions, it will predict a list of softmax scores for color and shape and I can compare the output of the model with the given labels. I'm curious if there's any code that does this for a similar multi-class classification problem so I can have a skeleton to follow.
Cheers