-
Notifications
You must be signed in to change notification settings - Fork 55
/
logger.py
28 lines (24 loc) · 992 Bytes
/
logger.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
def print_signature():
llasm = """\
__ __ __
/ / / / __ _/ _\ /\/\
/ / / / / _` \ \ / \
/ /___/ /__| (_| |\ \/ /\/\ \\
\____/\____/\__,_\__/\/ \/
"""
logo = """\
__ _ _ __ _
/ /(_)_ __ | | __/ _\ ___ _ _| |
/ / | | '_ \| |/ /\ \ / _ \| | | | |
/ /__| | | | | < _\ \ (_) | |_| | |
\____/_|_| |_|_|\_\\\__/\___/ \__,_|_|
"""
print ("="*80)
print (llasm)
print (logo)
print ("-"*80)
print ("Demo/HuggingFace: https://huggingface.co/spaces/LinkSoul/LLaSM")
print ("欢迎点一点 Star ^_^")
print ("="*80)
if __name__ == '__main__':
print_signature()