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

Native torch metrics #1488

Merged
merged 139 commits into from
Jun 13, 2020
Merged

Native torch metrics #1488

merged 139 commits into from
Jun 13, 2020

Commits on Jun 12, 2020

  1. New metric classes (#1326)

    * Create metrics package
    
    * Create metric.py
    
    * Create utils.py
    
    * Create __init__.py
    
    * add tests for metric utils
    
    * add docstrings for metrics utils
    
    * add function to recursively apply other function to collection
    
    * add tests for this function
    
    * update test
    
    * Update pytorch_lightning/metrics/metric.py
    
    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    
    * update metric name
    
    * remove example docs
    
    * fix tests
    
    * add metric tests
    
    * fix to tensor conversion
    
    * fix apply to collection
    
    * Update CHANGELOG.md
    
    * Update pytorch_lightning/metrics/metric.py
    
    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    
    * remove tests from init
    
    * add missing type annotations
    
    * rename utils to convertors
    
    * Create metrics.rst
    
    * Update index.rst
    
    * Update index.rst
    
    * Update pytorch_lightning/metrics/convertors.py
    
    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    
    * Update pytorch_lightning/metrics/convertors.py
    
    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    
    * Update pytorch_lightning/metrics/convertors.py
    
    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    
    * Update pytorch_lightning/metrics/metric.py
    
    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    
    * Update tests/utilities/test_apply_to_collection.py
    
    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    
    * Update tests/utilities/test_apply_to_collection.py
    
    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    
    * Update tests/metrics/convertors.py
    
    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    
    * Apply suggestions from code review
    
    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    
    * add doctest example
    
    * rename file and fix imports
    
    * added parametrized test
    
    * replace lambda with inlined function
    
    * rename apply_to_collection to apply_func
    
    * Separated class description from init args
    
    * Apply suggestions from code review
    
    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    
    * adjust random values
    
    * suppress output when seeding
    
    * remove gpu from doctest
    
    * Add requested changes and add ellipsis for doctest
    
    * forgot to push these files...
    
    * add explicit check for dtype to convert to
    
    * fix ddp tests
    
    * remove explicit ddp destruction
    
    Co-authored-by: Jirka Borovec <Borda@users.noreply.github.com>
    justusschock and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    0390cc1 View commit details
    Browse the repository at this point in the history
  2. Create __init__.py

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    9b62397 View commit details
    Browse the repository at this point in the history
  3. add tests for metric utils

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    0800ae0 View commit details
    Browse the repository at this point in the history
  4. add docstrings for metrics utils

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    30d1188 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d3c5ad4 View commit details
    Browse the repository at this point in the history
  6. add tests for this function

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    efc96eb View commit details
    Browse the repository at this point in the history
  7. update test

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    8e00350 View commit details
    Browse the repository at this point in the history
  8. fix tests

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    efcf601 View commit details
    Browse the repository at this point in the history
  9. fix to tensor conversion

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    fcfb1cc View commit details
    Browse the repository at this point in the history
  10. fix apply to collection

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    0b5bad9 View commit details
    Browse the repository at this point in the history
  11. remove tests from init

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    01d29da View commit details
    Browse the repository at this point in the history
  12. rename utils to convertors

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    ff59c60 View commit details
    Browse the repository at this point in the history
  13. Update pytorch_lightning/metrics/convertors.py

    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    justusschock and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    5ce8207 View commit details
    Browse the repository at this point in the history
  14. Update pytorch_lightning/metrics/convertors.py

    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    justusschock and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    55b2329 View commit details
    Browse the repository at this point in the history
  15. Update pytorch_lightning/metrics/convertors.py

    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    justusschock and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    19c1d9d View commit details
    Browse the repository at this point in the history
  16. Update tests/utilities/test_apply_to_collection.py

    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    justusschock and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    e7ccb29 View commit details
    Browse the repository at this point in the history
  17. Update tests/utilities/test_apply_to_collection.py

    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    justusschock and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    b78573a View commit details
    Browse the repository at this point in the history
  18. Update tests/metrics/convertors.py

    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    justusschock and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    1619b55 View commit details
    Browse the repository at this point in the history
  19. Apply suggestions from code review

    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    justusschock and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    a29ce7a View commit details
    Browse the repository at this point in the history
  20. rename file and fix imports

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    c1e6b3d View commit details
    Browse the repository at this point in the history
  21. added parametrized test

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    59f5a9e View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    b09eb6f View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    4e284d8 View commit details
    Browse the repository at this point in the history
  24. forgot to push these files...

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    5f7d4a0 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    e70f4fb View commit details
    Browse the repository at this point in the history
  26. fix ddp tests

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    3a3cc95 View commit details
    Browse the repository at this point in the history
  27. remove explicit ddp destruction

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    c82d4ee View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    627189b View commit details
    Browse the repository at this point in the history
  29. add functionals of reduction metrics

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    5d74cba View commit details
    Browse the repository at this point in the history
  30. add more metrics

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    8a40737 View commit details
    Browse the repository at this point in the history
  31. pep8 fixes

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    778531a View commit details
    Browse the repository at this point in the history
  32. Create utils.py

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    cb36557 View commit details
    Browse the repository at this point in the history
  33. Create __init__.py

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    ca1cecf View commit details
    Browse the repository at this point in the history
  34. add tests for metric utils

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    4b3d8db View commit details
    Browse the repository at this point in the history
  35. add docstrings for metrics utils

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    430ffe6 View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    fb8dca8 View commit details
    Browse the repository at this point in the history
  37. add tests for this function

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    d0be141 View commit details
    Browse the repository at this point in the history
  38. update test

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    d110ef0 View commit details
    Browse the repository at this point in the history
  39. fix tests

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    2bae4b2 View commit details
    Browse the repository at this point in the history
  40. fix to tensor conversion

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    01fb972 View commit details
    Browse the repository at this point in the history
  41. fix apply to collection

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    9b0c546 View commit details
    Browse the repository at this point in the history
  42. remove tests from init

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    674cd80 View commit details
    Browse the repository at this point in the history
  43. rename utils to convertors

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    1339fb4 View commit details
    Browse the repository at this point in the history
  44. Update pytorch_lightning/metrics/convertors.py

    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    justusschock and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    7cf1bd4 View commit details
    Browse the repository at this point in the history
  45. Update pytorch_lightning/metrics/convertors.py

    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    justusschock and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    bceb07e View commit details
    Browse the repository at this point in the history
  46. Update pytorch_lightning/metrics/convertors.py

    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    justusschock and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    d06e3d2 View commit details
    Browse the repository at this point in the history
  47. Update tests/utilities/test_apply_to_collection.py

    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    justusschock and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    e26bdff View commit details
    Browse the repository at this point in the history
  48. Update tests/utilities/test_apply_to_collection.py

    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    justusschock and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    cdf8bd5 View commit details
    Browse the repository at this point in the history
  49. Update tests/metrics/convertors.py

    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    justusschock and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    0177ec0 View commit details
    Browse the repository at this point in the history
  50. Apply suggestions from code review

    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    justusschock and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    7408170 View commit details
    Browse the repository at this point in the history
  51. rename file and fix imports

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    82988c5 View commit details
    Browse the repository at this point in the history
  52. added parametrized test

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    4fd032b View commit details
    Browse the repository at this point in the history
  53. Configuration menu
    Copy the full SHA
    ddd7e4d View commit details
    Browse the repository at this point in the history
  54. Configuration menu
    Copy the full SHA
    a25cab7 View commit details
    Browse the repository at this point in the history
  55. forgot to push these files...

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    121103c View commit details
    Browse the repository at this point in the history
  56. Configuration menu
    Copy the full SHA
    e7886d6 View commit details
    Browse the repository at this point in the history
  57. fix ddp tests

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    23dd2a5 View commit details
    Browse the repository at this point in the history
  58. remove explicit ddp destruction

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    817f09c View commit details
    Browse the repository at this point in the history
  59. add functionals of reduction metrics

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    905befa View commit details
    Browse the repository at this point in the history
  60. rename

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    2e43d46 View commit details
    Browse the repository at this point in the history
  61. Create metric.py

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    e79bea9 View commit details
    Browse the repository at this point in the history
  62. Create __init__.py

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    a522ab2 View commit details
    Browse the repository at this point in the history
  63. add tests for this function

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    281024c View commit details
    Browse the repository at this point in the history
  64. Update pytorch_lightning/metrics/metric.py

    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    justusschock and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    e354f4f View commit details
    Browse the repository at this point in the history
  65. update metric name

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    cdeecf0 View commit details
    Browse the repository at this point in the history
  66. remove example docs

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    32345f0 View commit details
    Browse the repository at this point in the history
  67. add metric tests

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    3bf2023 View commit details
    Browse the repository at this point in the history
  68. Update pytorch_lightning/metrics/metric.py

    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    justusschock and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    5517458 View commit details
    Browse the repository at this point in the history
  69. add missing type annotations

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    7557f39 View commit details
    Browse the repository at this point in the history
  70. rename utils to convertors

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    d58a1dc View commit details
    Browse the repository at this point in the history
  71. Update pytorch_lightning/metrics/metric.py

    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    justusschock and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    07d04ab View commit details
    Browse the repository at this point in the history
  72. Apply suggestions from code review

    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    justusschock and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    3515cfe View commit details
    Browse the repository at this point in the history
  73. add doctest example

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    69855c7 View commit details
    Browse the repository at this point in the history
  74. replace lambda with inlined function

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    f493b6b View commit details
    Browse the repository at this point in the history
  75. Configuration menu
    Copy the full SHA
    ef6af9b View commit details
    Browse the repository at this point in the history
  76. Configuration menu
    Copy the full SHA
    e8c36a8 View commit details
    Browse the repository at this point in the history
  77. Apply suggestions from code review

    Co-Authored-By: Jirka Borovec <Borda@users.noreply.github.com>
    justusschock and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    0b0d26c View commit details
    Browse the repository at this point in the history
  78. adjust random values

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    ebe9342 View commit details
    Browse the repository at this point in the history
  79. suppress output when seeding

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    f722d06 View commit details
    Browse the repository at this point in the history
  80. remove gpu from doctest

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    af47a87 View commit details
    Browse the repository at this point in the history
  81. Configuration menu
    Copy the full SHA
    4de6776 View commit details
    Browse the repository at this point in the history
  82. forgot to push these files...

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    cbfa32d View commit details
    Browse the repository at this point in the history
  83. add reduction tests

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    24010d4 View commit details
    Browse the repository at this point in the history
  84. add first classification tests

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    c50f3f3 View commit details
    Browse the repository at this point in the history
  85. bugfixes

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    9a20c24 View commit details
    Browse the repository at this point in the history
  86. bugfixes

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    10df5cf View commit details
    Browse the repository at this point in the history
  87. add more unit tests

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    20b458a View commit details
    Browse the repository at this point in the history
  88. fix roc score metric

    cuent authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    b90ec08 View commit details
    Browse the repository at this point in the history
  89. fix tests

    cuent authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    8ec7957 View commit details
    Browse the repository at this point in the history
  90. rename

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    9ce2250 View commit details
    Browse the repository at this point in the history
  91. rename utils to convertors

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    82cadb4 View commit details
    Browse the repository at this point in the history
  92. solve tests

    cuent authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    38b84ff View commit details
    Browse the repository at this point in the history
  93. fix ddp tests

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    d22abd0 View commit details
    Browse the repository at this point in the history
  94. fix docs

    cuent authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    56ed04e View commit details
    Browse the repository at this point in the history
  95. remove binaries

    cuent authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    fec8023 View commit details
    Browse the repository at this point in the history
  96. Update CHANGELOG.md

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    b536763 View commit details
    Browse the repository at this point in the history
  97. solve changes from rebase

    cuent authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    c43a0da View commit details
    Browse the repository at this point in the history
  98. add eos

    cuent authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    69c4566 View commit details
    Browse the repository at this point in the history
  99. test auc independently

    cuent authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    c1b9e74 View commit details
    Browse the repository at this point in the history
  100. fix formatting

    cuent authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    cfac264 View commit details
    Browse the repository at this point in the history
  101. docs

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    e225008 View commit details
    Browse the repository at this point in the history
  102. docs

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    d80a8e4 View commit details
    Browse the repository at this point in the history
  103. chlog

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    ba2ee61 View commit details
    Browse the repository at this point in the history
  104. move

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    6b6b96d View commit details
    Browse the repository at this point in the history
  105. function descriptions

    Nicki Skafte authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    c3ad1ca View commit details
    Browse the repository at this point in the history
  106. Add documentation to native metrics (#2144)

    * add docs
    
    * add docs
    
    * Apply suggestions from code review
    
    * formatting
    
    * add docs
    
    Co-authored-by: Jirka Borovec <Borda@users.noreply.github.com>
    Co-authored-by: Jirka <jirka@pytorchlightning.ai>
    3 people committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    3e979d0 View commit details
    Browse the repository at this point in the history
  107. Rename tests/metrics/test_classification.py to tests/metrics/function…

    …al/test_classification.py
    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    2967d70 View commit details
    Browse the repository at this point in the history
  108. Rename tests/metrics/test_reduction.py to tests/metrics/functional/te…

    …st_reduction.py
    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    c6df2b6 View commit details
    Browse the repository at this point in the history
  109. Configuration menu
    Copy the full SHA
    3d69f4a View commit details
    Browse the repository at this point in the history
  110. Configuration menu
    Copy the full SHA
    2373ab4 View commit details
    Browse the repository at this point in the history
  111. pep8

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    d5f4aca View commit details
    Browse the repository at this point in the history
  112. add additional converters

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    d409947 View commit details
    Browse the repository at this point in the history
  113. add additional base class

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    145b1dc View commit details
    Browse the repository at this point in the history
  114. change baseclass for some metrics

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    5608e0e View commit details
    Browse the repository at this point in the history
  115. update classification tests

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    4d4b1ea View commit details
    Browse the repository at this point in the history
  116. update converter tests

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    a6f0e67 View commit details
    Browse the repository at this point in the history
  117. update metric tests

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    ec65588 View commit details
    Browse the repository at this point in the history
  118. Configuration menu
    Copy the full SHA
    0868b6f View commit details
    Browse the repository at this point in the history
  119. tests-params

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    f5ff39b View commit details
    Browse the repository at this point in the history
  120. tests-params

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    247fc76 View commit details
    Browse the repository at this point in the history
  121. imports

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    4600978 View commit details
    Browse the repository at this point in the history
  122. pep8

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    7d98c5b View commit details
    Browse the repository at this point in the history
  123. tests-params

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    7fa09f0 View commit details
    Browse the repository at this point in the history
  124. formatting

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    ace806a View commit details
    Browse the repository at this point in the history
  125. fix test_metrics

    Nicki Skafte authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    e523eda View commit details
    Browse the repository at this point in the history
  126. typo

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    a84de91 View commit details
    Browse the repository at this point in the history
  127. formatting

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    802104e View commit details
    Browse the repository at this point in the history
  128. fix dice tests

    Nicki Skafte authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    cd790b9 View commit details
    Browse the repository at this point in the history
  129. fix decorator order

    justusschock authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    8391654 View commit details
    Browse the repository at this point in the history
  130. fix tests

    Nicki Skafte authored and Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    f71331e View commit details
    Browse the repository at this point in the history
  131. seed

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    612681b View commit details
    Browse the repository at this point in the history
  132. dice test

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    3a62ac0 View commit details
    Browse the repository at this point in the history
  133. formatting

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    9d08fc5 View commit details
    Browse the repository at this point in the history
  134. try freeze test

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    be464bf View commit details
    Browse the repository at this point in the history
  135. formatting

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    b3e0459 View commit details
    Browse the repository at this point in the history
  136. fix tests

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    d786048 View commit details
    Browse the repository at this point in the history
  137. try spawn

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    f672ab6 View commit details
    Browse the repository at this point in the history
  138. formatting

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    8c87640 View commit details
    Browse the repository at this point in the history
  139. fix

    Borda committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    d81eeb1 View commit details
    Browse the repository at this point in the history