* CLI init refactor * fix * cleanup and (partial) docs * Adding documentation and continuing cleanup (in progress) * remove finetune.py script * continued cleanup and documentation * pytest fixes * review comments * fix * Fix * typing fixes * make sure the batch dataset patcher for multipack is always loaded when handling datasets * review comments * fix --------- Co-authored-by: Dan Saunders <dan@axolotl.ai> Co-authored-by: Wing Lian <wing@axolotl.ai>
24 lines
1.2 KiB
Python
24 lines
1.2 KiB
Python
"""Axolotl ASCII logo utils."""
|
|
|
|
from axolotl.utils.distributed import is_main_process
|
|
|
|
AXOLOTL_LOGO = """
|
|
#@@ #@@ @@# @@#
|
|
@@ @@ @@ @@ =@@# @@ #@ =@@#.
|
|
@@ #@@@@@@@@@ @@ #@#@= @@ #@ .=@@
|
|
#@@@@@@@@@@@@@@@@@ =@# @# ##= ## =####=+ @@ =#####+ =#@@###. @@
|
|
@@@@@@@@@@/ +@@/ +@@ #@ =@= #@= @@ =@#+ +#@# @@ =@#+ +#@# #@. @@
|
|
@@@@@@@@@@ ##@@ ##@@ =@# @# =@# @# @@ @@ @@ @@ #@ #@ @@
|
|
@@@@@@@@@@@@@@@@@@@@ #@=+++#@= =@@# @@ @@ @@ @@ #@ #@ @@
|
|
=@#=====@@ =@# @# @@ @@ @@ @@ #@ #@ @@
|
|
@@@@@@@@@@@@@@@@ @@@@ #@ #@= #@= +@@ #@# =@# @@. =@# =@# #@. @@
|
|
=@# @# #@= #@ =#@@@@#= +#@@= +#@@@@#= .##@@+ @@
|
|
@@@@ @@@@@@@@@@@@@@@@
|
|
"""
|
|
|
|
|
|
def print_axolotl_text_art():
|
|
"""Prints axolotl ASCII art."""
|
|
if is_main_process():
|
|
print(AXOLOTL_LOGO)
|