Skip to content
This repository has been archived by the owner on May 24, 2018. It is now read-only.
antinucleon edited this page Apr 8, 2014 · 33 revisions

This is the documentation for cxxnet, a fast and short implementation for neural network in CPU/GPU

Getting started

  • Read Tutorial to get started, play cxxnet on MNIST, run a feed forward neural network and convolution neural network in 3 minutes!

=

Parameter Setting

To understand more about cxxnet setting, this section will introduce all parameters of cxxnet and the effect of parameters. In general, cxxnet configuration file contains 4 parts: global setting for general running setting, data iterator for IO setting, updater for learning setting and layers setting for network configuration setting.

  • How to set global parameters for neural network, related to device selection, running control.
  • How to set parameters(learning rate, momentum) for learning procedure

=

Simple guide to train ImageNet

  • Read the simple Guide to start train your own ImageNet Model.
  • We will post a pretrained ImageNet Model very soon.

=

Code Layout

  • core: core implementation of layers and updaters of neural net
  • nnet: implementation of network that connects layers and updaters together
  • io: handles data input and preprecessing
  • utils: some utils to help simple tasks
Clone this wiki locally