Skip to content

Commit

Permalink
Merge pull request #3 from koaning/first-public-version
Browse files Browse the repository at this point in the history
v0.1.0
  • Loading branch information
koaning committed Nov 9, 2021
2 parents 8958d01 + cfff3c8 commit 2437a8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ X, y = load_iris(return_X_y=True)
model = LogisticRegression(max_iter=1_000)
model.fit(X, y)

# Next we can the reasons for doubt. In this case we're saying
# Next we can add reasons for doubt. In this case we're saying
# that examples deserve another look if the associated proba values
# are low or if the model output doesn't match the associated label.
reasons = {
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

setup(
name="doubtlab",
version="0.0.2",
version="0.1.0",
author="Vincent D. Warmerdam",
packages=find_packages(exclude=["notebooks", "docs"]),
description="Don't Blindly Trust Your Labels",
Expand Down

0 comments on commit 2437a8f

Please sign in to comment.