Accord.Neuro.Networks.RestrictedBoltzmannMachine.UpdateVisibleWeights C# (CSharp) Method

UpdateVisibleWeights() public method

Updates the weights of the visible layer by copying the reverse of the weights in the hidden layer.
public UpdateVisibleWeights ( ) : void
return void
        public void UpdateVisibleWeights()
        {
            Visible.CopyReversedWeightsFrom(Hidden);
        }
    }