t5: Change convert.py default to float32

This commit is contained in:
Juarez Bochi 2023-12-19 16:35:15 -05:00 committed by GitHub
parent 3f91d8b9e8
commit e39ad4cdf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -71,7 +71,7 @@ if __name__ == "__main__":
help="The model data type.",
type=str,
choices=["float16", "float32"],
default="float16",
default="float32",
)
args = parser.parse_args()
convert(args.model, args.dtype)