Skip to content

kokukuma/nupic_image_recognition

Repository files navigation

nupic_imagenet

The purpose of this repository

  • I'll verify the HTM using the task of ImageNet LSVRC-2014.

Index

  • Dataset
  • Install nupic/pylearn2
  • Simple task

Dataset

CIFAR-10

  • The CIFAR-10 dataset consists of 60000 32x32 colour images in 10 classes, with 6000 images per class.
  • The CIFAR-10 dataset

MNIST

ImageNet

Install nupic/pylearn2

Install nupic/

Install pylearn2

  • install
  • tutorial
    • When I execute make_dataset.py, the error has occurred.
    • I edited train_example_path of pylearn2/scripts/tutorials/grbm_smd/make_dataset.py.
    IOError: permission error creating /Library/Python/2.7/site-packages/pylearn2/scripts/tutorials/grbm_smd/cifar10_preprocessed_train.pkl
    
    • environment values
    export PYLEARN2_DATA_PATH=/Users/karino-t/data
    export PYLEARN2_VIEWER_COMMAND="open -Wn"
    

Technique

  • architecture
  • input
    • (3, 224, 224)
  • convolutional layer
      1. 96 kernel, (11, 11) max-pooling
      1. 256 kernel, (5,5,48) max-pooling
      1. 384 kernel, (3,3,256) all connect with second layer
      1. 384 kernel, (3,3,192)
      1. 384 kernel, (3,3,192) max-pooling
  • full connected layer
      1. 2048+2048 sigmoid?, tanh?, other?
      1. 2048+2048
      1. softmax 1000
  • reducing overfiting
    • data augmentation
    • dropout (full connected layer ?)

simple task

CIFAR-10

  • datamodel : cifar10.py
  • preprocess : make_dataset.py
  • model : conv_sample.yaml

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages