def __init__(self): download_request = Downloader.get(MODEL_URL) self.model_path = download_request.path self.call_model = True self.predictions = []
def main(): download_request = Downloader.get(MODEL_URL) model_path = download_request.path graph, score, expand = load_frozenmodel(model_path) detection(graph, score, expand, True)