Alexander Raskin

Results 1 comments of Alexander Raskin

the solution is to add the `name=` in the add weight function: ``` self.W = self.add_weight(name="weight", shape=[d, self.n_output_nodes]) # note the dimensionality self.b = self.add_weight(name="bias", shape=[1, self.n_output_nodes]) # note the...