profile

package
v0.0.0-...-6a15580 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 13, 2021 License: MIT Imports: 0 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Attr

type Attr struct {
	Name  string `json:"name"`
	Props string `json:"props"`
}

type Network

type Network struct {
	InputSize  int        `json:"input_size"`
	OutputSize int        `json:"output_size"`
	Props      Props      `json:"props"`
	Synaptics  []Synaptic `json:"synaptics"`
}

type Props

type Props struct {
	Loss      Attr    `json:"loss"`
	Optimizer Attr    `json:"optimizer"`
	ErrLimit  float64 `json:"err_limit"`
	MaxEpoch  int     `json:"max_epoch"`
}

type Synaptic

type Synaptic struct {
	SourceSize int    `json:"source_size"`
	TargetSize int    `json:"target_size"`
	Weight     Weight `json:"weight"`
	Activation Attr   `json:"activation"`
}

type Weight

type Weight struct {
	W [][]float64 `json:"w"`
	B []float64   `json:"b"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL