Uses of Class
engine.neural.Vector
Packages that use Vector
Package
Description
-
Uses of Vector in engine.neural
Methods in engine.neural that return VectorModifier and TypeMethodDescriptionVector.copy()Cost.derivative(Vector output, Vector target) Matrix.getCol(int col) Vector.getNormal()Matrix.getRow(int row) Methods in engine.neural with parameters of type VectorModifier and TypeMethodDescriptionfloatCost.derivative(Vector output, Vector target) floatvoidvoidvoidOptimizer.updateBiases(Vector biases, Vector delta) -
Uses of Vector in engine.neural.costs
Methods in engine.neural.costs that return VectorModifier and TypeMethodDescriptionBinaryCrossEntropy.derivative(Vector output, Vector target) MeanAbsoluteError.derivative(Vector output, Vector target) MeanSquaredError.derivative(Vector output, Vector target) RootMeanSquare.derivative(Vector output, Vector target) Methods in engine.neural.costs with parameters of type VectorModifier and TypeMethodDescriptionfloatfloatfloatfloatBinaryCrossEntropy.derivative(Vector output, Vector target) MeanAbsoluteError.derivative(Vector output, Vector target) MeanSquaredError.derivative(Vector output, Vector target) RootMeanSquare.derivative(Vector output, Vector target) -
Uses of Vector in engine.neural.networks
Fields in engine.neural.networks declared as VectorModifier and TypeFieldDescriptionprivate Vector[]Feedforward.activationsprivate Vector[]Feedforward.biasesprivate Vector[]Feedforward.preActivationsMethods in engine.neural.networks that return VectorMethods in engine.neural.networks with parameters of type VectorModifier and TypeMethodDescriptionprivate voidprivate Vectorvoidvoidvoidvoidvoidvoidvoidvoidvoidvoidvoidvoid -
Uses of Vector in engine.neural.optimizers
Fields in engine.neural.optimizers with type parameters of type VectorModifier and TypeFieldDescriptionprivate IdentityHashMap<Vector, Vector> SGDMomentum.velocityBiasesStore velocity matrix based off of which vector is givenprivate IdentityHashMap<Vector, Vector> SGDMomentum.velocityBiasesStore velocity matrix based off of which vector is givenMethods in engine.neural.optimizers with parameters of type VectorModifier and TypeMethodDescriptionvoidAdam.updateBiases(Vector biases, Vector delta) voidAdamW.updateBiases(Vector biases, Vector delta) voidRMSProp.updateBiases(Vector biases, Vector delta) voidSGD.updateBiases(Vector biases, Vector delta) voidSGDMomentum.updateBiases(Vector biases, Vector delta)