Skip to content

CPU & CUDA implementation of several neural network utils

License

Notifications You must be signed in to change notification settings

jpuigcerver/nnutils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nnutils

Build Status

Implementation of different neural network-related utilities for CPUs and GPUs (CUDA).

So far, most of the utils are related to my need of working with images of different sizes grouped into batches with padding.

Included utils

  • Masking images by size

If you are grouping images of different sizes into batches padded with zeros, you may need to mask the output/input tensors after/before some layers. This layer is very handy in these cases.

  • Adaptive pooling

Adaptive pooling layers included in several packages like Torch or PyTorch assume that all images in the batch have the same size. My implementation takes into account the size of each individual image within the batch to apply the adaptive pooling. Current layers include: Average and maximum adaptive pooling.

Requirements

Minimum:

  • C++14 compiler (tested with GCC 6.4.0 and 7.5.0).
  • CMake 3.0.

Recommended:

PyTorch bindings:

Installation

The installation process should be pretty straightforward assuming that you have correctly installed the required libraries and tools.

PyTorch bindings (recommended)

git clone https://github.com/jpuigcerver/nnutils.git
cd nnutils/pytorch
python setup.py build
python setup.py install

Standalone C++ library

git clone https://github.com/jpuigcerver/nnutils.git
mkdir -p nnutils/build
cd nnutils/build
cmake ..
make
make install