This commit is contained in:
Daniel Han-Chen 2024-01-29 02:42:08 +11:00
commit 498dfb8acc
2 changed files with 2 additions and 2 deletions

View file

@ -736,7 +736,7 @@ class FastLlamaModel:
f"O^O/ \_/ \\ Pytorch: {torch.__version__}. CUDA = {gpu_stats.major}.{gpu_stats.minor}. CUDA Toolkit = {torch.version.cuda}.\n"\
f"\ / Bfloat16 = {str(SUPPORTS_BFLOAT16).upper()}. Xformers = {xformers_version}. FA = {HAS_FLASH_ATTENTION}.\n"\
f' "-____-" Free Apache license: http://github.com/unslothai/unsloth'
logger.warning_once(statistics)
print(statistics)
FastLlamaModel.pre_patch()
if dtype is None:

View file

@ -283,7 +283,7 @@ class FastMistralModel(FastLlamaModel):
f"O^O/ \_/ \\ Pytorch: {torch.__version__}. CUDA = {gpu_stats.major}.{gpu_stats.minor}. CUDA Toolkit = {torch.version.cuda}.\n"\
f"\ / Bfloat16 = {str(SUPPORTS_BFLOAT16).upper()}. Xformers = {xformers_version}. FA = {HAS_FLASH_ATTENTION}.\n"\
f' "-____-" Apache 2 free license: http://github.com/unslothai/unsloth'
logger.warning_once(statistics)
print(statistics)
FastMistralModel.pre_patch()
if dtype is None: