Skip to content

Commit

Permalink
Update regressor.py
Browse files Browse the repository at this point in the history
  • Loading branch information
folivetti authored Oct 8, 2024
1 parent d8d0662 commit 45f770c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion experiment/methods/tir/regressor.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def model(e, X):

def get_population(est):
pop = []
for i in range(len(est.front)):
for i in range(min(100, len(est.front))-1,-1,-1):
pop.append(est.create_model_from(i))
return pop

Expand Down

0 comments on commit 45f770c

Please sign in to comment.