Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
EL HANI Marwane committed Nov 27, 2024
1 parent 432363d commit 1850eff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions river/model_selection/hoeffding_races.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class HoeffdingRaceClassifier(base.Classifier):
... break
...
>>> hoeffding_race.remaining_models
{'KNN'}
['KNN']
"""

def __init__(
Expand Down Expand Up @@ -122,8 +122,8 @@ class HoeffdingRaceRegressor(base.Regressor):
... if hoeffding_race.single_model_remaining():
... break
...
>>> print(hoeffding_race.remaining_models)
['Log_Reg']
>>> print(hoeffding_race.remaining_models)
['Log_Reg']
"""

Expand Down

0 comments on commit 1850eff

Please sign in to comment.