MilesCranmer commited on
Commit
bf87ffb
1 Parent(s): 81cfb5c

Undo change to parsimony

Browse files
Files changed (1) hide show
  1. pysr/sr.py +2 -2
pysr/sr.py CHANGED
@@ -341,7 +341,7 @@ class PySRRegressor(MultiOutputMixin, RegressorMixin, BaseEstimator):
341
  Complexity of variables. Default is `1`.
342
  parsimony : float
343
  Multiplicative factor for how much to punish complexity.
344
- Default is `0.0`.
345
  use_frequency : bool
346
  Whether to measure the frequency of complexities, and use that
347
  instead of parsimony to explore equation space. Will naturally
@@ -645,7 +645,7 @@ class PySRRegressor(MultiOutputMixin, RegressorMixin, BaseEstimator):
645
  complexity_of_operators=None,
646
  complexity_of_constants=1,
647
  complexity_of_variables=1,
648
- parsimony=0.0,
649
  use_frequency=True,
650
  use_frequency_in_tournament=True,
651
  alpha=0.1,
 
341
  Complexity of variables. Default is `1`.
342
  parsimony : float
343
  Multiplicative factor for how much to punish complexity.
344
+ Default is `0.0032`.
345
  use_frequency : bool
346
  Whether to measure the frequency of complexities, and use that
347
  instead of parsimony to explore equation space. Will naturally
 
645
  complexity_of_operators=None,
646
  complexity_of_constants=1,
647
  complexity_of_variables=1,
648
+ parsimony=0.0032,
649
  use_frequency=True,
650
  use_frequency_in_tournament=True,
651
  alpha=0.1,