mirror of
https://github.com/finegrain-ai/refiners.git
synced 2024-11-09 23:12:02 +00:00
fix invalid default value for --half in help
This commit is contained in:
parent
2b977bc69e
commit
94a918a474
|
@ -81,7 +81,7 @@ def main() -> None:
|
|||
" source path."
|
||||
),
|
||||
)
|
||||
parser.add_argument("--half", action="store_true", help="Convert to half precision. Default: True")
|
||||
parser.add_argument("--half", action="store_true", help="Convert to half precision.")
|
||||
parser.add_argument(
|
||||
"--verbose",
|
||||
action="store_true",
|
||||
|
|
|
@ -119,7 +119,7 @@ def main() -> None:
|
|||
" source path."
|
||||
),
|
||||
)
|
||||
parser.add_argument("--half", action="store_true", help="Convert to half precision. Default: True")
|
||||
parser.add_argument("--half", action="store_true", help="Convert to half precision.")
|
||||
parser.add_argument(
|
||||
"--verbose",
|
||||
action="store_true",
|
||||
|
|
|
@ -100,7 +100,7 @@ def main() -> None:
|
|||
" source path."
|
||||
),
|
||||
)
|
||||
parser.add_argument("--half", action="store_true", help="Convert to half precision. Default: True")
|
||||
parser.add_argument("--half", action="store_true", help="Convert to half precision.")
|
||||
parser.add_argument(
|
||||
"--verbose",
|
||||
action="store_true",
|
||||
|
|
Loading…
Reference in a new issue