🧐
Minik Kaşif
  • 🧐İÜCBK - Minik Kaşif
  • 🤸‍♀️ Ekip Detayı
  • 🐾Uygulama İlerleyişi
  • 🦋GitHub Kuralları
  • 💻Back-End
    • 🌱Genel
    • 👩‍⚖️ Kararlar
    • 🏗️ Veritabanı Şeması
    • 📖API Dokümanı
      • 📝Genel Notlar
      • 👤User Router
      • 📃Quiz Router
      • 📦Object Router
      • 🔔Tip Router
  • 📱Mobil
    • 🌱Genel
    • 👩‍⚖️ Kararlar
  • 👩‍🎨 Tasarım
    • 🌱Genel
    • ✨Arayüzler
  • 🤖Yapay Zeka
    • 🌱Genel
    • 👩‍⚖️ Kararlar
    • 🤖Model Bilgileri
Powered by GitBook
On this page
  • 🌱 Genel Bilgi
  • 👮‍♂️ Giriş Çıkış Bilgileri
  • 👨‍💻 Elde etme scripti
  • 🚪 Çıktı

Was this helpful?

  1. Yapay Zeka

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'>
Previous👩‍⚖️ Kararlar

Last updated 5 years ago

Was this helpful?

🤖
🤖
Burada
Burada
Burada
Burada