Skip to content

Commit

Permalink
fix trivial script error
Browse files Browse the repository at this point in the history
  • Loading branch information
kzmogi committed Nov 12, 2024
1 parent ce1e570 commit 1925c4f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion audio_processing/narabas/narabas.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
AUDIO_PATH = "input.wav"
HOP_LENGTH_SEC = 0.02

parser = get_base_parser('narabas', AUDIO_PATH, None fp16_support=False)
parser = get_base_parser('narabas', AUDIO_PATH, None, fp16_support=False)
parser.add_argument(
'--onnx',
action='store_true',
Expand Down
4 changes: 2 additions & 2 deletions image_captioning/blip2/blip2.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
# ======================

parser = get_base_parser(
'BLIP-2', IMAGE_PATH, None
'BLIP-2', IMAGE_PATH, None, fp16_support=False
)
parser.add_argument(
'--onnx',
Expand All @@ -49,7 +49,7 @@
action='store_true',
help='disable ailia tokenizer.'
)
args = update_parser(parser, check_input_type=False, fp16_support=False)
args = update_parser(parser, check_input_type=False)


# ======================
Expand Down

0 comments on commit 1925c4f

Please sign in to comment.