Skip to content

Commit

Permalink
Corrected dim-bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
williampeer committed Mar 30, 2016
1 parent 68e8360 commit a635be3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HPC.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def __init__(self, dims, connection_rate_input_ec, perforant_path, mossy_fibers,

# randomly assign all weights between the EC and CA3
# ec_ca3_weights = uniform_f(dims[1], dims[3])
ec_ca3_weights = np.random.normal(0.5, 0.25, (dims[1], dims[2]))
ec_ca3_weights = np.random.normal(0.5, 0.25, (dims[1], dims[3]))
self.ec_ca3_weights = theano.shared(name='ec_ca3_weights', value=ec_ca3_weights.astype(theano.config.floatX),
borrow=True)

Expand Down

0 comments on commit a635be3

Please sign in to comment.