Skip to content

Commit

Permalink
Remove unneccesary assert statement in DummyLayer.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hannes Bretschneider committed Jan 22, 2015
1 parent edeabec commit 318aed3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion hebel/layers/dummy_layer.py
Expand Up @@ -29,7 +29,6 @@ def __init__(self, n_in):
self.n_units = n_in

def feed_forward(self, input_data, prediction=False):
assert input_data.shape[1] == self.n_in
return (input_data,)

def backprop(self, input_data, df_output, cache=None):
Expand Down

0 comments on commit 318aed3

Please sign in to comment.