コード例 #1
0
 def __init__(self):
     download_request = Downloader.get(MODEL_URL)
     self.model_path = download_request.path
     self.call_model = True
     self.predictions = []
コード例 #2
0
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)