-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmessages.py
38 lines (30 loc) · 1.7 KB
/
messages.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
29
30
31
32
33
34
35
36
37
38
class Messages:
def sc():
print("\n##########################################################")
print("# You are about to train a Symbol Classifier model #")
print("##########################################################\n")
def e2e():
print("\n########################################################################")
print("# You are about to train an Staff-level symbol recognition model #")
print("########################################################################\n")
def new_images(images):
print("\n###########################################")
print("# Launching Data Augmentation tool #")
print("###########################################")
print(f"\nFirst, we are going to create {images} new synthetic images. Please wait.\n")
def using_document():
print("\n##########################################################")
print("# You are about to train a Document Analysis model #")
print("##########################################################\n")
def welcome():
print("=========================================")
print("\n Welcome to MuRET's User Training Tool\n")
print("=========================================\n")
def end(args):
print(f"===============================================================================")
print(f"\n The tool has ended. You can find your trained models in {args.pkg_name}.tgz\n")
print(f"===============================================================================\n")
def main():
print("Messages main")
if __name__ == '__main__':
Messages.main()