Skip to content

Commit

Permalink
Fixed wrong call of get_eqn from FeatPopEstimators
Browse files Browse the repository at this point in the history
  • Loading branch information
gAldeia committed Oct 15, 2024
1 parent 69e2941 commit 289cb7c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions experiment/methods/feat/regressor.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,7 @@ def model(est, X):
model_str = est.cfeat_.get_eqn()

# Here we replace "|" with "" to handle
# protecte sqrt (expressed as sqrt(|.|)) in FEAT)
model_str = est.cfeat_.get_eqn()
# protected sqrt (expressed as sqrt(|.|)) in FEAT)
model_str = model_str.replace('|','')

# use python syntax for exponents
Expand Down

0 comments on commit 289cb7c

Please sign in to comment.