qlora
qlora copied to clipboard
Why torch.float32 if args.fp16 ?
Why torch_dtype=(torch.float32 if args.fp16 else (torch.bfloat16 if args.bf16 else torch.float32)) rather than torch_dtype=(torch.float16 if args.fp16 else (torch.bfloat16 if args.bf16 else torch.float32))???
the same question.
see #172