Skip to content

Commit

Permalink
fix output form
Browse files Browse the repository at this point in the history
  • Loading branch information
monetjoe committed Dec 21, 2023
1 parent 2c9b5cb commit 5a03781
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def main():
max_iter=700000).fit(x_train, y_train)

# Test
print(clf.score(x_test, y_test))
print(f'{round(100.0 * clf.score(x_test, y_test), 2)}%')


if __name__ == "__main__":
Expand Down

0 comments on commit 5a03781

Please sign in to comment.