gaelmoccand / CVND_Image-Captioning

This project contains a neural network architecture to automatically generate captions from images using LSTM and CNN

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Image-Captioning-Project

In this project, a CNN-LSTM architecture is used to automatically generate images from captions (see paper)

image

After using the Microsoft Common Objects in COntext (MS COCO) dataset to train the network, new captions will be generated based on new images.

The project Structure

  1. model: containing the model architecture.
  2. train: data pre-processing and training pipeline .
  3. infer: generate captions on test dataset using the trained model.

LSTMs

A very good summary on how LSTMs work can be found here lstm

Model Architecure

CNN Encoder using Resnet

A Convolutional Neural Network (CNN) is used for the encoder part. CNN have been widely used and studied for image tasks, and are currently state-of-the art for object recognition and detection. In this case Resnet architecture was chosen. Benchamrsk fo rdiffreent CNN architectures can be found here

Get Data

  1. Clone this repo: https://github.com/cocodataset/cocoapi
git clone https://github.com/cocodataset/cocoapi.git  
  1. Setup the coco API (also described in the readme here)
cd cocoapi/PythonAPI  
make  
cd ..
  1. Download some specific data from here: http://cocodataset.org/#download (described below)
  • Under Annotations, download:

    • 2014 Train/Val annotations [241MB] (extract captions_train2014.json and captions_val2014.json, and place at locations cocoapi/annotations/captions_train2014.json and cocoapi/annotations/captions_val2014.json, respectively)
    • 2014 Testing Image info [1MB] (extract image_info_test2014.json and place at location cocoapi/annotations/image_info_test2014.json)
  • Under Images, download:

    • 2014 Train images [83K/13GB] (extract the train2014 folder and place at location cocoapi/images/train2014/)
    • 2014 Val images [41K/6GB] (extract the val2014 folder and place at location cocoapi/images/val2014/)
    • 2014 Test images [41K/6GB] (extract the test2014 folder and place at location cocoapi/images/test2014/)

References

  1. Show and Tell: A Neural Image Caption Generator google
  2. How to LSTM lstm

About

This project contains a neural network architecture to automatically generate captions from images using LSTM and CNN

License:MIT License


Languages

Language:Jupyter Notebook 99.0%Language:Python 1.0%