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

Object Detection API: Fix the offline evaluation pipeline #6156

Closed
wants to merge 4 commits into from

Commits on Feb 5, 2019

  1. Fix invalid dict access

    Due to changes in research/object_detection/utils/config_util.py
    introduced by 99256cf.
    morincl committed Feb 5, 2019
    Configuration menu
    Copy the full SHA
    c812f6f View commit details
    Browse the repository at this point in the history
  2. Fix Python 3 compatibility issue

    Call to str.join() with List[bytes] is invalid in Python 3. This fix
    should work both in Python 2 and in Python 3.
    morincl committed Feb 5, 2019
    Configuration menu
    Copy the full SHA
    ccde3dd View commit details
    Browse the repository at this point in the history
  3. Fix Python 3 compatibility issue

    unicode has been removed in Python 3. This code should work both in
    Python 2 and in Python 3.
    morincl committed Feb 5, 2019
    Configuration menu
    Copy the full SHA
    49f31ba View commit details
    Browse the repository at this point in the history
  4. Fix use of deprecated code in offline evaluation

    research/object_detection/legacy/evaluator.py can be replaced by
    research/object_detection/eval_util.py in order to bring per-category
    metrics.
    morincl committed Feb 5, 2019
    Configuration menu
    Copy the full SHA
    cc323ab View commit details
    Browse the repository at this point in the history