Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 632 Bytes

README.md

File metadata and controls

43 lines (33 loc) · 632 Bytes

A simple structure to build a network

@Author: Fan
All the project only based on numpy

Active Function Support

  • Sigmoid
  • ReLU
  • LeakyReLU
  • tanh
  • Softmax

Loss Function Support

  • CrossEntrop
  • L1 distance
  • L2 distance

Optimizer Strategies Support

  • SGD
  • Momentum
  • Adam

Initialize Strategies Support

  • Gaussion initialize
  • Constant initialize
  • Xavier initialize
  • He_normal initialize

Regularization Strategies Support

  • Batch Normal
  • Dropout
  • Parameters regularize

CNN Support

  • Padding
  • Pooling
  • Kernal

RNN Support

  • Classic RNN
  • LSTM