Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
22 views1 page

Ile 71

The document describes a neural network structure using PyBrain, featuring a linear output layer, a bias unit, and a sigmoid hidden layer. It includes details on the connections between these modules, specifying parameters for each connection. The network consists of one input, one hidden, and one output module.

Uploaded by

PT A
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views1 page

Ile 71

The document describes a neural network structure using PyBrain, featuring a linear output layer, a bias unit, and a sigmoid hidden layer. It includes details on the connections between these modules, specifying parameters for each connection. The network consists of one input, one hidden, and one output module.

Uploaded by

PT A
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

PyBrain

</LinearLayer>
<LinearLayer
class="pybrain.structure.modules.linearlayer.LinearLayer" name="out"
outmodule="True">
<name val="'out'"/>
<dim val="1"/>
</LinearLayer>
<BiasUnit class="pybrain.structure.modules.biasunit.BiasUnit"
name="bias">
<name val="'bias'"/>
</BiasUnit>
<SigmoidLayer
class="pybrain.structure.modules.sigmoidlayer.SigmoidLayer" name="hidden0">
<name val="'hidden0'"/>
<dim val="1"/>
</SigmoidLayer>
</Modules>
<Connections>
<FullConnection
class="pybrain.structure.connections.full.FullConnection" name="FullConnection-
6">
<inmod val="bias"/>
<outmod val="out"/>
<Parameters>[1.2441093186965146]</Parameters>
</FullConnection>
<FullConnection
class="pybrain.structure.connections.full.FullConnection" name="FullConnection-
7">
<inmod val="bias"/>
<outmod val="hidden0"/>
<Parameters>[-1.5743530012126412]</Parameters>
</FullConnection>
<FullConnection
class="pybrain.structure.connections.full.FullConnection" name="FullConnection-
4">
<inmod val="in"/>
<outmod val="hidden0"/>
<Parameters>[-0.9429546042034236, -
0.09858196752687162]</Parameters>
</FullConnection>

67

You might also like