go-ml-dev/nn

View on GitHub
mx/optimizer.go

Summary

Maintainability
A
0 mins
Test Coverage
F
33%

exported function AdamUpdate should have comment or be unexported
Open

func AdamUpdate(params, grads, mean, variance *NDArray, lr, beta1, beta2, epsilon, wd float64) {
Severity: Minor
Found in mx/optimizer.go by golint

exported function SgdMomUpdate should have comment or be unexported
Open

func SgdMomUpdate(params, grads, mom *NDArray, lr, momentum, wd float64) {
Severity: Minor
Found in mx/optimizer.go by golint

exported function SgdUpdate should have comment or be unexported
Open

func SgdUpdate(params, grads *NDArray, lr, wd float64) {
Severity: Minor
Found in mx/optimizer.go by golint

There are no issues that match your filters.

Category
Status