Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Некорректная работа параметра raw_output в инференс скриптах #523

Open
KirillYashin opened this issue Apr 13, 2024 · 0 comments

Comments

@KirillYashin
Copy link
Collaborator

KirillYashin commented Apr 13, 2024

Параметр raw_output неправильно обрабатывается.
В скриптах инференса он задается так:
parser.add_argument('--raw_output', help='Raw output without logs.', default=False, type=bool, dest='raw_output')
По умолчанию он стоит в False. но при попытке запустить инференс скрипт с параметром --raw_output false, значение этого параметра становится True, так как по сути проверятеся наличие непустой строки, а не ее содержание.
Возможное решение:
from distutils.util import strtobool parser.add_argument('--feature', dest='feature', type=lambda x: bool(strtobool(x)))
Проблема решения в том, что distutils deprecated, начиная с python 3.12.

Данная бага ничего не ломает, так как в скриптах вида src/benchmark/frameworks/framework/framework_process параметр raw_output либо передается с значением true, либо не передается вообще (а во всех инференс скриптах он по умолчанию False):
if raw_output: common_params = NcnnProcess._add_argument_to_cmd_line( common_params, '--raw_output', 'true')

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant