I'm building Noyron network using pybrain but I want to change the outclass to Sigmoid instead of Linear Layer as it is.
This is the network I created:
net=buildNetwork(108,100,1)
This what I intend to do (but isn't working):
net=buildNetwork(108,100,1,outClass='Sigmoid')