We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51ecbf7 commit f5325d3Copy full SHA for f5325d3
test_video.py
@@ -6,7 +6,8 @@
6
7
8
def get_args():
9
- parser = argparse.ArgumentParser("You Only Look Once: Unified, Real-Time Object Detection")
+ parser = argparse.ArgumentParser(
10
+ "EfficientDet: Scalable and Efficient Object Detection implementation by Signatrix GmbH")
11
parser.add_argument("--image_size", type=int, default=512, help="The common width and height for all images")
12
parser.add_argument("--cls_threshold", type=float, default=0.5)
13
parser.add_argument("--nms_threshold", type=float, default=0.5)
0 commit comments