It's actually two separate questions:
-
Is nueropod designed to support tf.Example?
From the material I found, seems nueropod's design goal is: as long as model's input feature is a subset of the dataset's feature, Uber's production system can generate a single input and fed to any model for that dataset. And the single input's format has to be mapping from feature name to tensor value.
So seems encoded model input like tf.Example does not align with the design? Since encoded model input is not strictly a subset (encoded subset, but not subset) of the dataset's features.
-
Does nueropod support sparse tensor?
Seems nueropod's input spec is for dense tensor only (at least for TF's case), because TF's sparse tensor is actually three dense tensors: value, indices, dense_shape, but there seems no such support in nueropod.
Is it true that nueropod currently don't support sparse tensor, and is there any plan to support sparse tensor?
And if sparse tensor is not supported, how does nueropod deal with missing values?
It's actually two separate questions:
Is nueropod designed to support tf.Example?
From the material I found, seems nueropod's design goal is: as long as model's input feature is a subset of the dataset's feature, Uber's production system can generate a single input and fed to any model for that dataset. And the single input's format has to be mapping from feature name to tensor value.
So seems encoded model input like tf.Example does not align with the design? Since encoded model input is not strictly a subset (encoded subset, but not subset) of the dataset's features.
Does nueropod support sparse tensor?
Seems nueropod's input spec is for dense tensor only (at least for TF's case), because TF's sparse tensor is actually three dense tensors:
value,indices,dense_shape, but there seems no such support in nueropod.Is it true that nueropod currently don't support sparse tensor, and is there any plan to support sparse tensor?
And if sparse tensor is not supported, how does nueropod deal with missing values?