Francesco Serianni
Francesco Serianni

Reputation: 3

Input and output in Tensorflow lite model

I've train a model that have in input this tensor: Input Shape: [ 1 50] Input Type: <class 'numpy.float32'>

and in output this tensor: Output Shape: [ 1 50 17] Output Type: <class 'numpy.float32'>

How can I create these in java? for using this on Android device?Thanks

Upvotes: 0

Views: 174

Answers (1)

Jae sung Chung
Jae sung Chung

Reputation: 903

There are some TensorFlow Lite language bindings including Java and Kotlin for Android application developments.

  • Official TensorFlow Lite Java API is available. For the details, check out this link.
  • The recent versions of Android Studio also deals with the TensorFlow Lite model files as the acceptable file assets.

Upvotes: 1

Related Questions