I have a simply sequential model written in Python using TensorFlow library. As an input I have categorical and numerical columns and in output I'm getting float number.
I would like deploy my model in Windows Application (.NET) and I am wondering how to deal with data encoders (eg. label encoder, normalization encoder).
I seem to have at least two options:
- save the encoders somehow - how?
- add preprocessing layer in tf (I am personally for this option), but how? I am looking for a solution analogous to FeatureUnion/ColumnTransform from sklearn. Is it possible to use a preprocessing layer with the option of setting an encoder for each column separately? How?