Skip to content

Commit

Permalink
fix the syntax error line 233
Browse files Browse the repository at this point in the history
  • Loading branch information
adrinjalali committed Apr 8, 2014
1 parent d27709e commit c6be2e7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pybrain/optimization/distributionbased/fem.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,8 @@ def _learnStep(self):
if len(self.allsamples) < self.windowSize:
return
if self.verbose and len(self.allsamples) % 100 == 0:
print(len(self.allsamples), min(self.fitnesses), max(self.fitnesses)#, self.alphas)
print(len(self.allsamples), min(self.fitnesses), max(self.fitnesses))
# print(len(self.allsamples), min(self.fitnesses), max(self.fitnesses)#, self.alphas)

updateSize = self._computeUpdateSize(self._computeDensities(sample), k)
self.allUpdateSizes.append(deepcopy(updateSize))
Expand Down

0 comments on commit c6be2e7

Please sign in to comment.