🤖Model Bilgileri

🌱 Genel Bilgi

🔎 Model adı

SSD Mobilenet V1 Quantized COCO

🔸 Tanıdığı nesneler

👨‍🔧 .config dosyası

🏷️ label_map dosyası

🤖 .tflite dosyası

👮‍♂️ Giriş Çıkış Bilgileri

👨‍💻 Elde etme scripti

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'])

🚪 Çıktı

📥 Giriş Bilgileri

# giriş boyutu
[  1 300 300   3]

# giriş türü 
<class 'numpy.uint8'>

📤 Çıkış Bilgileri

# çıkış boyutu
[ 1 10  4]

# çıkış türü
<class 'numpy.float32'>

Last updated