5ddeb6f331
WIP #654 Added LayerDecorator WIP #654 WIP #654 Added support for adding/removing layers WIP #654 Fixed the text for the layers WIP #654 Refactored content text WIP #654 Only delete target if it's a child WIP #654 Updated for layers-as-args WIP #654 Made a better name for layer args WIP #654 Added explicit arg types WIP #654 Changed argindex -> ctor_arg_order WIP #654 Added support for layers-as-args in GenArch WIP #654 Added import fn-ality WIP #654 Updated visualizers for layer support WIP #654 Fixed code climate issues WIP #654 Fixed setter detection WIP #654 Updated tests WIP #654 Updated tests
33 linhas
550 B
YAML
33 linhas
550 B
YAML
- type: Linear
|
|
id: /Q/E
|
|
next:
|
|
- /Q/e
|
|
attributes:
|
|
bias: ''
|
|
ctor_arg_order: 'inputSize,outputSize,bias'
|
|
outputSize: 300
|
|
inputSize: 100
|
|
- type: Linear
|
|
id: /Q/Q
|
|
next: []
|
|
attributes:
|
|
bias: ''
|
|
ctor_arg_order: 'inputSize,outputSize,bias'
|
|
outputSize: 10
|
|
inputSize: 300
|
|
- type: HardTanh
|
|
id: /Q/e
|
|
next:
|
|
- /Q/Q
|
|
attributes:
|
|
min_value: ''
|
|
max_value: 1
|
|
ctor_arg_order: 'min_value,max_value'
|
|
- type: Reshape
|
|
id: /Q/j
|
|
next:
|
|
- /Q/E
|
|
attributes:
|
|
ctor_arg_order: params
|
|
params: 100
|