👮♂️ Giriş Çıkış Bilgileri
import tensorflow as tf
interpreter = tf.lite.Interpreter(model_path="ssd_quant_v1_25.tflite")
interpreter.allocate_tensors()
# Print input shape and type
print(interpreter.get_input_details()[0]['shape'])
print(interpreter.get_input_details()[0]['dtype'])
# Print output shape and type
print(interpreter.get_output_details()[0]['shape'])
print(interpreter.get_output_details()[0]['dtype'])
# giriş boyutu
[ 1 300 300 3]
# giriş türü
<class 'numpy.uint8'>
# çıkış boyutu
[ 1 10 4]
# çıkış türü
<class 'numpy.float32'>