This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import glob | |
import math | |
import os | |
import random | |
from sys import platform | |
import cv2 | |
import numpy as np | |
import torch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import pycocotools | |
from models import * | |
from utils.datasets import * | |
from utils.utils import * | |
# from eval_util import * | |
import os | |
import os.path as osp | |
import re |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"categories":[ | |
{ | |
"id":0, | |
"name":"person" | |
}, | |
{ | |
"id":1, | |
"name":"bicycle" | |
}, |