Accord.Neuro.Networks.RestrictedBoltzmannMachine.UpdateVisibleWeights C# (CSharp) Méthode

UpdateVisibleWeights() public méthode

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