mirror of
https://github.com/huggingface/transformers.git
synced 2025-08-01 18:51:14 +06:00
chore: fix function argument descriptions (#36392)
This commit is contained in:
parent
7c8916ddb5
commit
ca6ebcb9bc
@ -1523,7 +1523,7 @@ def get_user_field(
|
|||||||
is_valid_answer (`Callable`, *optional*):
|
is_valid_answer (`Callable`, *optional*):
|
||||||
If set, the question will be asked until this function returns `True` on the provided answer.
|
If set, the question will be asked until this function returns `True` on the provided answer.
|
||||||
convert_to (`Callable`, *optional*):
|
convert_to (`Callable`, *optional*):
|
||||||
If set, the answer will be passed to this function. If this function raises an error on the procided
|
If set, the answer will be passed to this function. If this function raises an error on the provided
|
||||||
answer, the question will be asked again.
|
answer, the question will be asked again.
|
||||||
fallback_message (`str`, *optional*):
|
fallback_message (`str`, *optional*):
|
||||||
A message that will be displayed each time the question is asked again to the user.
|
A message that will be displayed each time the question is asked again to the user.
|
||||||
@ -1710,7 +1710,7 @@ def get_user_input():
|
|||||||
frameworks = None
|
frameworks = None
|
||||||
else:
|
else:
|
||||||
frameworks = get_user_field(
|
frameworks = get_user_field(
|
||||||
"Please enter the list of framworks you want (pt, tf, flax) separated by spaces",
|
"Please enter the list of frameworks you want (pt, tf, flax) separated by spaces",
|
||||||
is_valid_answer=lambda x: all(p in ["pt", "tf", "flax"] for p in x.split(" ")),
|
is_valid_answer=lambda x: all(p in ["pt", "tf", "flax"] for p in x.split(" ")),
|
||||||
)
|
)
|
||||||
frameworks = list(set(frameworks.split(" ")))
|
frameworks = list(set(frameworks.split(" ")))
|
||||||
|
Loading…
Reference in New Issue
Block a user