This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
@Fork by Uiuran 2013 | |
@created on Jan 17, 2010 | |
@author: mjbommar | |
''' | |
from GraphMovie import GraphMovie | |
import igraph | |
import numpy as np | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
@Forked by Uiuran (c) 2013 | |
@date Feb 21, 2011 | |
@original author: mjbommar (c) 2011 | |
@license Simplified BSD, (C) 2011. | |
Free to use for non-commerical purposes. Attribution appreciated :) | |
''' | |
import igraph |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" NeuralNetwork class to arrange neurons in a topology and do dynamics """ | |
# MinimumBrain is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# MinimumBrain is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" NeuronLogistic class to logistic neurons with logit input """ | |
# Field input receives a dictionaire where key = number of the input unit, | |
# element = length 2 list with signal and synaptic weights respectively | |
import numpy as np | |
class NeuronLogistic: | |
def __init__(self,presynaptics): | |
if type(presynaptics) != dict: |
NewerOlder