Yumi's Blog

Visualization of deep learning classification model using keras-vis

In the next few blog posts, I will review visualization techiniques.

Create condo environment

conda create -n explainableAI python=3.5
source activate explainableAI
conda install tensorflow
conda install keras
conda install jupyter
pip install git+https://github.com/raghakot/keras-vis.git --upgrade --no-deps
pip install opencv-python==3.3.0.10
$CONDA_PREFIX/bin/jupyter notebook --no-browser

Download a json file containing ImageNet class names.

Use pretrained YOLO network for object detection, SJSU data science night (Setup)

Setup

Please take the following steps in Max OSX (Sorry for Windows users).

Part 4 Object Detection using YOLOv2 on Pascal VOC2012 - loss

experiencor/keras-yolo2's YOLO V2 loss

YOLO v2 loss funciton

This is the fourth blog post of Object Detection with YOLO blog series. This blog discusses the YOLO's loss funciton. This will be the most intense blog post in Object Detection with YOLO blog series. as loss function of YOLO is quite complex. So please get excited! For demonstration of the code, I will agian use PASCAL VOC2012 data. This blog assumes that the readers have read the previous blog posts - Part 1