Convert the download option (A-Z) to upper case
This commit is contained in:
parent
d7a738fb7a
commit
bb1dac2f76
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ def select_model_from_default_options():
|
||||||
|
|
||||||
print()
|
print()
|
||||||
print("Input> ", end='')
|
print("Input> ", end='')
|
||||||
choice = input()[0]
|
choice = input()[0].strip().upper()
|
||||||
if choice == char:
|
if choice == char:
|
||||||
print("""\nThen type the name of your desired Hugging Face model in the format organization/name.
|
print("""\nThen type the name of your desired Hugging Face model in the format organization/name.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue