Skip to content

In this project, I am using Pytorch to implement automatic image captioning system as a part of Udacity Computer Vision Nanodegree.

Notifications You must be signed in to change notification settings

AhmedNasr7/Automatic-Image-Captioning

Repository files navigation

Automatic-Image-Captioning

Udacity Computer Vision Nanodegree

The Second Project in the Computer Vision Nanodegree by Udacity - Automatic Captioning of Images.

To install the required packages

pip install -r requirements.txt

The project is an implementation of the architecture introduced in the paper Show and Tell: A Neural Image Caption Generator

The next figure shows the architecture used in the project:

Encoder Decoder Architecture

COCO Dataset Instructions

COCO Dataset Examples

  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/)

About

In this project, I am using Pytorch to implement automatic image captioning system as a part of Udacity Computer Vision Nanodegree.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published