Skip to content

Commit 0bc8680

Browse files
author
bestbug
committed
Add dynamo tag
1 parent e73625d commit 0bc8680

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

rpropplus.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ type NeuralNetwork struct {
1616
TotalWeights int
1717
NrCol []int
1818
NrRow []int
19-
ActivationFunction func(float64) float64 `bson:"-" json:"-"`
20-
DerivateActivation func(float64) float64 `bson:"-" json:"-"`
21-
ErrorFunction func(float64, float64) float64 `bson:"-" json:"-"`
22-
DerivateError func(float64, float64) float64 `bson:"-" json:"-"`
23-
ActivationFunctionName string `bson:"-" json:"-"`
24-
ErrorFunctionName string `bson:"-" json:"-"`
19+
ActivationFunction func(float64) float64 `bson:"-" json:"-" dynamo:"-"`
20+
DerivateActivation func(float64) float64 `bson:"-" json:"-" dynamo:"-"`
21+
ErrorFunction func(float64, float64) float64 `bson:"-" json:"-" dynamo:"-"`
22+
DerivateError func(float64, float64) float64 `bson:"-" json:"-" dynamo:"-"`
23+
ActivationFunctionName string `bson:"-" json:"-" dynamo:"-"`
24+
ErrorFunctionName string `bson:"-" json:"-" dynamo:"-"`
2525
LearningRate []float64
2626
// Neural Network configuration
2727
Threshold float64

0 commit comments

Comments
 (0)