mirror of
https://github.com/finegrain-ai/refiners.git
synced 2024-11-09 23:12:02 +00:00
converters: get rid of default=True for --half
This commit is contained in:
parent
32cba1afd8
commit
9364c0ea1c
|
@ -76,7 +76,7 @@ def main() -> None:
|
|||
" source path."
|
||||
),
|
||||
)
|
||||
parser.add_argument("--half", action="store_true", default=True, help="Convert to half precision. Default: True")
|
||||
parser.add_argument("--half", action="store_true", help="Convert to half precision. Default: True")
|
||||
parser.add_argument(
|
||||
"--verbose",
|
||||
action="store_true",
|
||||
|
|
|
@ -116,7 +116,7 @@ def main() -> None:
|
|||
" source path."
|
||||
),
|
||||
)
|
||||
parser.add_argument("--half", action="store_true", default=True, help="Convert to half precision. Default: True")
|
||||
parser.add_argument("--half", action="store_true", help="Convert to half precision. Default: True")
|
||||
parser.add_argument(
|
||||
"--verbose",
|
||||
action="store_true",
|
||||
|
|
Loading…
Reference in a new issue