Skip to content

Commit

Permalink
Merge pull request #63131 from tensorflow:LakshmiKalaKadali-patch-2
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 613440963
  • Loading branch information
tensorflower-gardener committed Mar 7, 2024
2 parents 8d92a38 + ba7a775 commit 51a4f0b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public class HelloTFLite : MonoBehaviour {
for (int i = 0; i < inputCount; i++) {
Debug.LogFormat("Input {0}: {1}", i, interpreter.GetInputTensorInfo(i));
}
for (int i = 0; i < inputCount; i++) {
for (int i = 0; i < outputCount; i++) {
Debug.LogFormat("Output {0}: {1}", i, interpreter.GetOutputTensorInfo(i));
}
}
Expand Down

0 comments on commit 51a4f0b

Please sign in to comment.