We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent beae794 commit fd2672bCopy full SHA for fd2672b
convert_hf_to_gguf.py
@@ -481,7 +481,7 @@ def func(modelcls: AnyModel) -> AnyModel:
481
@classmethod
482
def print_registered_models(cls):
483
for name in cls._model_classes.keys():
484
- print(f"- {name}")
+ logger.error(f"- {name}")
485
486
487
def from_model_architecture(cls, arch: str) -> type[Model]:
@@ -5005,7 +5005,7 @@ def main() -> None:
5005
args = parse_args()
5006
5007
if args.print_supported_models:
5008
- print("Supported models:")
+ logger.error("Supported models:")
5009
Model.print_registered_models()
5010
sys.exit(0)
5011
0 commit comments