🕸️
Deep Learning
  • 💫Deep Learning Notes
  • 💼Practical Tools
  • 💎Concepts of Neural Networks
    • 🌱Introduction
    • 🔎The Problem in General
    • 👷‍♀️ Implementation Notes
    • 📚Common Concepts
    • 💥Activation Functions
    • 🎈Practical Aspects
    • 👩‍🔧 NN Regularization
    • ✨Optimization Algorithms
    • 🎨Softmax Regression
    • 🏃‍♀️ Introduction to Tensorflow
    • 👩‍💻 Python Code Snippets
  • 🙋‍♀️ Hello World of Deep Learning with Neural Networks
    • 🌱Introduction
    • 🌐CNNs In Browser
  • 🚪Introduction to Computer Vision
    • 🌱Introduction
  • 🚩Concepts of Convolutional Neural Networks
    • 🌱Introduction
    • 📌Common Concepts
    • 🌟Advanced Concepts
    • 👀Visualization
    • 👵Classic Networks
    • ✨Other Approaches
    • 🕸️Common Applications
  • 👩‍💻 Works and Notes on CNNs
    • 🌱Introduction
  • 💄Popular Strategies of Deep Learning
    • 🌱Introduction
    • 🚙Transfer Learning
    • 📚Other Strategies
  • 🤡Image Augmentation
    • 🌱Introduction
  • 🤸‍♀️ Notes on Applied Machine Learning
    • 🌱Introduction
    • 👩‍🔧 Notes on Structuring Machine Learning Projects
    • 👩‍🏫 Implementation Guidelines
  • 🕵️‍♀️ Basics of Object Detection
    • 🌱Introduction
    • ⭕Region-Based CNNs
    • 🤳SSD and YOLO
    • 🤖TensorFlow Object Detection API
    • 🐞Model Debugging
  • ➰Sequence Models In Deep Learning
    • 🌱Introduction
    • 📚General Concepts
    • 🔄Recurrent Neural Networks
    • 🌌Vanishing Gradients with RNNs
    • 🌚Word Representation
    • 💬Mixed Info On NLP
  • 💬NLP
    • 🌱Introduction
  • 💬Applied NLP
    • 🙌🏻 Handling texts
    • 🧩Regex
  • 👀Quick Visual Info
  • 📚PDFs that I found and recommend
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. 🕵️‍♀️ Basics of Object Detection

Model Debugging

🙄 Problems that we can face while training custom object detection

  1. Model is not doing well on test set

  2. Model is doing well on test set but doing bad on real world images

In case that model is not doing well on test set you can try one or more from the followings:

  • Add dropout to .config file

box_predictor {
    ....
    use_dropout: true
    dropout_keep_probability: 0.8
    ....
}
  • Replace fixed_shape_resizer with keep_aspect_ratio_resizer, example:

image_resizer {
    fixed_shape_resizer {
    height: 640
    width: 640
  }
}
keep_aspect_ratio_resizer {
    min_dimension: 640
    max_dimension: 640
    pad_to_max_dimension: true
}

👮‍♀️ You have to choose these values due to your model

PreviousTensorFlow Object Detection APINextSequence Models In Deep Learning

Last updated 4 years ago

Was this helpful?

🐞