From charlesreid1

 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
=Neural Network Libraries=
=Neural Network Libraries=


* [[Keras]] - neural network library with high-level API to enable rapid prototyping
Keras:
* [[TensorFlow]] - neural network with low-level C++ implementation, and high-level Python API, enabling it to run on a variety of hardware kernels
* [[Keras]] is a neural network library with high-level API to enable rapid prototyping.
* [[Theano]]
* https://github.com/fchollet/keras
* [[MXNet]] - Apache project for building neural networks
* https://keras.io/
* [[Gluon]] - API for MXNet intended to provide a higher-level API to enable rapid prototyping
 
Lasagne:
* [[Lasagne]] is similar in spirit to Keras, it provides a higher-level API for building neural networks in Theano.
* https://github.com/Lasagne/Lasagne
* https://lasagne.readthedocs.io/en/latest/
 
Theano:
* [[Theano]] is similar in spirit to TensorFlow, Theano is a library intended for tensor calculations. It is not Google-sponsored.
 
TensorFlow:
* [[TensorFlow]] is a neural network library with low-level C++ implementation, and high-level Python API, enabling it to run on a variety of hardware kernels
 
MXNet:
* [[MXNet]] is an Apache project for building neural networks. Again - mainly intended to do tensor calculations.
 
Gluon:
* [[Gluon]] is an API for MXNet intended to provide a higher-level API to enable rapid prototyping.


=Neural Network Datasets=
=Neural Network Datasets=
Line 21: Line 37:


Software related to building neural network pipelines:
Software related to building neural network pipelines:
* https://github.com/mila-udem/fuel - fuel is a library for creating machine learning pipelines
 
Fuel:
* [[Fuel]] is a library for creating machine learning pipelines
* https://github.com/mila-udem/fuel
 
 
* https://github.com/mila-udem/blocks - blocks
* https://github.com/mila-udem/blocks - blocks
* https://github.com/dribnet/kerosene - kerosene  
* https://github.com/dribnet/kerosene - kerosene  
* https://github.com/dribnet/chips - blocks/fuel helpers
* https://github.com/dribnet/chips - blocks/fuel helpers
=Flags=
[[Category:ML]]
[[Category:NN]]
[[Category:Data Engineering]]

Latest revision as of 21:41, 14 October 2017

Neural Network Libraries

Keras:

Lasagne:

Theano:

  • Theano is similar in spirit to TensorFlow, Theano is a library intended for tensor calculations. It is not Google-sponsored.

TensorFlow:

  • TensorFlow is a neural network library with low-level C++ implementation, and high-level Python API, enabling it to run on a variety of hardware kernels

MXNet:

  • MXNet is an Apache project for building neural networks. Again - mainly intended to do tensor calculations.

Gluon:

  • Gluon is an API for MXNet intended to provide a higher-level API to enable rapid prototyping.

Neural Network Datasets

Facial recognition/facial matching:

  • LFW - Labeled faces in the wild
  • Yale Faces - consists of original (very small) and B (larger)
  • MegaFace - UW facial recognition dataset
  • FDDB - face detection database

Data Engineering Pipelines

Data engineering scenarios:

Software related to building neural network pipelines:

Fuel:




Flags