diff options
author | cloudygoose <[email protected]> | 2015-06-12 12:50:11 +0800 |
---|---|---|
committer | cloudygoose <[email protected]> | 2015-06-12 12:50:11 +0800 |
commit | a55769787d1b3ec2d1db519cd5efb3b5b2e75404 (patch) | |
tree | 7cb4267fa7f05922bdeab2d3ad97dcb22ea27adc /doc | |
parent | 6dbf9dc22c5c0fb3462df49d33f0b8ada14608be (diff) |
...
Diffstat (limited to 'doc')
-rw-r--r-- | doc/nerv_nn.md | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/doc/nerv_nn.md b/doc/nerv_nn.md index 044531a..2aded84 100644 --- a/doc/nerv_nn.md +++ b/doc/nerv_nn.md @@ -49,12 +49,14 @@ param_config : {param1 = paramID1, param2 = paramID2} __LayerRepo__ will merge `param_config` into `layer_config` and construct a layer by calling `layer_type(layerid, global_conf, layer_config)`. * __LayerRepo.get_layer(self, lid)__ - * Returns - __nerv.LayerRepo__ the layer with ID `lid`. - * Parameters - `self`:__nerv.LayerRepo__. - `lid`:__string__, the ID of the layer to fetch. - + * Returns + __nerv.LayerRepo__, the layer with ID `lid`. + * Parameters + `self`:__nerv.LayerRepo__. + `lid`:__string__, the ID of the layer to fetch. + * Description + Returns the layer with ID `lid`. + ###__nerv.DAGLayer__### * __DAGLayer:\_\_init(id, global_conf, layer_conf, [a, b, ...])__ Returns: |