Skip to content
This repository has been archived by the owner on Jan 26, 2018. It is now read-only.

NodeNet is an neural network research project belongs to NOOXY.

Notifications You must be signed in to change notification settings

NOOXY-research/NodeNet-Archive

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NodeNet

"NodeNet" is a project aims to bulid neural network. It's oriention is to collect plenty of types of neural networks and provide manager to organize and test it, and the neural network libary can work without needs of manager isolatedly. It is a project belongs to NOOXY. There still lots of miles to complete it. Article about it might be established some day. Visit us www.nooxy.tk.

Requirement

  • C++
  • Python
  • Python package: NumPy
  • Python package: Matplotlib
  • Python package: CuPy(Optional)

to install Python packages

#!/bin/bash
sudo python3 -m pip install numpy matplotlib

to use Nvdia GPU (example: ArchLinux)

#!/bin/bash
sudo pacman -S cuda
# Install CUDA
sudo vim /etc/profile
# In vim add /opt/cuda/bin to your path
# finally
sudo python3 -m pip install cupy
# if something wrong try
source /etc/profile
# or
sudo reboot now

Directory

bin

node manager's executable files. They are compiled by C++ side source code in main directory, and it's build target is mainly macos(Darwin) now.

main

Source code file for node manager. There include two type of launguages C++ and python. They are completely seperated(work independently). However, it's functions act similarly.

For C++

there are source for matrix(mathematical lib for ann), ann(artificial neuron network library) and node manager(main program).

For python

We are contructing now. Not yet to be describe. For launching manager

python3 manage.py

If you need Nvidia GPU support(for really large size of neural network) simply change all

import numpy as np

to

import cupy as np

research

Test the nerual network for finding good models etc.

test

A directory to test some functions that not yet to be added to mainline.

TODO

NodeNetC

  • we stop this project temporary

NodeNetPy

Todo

  • Normalization ability [x]
  • CuPy compatible [v]
  • More types of neural network training method, listed below.
  • Validation graph and fucntion [v]
  • Validation to stop training [x]
  • Ability to start a project to determine best model automatically [x]
  • Plotting [v]
  • Costomizable activation function, cost function [x]
  • Save learning profile [v]
  • Merge validation data to one file [x]
  • Mini batch training [x]
  • Apps API [x]
  • more and more to be added

Training method list

  • backpropagation vanilla[v]
  • Levenberg-Marquardt backpropagation [x]
  • Backpropagation with classical momentum [v]
  • Backpropagation with Nesterov momentum [v]
  • RMSprop [v]
  • Adagrad [v]
  • Adadelta [x]
  • Adam [v]
  • Resilient Backpropagation [x]
  • Scaled Conjugate Gradient [x]

NN models

  • Deep feed forward [v]
  • Convolutional neural network [x]

What's next?

  • We are planning to design neural network with network protocol feature.

Gallery

alt text Input layer 8 neurons, Output layer 8 neurons. 2 hidden layer. Training Graph. backpropagation. alt text Input layer 8 neurons, Output layer 8 neurons. 2 hidden layer. Training Graph. backpropagation. alt text NodePy execution alt text NodePy execution alt text NodePy execution