Skip to content

Commit

Permalink
Merge pull request #116 from bit-bots/fix_tvm_args
Browse files Browse the repository at this point in the history
Fix tvm args
  • Loading branch information
jaagut authored Dec 2, 2023
2 parents fdd857a + 3d58235 commit bdecd3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "YOEO"
version = "1.4.2"
version = "1.4.3"
description = "A hybrid CNN for object detection and semantic segmentation"
authors = ["Florian Vahl <[email protected]>", "Jan Gutsche <[email protected]>"]

Expand Down
4 changes: 1 addition & 3 deletions yoeo/scripts/convertONNXModelToTVM.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ def make_parser():
type=int,
help="Input image size")
parser.add_argument(
"-t",
"--trials",
default=20000,
type=int,
Expand Down Expand Up @@ -56,7 +55,6 @@ def make_parser():
type=str,
help="Path to the tuning records that are created for this optimization")
parser.add_argument(
"-t",
"--target",
default="vulkan -from_device=0",
type=str,
Expand Down Expand Up @@ -89,7 +87,7 @@ def run():
# Build an TVM Compiler model
tvmc_model = TVMCModel(mod, params)


# Tune the model (depending on the hardware and parameters this takes days)
if not args.no_tuning:
tvmc.tune(
Expand Down

0 comments on commit bdecd3c

Please sign in to comment.