Uses of Class
engine.neural.Matrix
Packages that use Matrix
Package
Description
-
Uses of Matrix in engine.neural
Subclasses of Matrix in engine.neuralMethods in engine.neural that return MatrixModifier and TypeMethodDescriptionMatrix.copy()Matrix.elementWise(float[] b) Matrix.elementWise(Matrix b) Matrix.getTranspose()Matrix.scaleMatrixReturn(float scale) Methods in engine.neural with parameters of type MatrixModifier and TypeMethodDescriptionMatrix.elementWise(Matrix b) voidInitializer.initialize(Matrix weights) voidOptimizer.updateWeights(Matrix weights, Matrix gradient) -
Uses of Matrix in engine.neural.initializers
Methods in engine.neural.initializers with parameters of type MatrixModifier and TypeMethodDescriptionvoidGlorot.initialize(Matrix weights) voidKaiming.initialize(Matrix weights) voidRandomNormal.initialize(Matrix weights) voidRandomUniform.initialize(Matrix weights) -
Uses of Matrix in engine.neural.networks
Fields in engine.neural.networks declared as MatrixMethods in engine.neural.networks with parameters of type MatrixModifier and TypeMethodDescriptionprivate StringFeedforward.printMatrices(Matrix[] m) private voidFeedforward.textToMatrix(Scanner scan, Matrix[] m) -
Uses of Matrix in engine.neural.optimizers
Fields in engine.neural.optimizers with type parameters of type MatrixModifier and TypeFieldDescriptionprivate IdentityHashMap<Matrix, Matrix> SGDMomentum.velocityWeightsStore velocity matrix based off of which matrix is givenprivate IdentityHashMap<Matrix, Matrix> SGDMomentum.velocityWeightsStore velocity matrix based off of which matrix is givenMethods in engine.neural.optimizers with parameters of type MatrixModifier and TypeMethodDescriptionvoidAdam.updateWeights(Matrix weights, Matrix gradient) voidAdamW.updateWeights(Matrix weights, Matrix gradient) voidRMSProp.updateWeights(Matrix weights, Matrix gradient) voidSGD.updateWeights(Matrix weights, Matrix gradient) voidSGDMomentum.updateWeights(Matrix weights, Matrix gradient)