Restricted Boltzmann Machine (DL_RBM)
This function creates a Restricted Boltzmann Machine used for dimensionality reduction
An RBM is a type of neural network used for unsupervised learning. It has two layers of neurons - visible and hidden - that are connected by weights. RBMs are unique because they have symmetric connections between the visible and hidden layers and no connections within the same layer. They use contrastive divergence to adjust the weights and learn complex probability distributions of the input data. RBMs are used in applications such as image and speech recognition, dimensionality reduction, and collaborative filtering. They can learn without labeled data and be used as building blocks for larger neural network architectures.
Sample Request
Build an RBM for data clustering
Building a Restricted Boltzmann Machine
RBM Construction
POST
https://autogon.ai/api/v1/engine/start
Request Body
Sample Request
Compile and train the pre-built RBM model, using passed in Hyper Parameters
Training a Restricted Boltzmann Machine
RBM Training
POST
https://autogon.ai/api/v1
Request Body
Sample Request
Make predictions with the trained RBM model.
Predicting with a Restricted Boltzmann Machine
RBM Predict
POST
https://autogon.ai/api/v1/engine/start
Request Body
Last updated