Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Classification metrics overhaul 1/3 [wip] #4835

Closed
wants to merge 41 commits into from
Closed
Show file tree
Hide file tree
Changes from 38 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
220dc38
WIP
tadejsv Nov 4, 2020
d9f6251
WIP
tadejsv Nov 10, 2020
ae23cc7
Add input tests
tadejsv Nov 11, 2020
9222a95
Add test + refactor existing tests
tadejsv Nov 12, 2020
0c7200b
Add more input tests
tadejsv Nov 13, 2020
b3be983
rebase to master
tadejsv Nov 13, 2020
6ee01ef
Add accuracy metrics
tadejsv Nov 13, 2020
e2ff113
Add topk, polish documentation
tadejsv Nov 15, 2020
87c3bf3
Add StatScores metric
tadejsv Nov 17, 2020
289e2ba
Refactor error checking
tadejsv Nov 17, 2020
e6688a2
Some documentation changes
tadejsv Nov 18, 2020
7b9c88e
Improve metrics documentation
tadejsv Nov 18, 2020
4a6bdf7
WIP
tadejsv Nov 18, 2020
e999b4d
Add ignore_index option
tadejsv Nov 18, 2020
7a2dbfd
Fix
tadejsv Nov 19, 2020
80aff9b
Merge branch 'master' into new_cls_classification_metrics
tadejsv Nov 19, 2020
93408a2
prec_recall and fbeta tests passing
tadejsv Nov 21, 2020
f872689
Test work + begin unifying accuracy
tadejsv Nov 21, 2020
ea2c2ad
Unify accuracy metrics
tadejsv Nov 21, 2020
a8dd487
Add topk tests
tadejsv Nov 21, 2020
1f55735
Add stat scores functional
tadejsv Nov 22, 2020
d534009
FBeta and IoU unified
tadejsv Nov 22, 2020
0ef5875
Fix docstring examples for iou
tadejsv Nov 22, 2020
bfbf18c
Detach/clone tensors before transform
tadejsv Nov 22, 2020
04529a7
Add dice alias
tadejsv Nov 22, 2020
e0f1075
Remove redundant functional tests
tadejsv Nov 22, 2020
a310b23
Update docs + confusion matrix (1/2)
tadejsv Nov 22, 2020
0976781
Confusion matrix tests pass
tadejsv Nov 23, 2020
296c840
Remove reduntant test params + add preds and target to docstrings
tadejsv Nov 23, 2020
5364eff
Fix stat scores tests
tadejsv Nov 23, 2020
040a4b6
Merge remote-tracking branch 'upstream/master' into new_cls_classific…
tadejsv Nov 23, 2020
3be2106
Remove unnecessary avg checking
tadejsv Nov 24, 2020
4f8e44b
Fix docstring examples
tadejsv Nov 24, 2020
7462867
Remove redundant functions
tadejsv Nov 24, 2020
6003289
Increase coverage
tadejsv Nov 24, 2020
0eaf891
num_processes back
tadejsv Nov 24, 2020
052d11b
Merge remote-tracking branch 'upstream/master' into new_cls_classific…
tadejsv Nov 24, 2020
92e5ddb
PEP compliance
tadejsv Nov 24, 2020
4421fd8
PEP compliance
tadejsv Nov 24, 2020
83628cc
Remove logits argument
tadejsv Nov 24, 2020
bde9543
Merge accuracy and topkaccuracy
tadejsv Nov 24, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/source/_templates/functiontemplate.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.. role:: hidden
:class: hidden-section
.. currentmodule:: {{ module }}


{{ name | underline }}

.. autofunction:: {{ name }}


..
autogenerated from source/_templates/functiontemplate.rst
note it does not have :inherited-members:
Loading