Skip to content

Commit e1ddfb9

Browse files
authored
typo in comment
1 parent bda2823 commit e1ddfb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

boruta/boruta_py.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ def _add_shadows_get_imps(self, X, y, dec_reg):
414414
return imp_real, imp_sha
415415

416416
def _assign_hits(self, hit_reg, cur_imp, imp_sha_max):
417-
# register hits for feautres that did better than the best of shadows
417+
# register hits for features that did better than the best of shadows
418418
cur_imp_no_nan = [val for val in cur_imp[0] if not np.isnan(val)]
419419
hits = np.where(cur_imp_no_nan > imp_sha_max)[0]
420420
hit_reg[hits] += 1

0 commit comments

Comments
 (0)