fix: Fixed wrong argument passed to convert_blip_checkpoint function call (#32262)

Removed one wrong argument passed to convert_blip_checkpoint function call.
This commit is contained in:
Sai-Suraj-27 2024-07-29 14:13:09 +05:30 committed by GitHub
parent 5019aabfac
commit a2ad9d5ad5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -188,4 +188,4 @@ if __name__ == "__main__":
parser.add_argument("--config_path", default=None, type=str, help="Path to hf config.json of model to convert")
args = parser.parse_args()
convert_blip_checkpoint(args.checkpoint_path, args.pytorch_dump_folder_path, args.config_path)
convert_blip_checkpoint(args.pytorch_dump_folder_path, args.config_path)