Skip to content

New Models

Latest
Compare
Choose a tag to compare
@Pravez Pravez released this 29 May 11:11
· 21 commits to master since this release

New models in this release ! No need to create a model with TFJS, now a wrapper named NeuralNetwork can do the job for you, you just need to give the parameters you want. Also, added convolutional neural networks and layers (dropout, flatten, maxpooling2d, conv2d).

Features

  • Added new classes for creating Networks (NeuralNetwork, ConvolutionalNeuralNetwork)
  • Added new interfaces for creating layers configurations
  • Added convolutional layers
  • Added Dropout layers
  • Added Flatten layers
  • Added MaxPooling2D layers
  • Possibility to import from TFJS array of layers (Model.FromNetwork)
  • Possibility to export to a TFJS array of layers (network.createLayers())
  • Possibility to import from a Keras/TF model

... And more to come !