Skip to content

Commit

Permalink
added missing function docs in README
Browse files Browse the repository at this point in the history
  • Loading branch information
musiccabin committed Jan 10, 2025
1 parent 83ef53e commit 198fddd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ confusion_matrices(estimators, X, y)
# show fit time and f1 scores of estimators' cross validation results:
compare_f1(estimators, X, y)

# show cross validation fit time and f1 scores of a classifier by stacking the estimators
# show cross validation fit time and f1 scores of a classifier by stacking the estimators:
ensemble_compare_f1(estimators, X, y, 'stacking')
```

Expand All @@ -44,6 +44,7 @@ At last, you can decide to predict on test data through voting or stacking the e
```python
from ensemble_best_method.ensemble_predict import ensemble_predict

# predict class labels for unseen data through voting results of estimators:
ensemble_predict(estimators, X, y, ensemble_method, unseen_data, 'voting')
```

Expand Down

0 comments on commit 198fddd

Please sign in to comment.