For the context see:
https://github.com/tensorflow/community/pull/124#issuecomment-532504587
Do you think that we are going to fragment the API user experience in TFlite? Or can we have a subset of Keras API available in TFlite?
I suppose that the main issues for a nice unified Keras (and Keras first policy in TF 2.0) developer/user experience is that Keras is a python API and on TFlite we could have targets without a python interpreter.
What do you think?
Is there any solution for unify the dev/user experience on TF Keras api?
[1]https://www.tensorflow.org/js/guide/layers_for_keras_users
--
You received this message because you are subscribed to the Google Groups "SIG Keras Meetings" group.
To unsubscribe from this group and stop receiving emails from it, send an email to keras-meeting...@tensorflow.org.
To view this discussion on the web visit https://groups.google.com/a/tensorflow.org/d/msgid/keras-meetings/ea8626ed-0068-4c4f-8594-bbb258baf3b8%40tensorflow.org.
# Python:
keras.layers.Dense(units=1, inputShape=[1])
// JavaScript:
tf.layers.dense({units: 1, inputShape: [1]});