Skip to content

Commit

Permalink
Fix evaluate.py
Browse files Browse the repository at this point in the history
  • Loading branch information
echuraev committed Jul 18, 2023
1 parent f831a40 commit b8b4886
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evaluate.py
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@ def __init__(self, min_shape, preproc=None):
def Validate(self, m, ref_outputs=[]):
from tvm.contrib import download
classes_url = "https://raw.githubusercontent.com/onnx/models/main/vision/object_detection_segmentation/faster-rcnn/dependencies/coco_classes.txt"
classes_fn = "coco_classes.txt"
classes_fn = "coco_classes_faster.txt"
download.download(classes_url, classes_fn)
classes = [line.rstrip('\n') for line in open(classes_fn)]

Expand Down

0 comments on commit b8b4886

Please sign in to comment.