# HG changeset patch # User Xavier Glorot # Date 1266364551 18000 # Node ID 1b315470a5667a54ade02d8f93350e9b111845cd # Parent 259439a4f9e79879970950eb8eb28bbdf9850855 Changed the variance factor of the distorsion gauss from /10 to /15 (to have a bit less noise) diff -r 259439a4f9e7 -r 1b315470a566 transformations/DistorsionGauss.py --- a/transformations/DistorsionGauss.py Tue Feb 16 17:24:21 2010 -0500 +++ b/transformations/DistorsionGauss.py Tue Feb 16 18:55:51 2010 -0500 @@ -27,7 +27,7 @@ return ['ecart_type'] def regenerate_parameters(self, complexity): - self.ecart_type=float(complexity)/10 + self.ecart_type=float(complexity)/15 self.effectuer =numpy.random.binomial(1,0.3) ##### On a 30% de faire un bruit ##### return self._get_current_parameters()