Skip to content

Commit

Permalink
Merge branch 'rel-0.6.2' of github.com:voxel51/eta into rel-0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminpkane committed Jan 13, 2022
2 parents 9a477f6 + e0942e8 commit 77d99ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eta/detectors/efficientdet.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def __init__(self, config):
self._model_dir = etau.split_archive(model_path)[0]
if not os.path.isdir(self._model_dir):
logger.info("Extracting archive '%s'", model_path)
etau.extract_archive(model_path, delete_archive=True)
etau.extract_archive(model_path)

# Load class labels
self._labels_map = etal.load_labels_map(self.config.labels_path)
Expand Down
2 changes: 1 addition & 1 deletion eta/detectors/tfmodels_detectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ def __init__(self, config):
self._model_dir = etau.split_archive(model_path)[0]
if not os.path.isdir(self._model_dir):
logger.info("Extracting archive '%s'", model_path)
etau.extract_archive(model_path, delete_archive=True)
etau.extract_archive(model_path)

# Load labels
self._category_index, self._class_labels = _parse_labels_map(
Expand Down

0 comments on commit 77d99ef

Please sign in to comment.