Help
What it does
Creates a deep learning architecture using Keras deep learning library by adding different types of layers in a sequential manner. Different types of layers include Dense, Dropout, Convolutional, Activation and so on. These layers are added one after another which generates a deep architecture. Moreover, it also offers functional API (where layers are callable and can be chained) for advanced users to create complex models.
Return
A JSON file containing the information of all the layers and their respective attributes.
How to create an architecture using this tool?
- Choose the model type. For example - "Sequential". It means that all the layers will be linearly stacked.
- Add "Input shape" value. This is the dimensionality (number of columns) of the dataset excluding the 'target' or 'label' column.
- Add layers using "Insert layer" button. Choose the layers and attributes (using advanced options) suited to the dataset. For example - Choose 'Dense' for adding a dense layer to the architecture and insert an integer under "Units" which are the number of neurons for this layer. Higher the number of units, the stronger is the architecture. Please be noted that the higher values of units may lead to overfitting and lower values may lead to underfitting. This is one of the hyperparameters of the architecture which needs to be tuned for a dataset.
- Execute the tool to get a JSON string of the architecture.