-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheasy.py
executable file
·359 lines (288 loc) · 11.7 KB
/
easy.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
import sys
import time
import os
import json
import subprocess
from pathlib import Path
from classes.response import Response
from classes.config import Config
from classes.multidatabackend import MultiDataBackend
from classes.userpromptlibrary import UserPromptLibrary
response = Response()
config_options_file_path = "/workspace/easy/settings/options.json"
settings = None
try:
with open("/workspace/easy/settings/easy.json", "r", encoding="utf-8") as setting_f:
settings = json.load(setting_f)
except Exception as e:
response.print(f"Settings file not found or error reading settings:\n{e}", "e")
sys.exit(0)
response.print(f"Settings loaded successfully", "s")
time.sleep(0.5)
response.console.clear()
def find_folder(base_path, partial_name):
try:
for folder in os.listdir(base_path):
if os.path.isdir(os.path.join(base_path, folder)) and partial_name in folder:
return folder
except FileNotFoundError:
response.print(f"Error: Directory '{base_path}' not found.", "e")
except Exception as e:
response.print(f"Error finding folder:\n{e}", "e")
return None
def find_folders(base_path, partial_name):
folders = []
try:
for folder in os.listdir(base_path):
if partial_name:
if os.path.isdir(os.path.join(base_path, folder)) and partial_name in folder:
folders.append(folder)
else:
folders.append(folder)
folders.sort()
except FileNotFoundError:
response.print(f"Error: Directory '{base_path}' not found.", "e")
except Exception as e:
response.print(f"Error finding folders:\n{e}", "e")
return folders
def init(args):
try:
response.console.clear()
response.print("Easy init\n-------------", "i")
config = Config()
verify = config.take_inputs(
instance_prompt=args[0],
instance_prompt_version=args[1],
dataset_folder=f"{settings['dataset_folder_path']}/{args[2]}",
config_folder=settings["config_folder_path"],
output_folder=settings["output_folder_path"],
sample_config_file_path=f"{settings['scenario_folder_path']}/{args[3]}/config.json",
options_file=config_options_file_path,
naming_preset_file=f"{settings['names_folder_path']}/{args[4]}.json",
)
final_config_folder = None
if verify:
config.editor()
final_config_folder = config.save()
mdb = MultiDataBackend()
verify = mdb.take_inputs(
dataset_folder=f"{settings['dataset_folder_path']}/{args[2]}",
config_folder=final_config_folder,
id_base=args[5],
resolutions=[int(value.strip()) for value in str(args[6]).split(",")]
)
if verify:
mdb.resolve()
mdb.editor()
mdb.save()
upl = UserPromptLibrary()
verify = upl.take_inputs(
instance_prompt=args[0],
save_path=final_config_folder,
sample_prompt_file_path=f"{settings['prompt_folder_path']}/{args[7]}.json"
)
if verify:
upl.save()
response.print(f"\n\nEasy init finished successfully folder: {final_config_folder}", "s")
except Exception as e:
response.print(f"Error in init:\n{e}", "e")
sys.exit(1)
def edit(args):
try:
response.print("Easy edit\n-------------", "i")
base_path = settings["config_folder_path"]
ctype = args[1]
name = args[0] # Make sure you have this variable
edit_folder = find_folder(base_path, name)
if not edit_folder:
response.print("Cannot find config folder to edit", "e")
return
if ctype == "config":
config = Config()
config.direct_editor(f"{base_path}/{edit_folder}/config.json", config_options_file_path)
elif ctype == "backend":
mdb = MultiDataBackend()
mdb.direct_editor(f"{base_path}/{edit_folder}/multidatabackend.json", settings['dataset_folder_path'])
else:
response.print("Unknown edit type. Use 'config' or 'backend'.", "e")
except Exception as e:
response.print(f"Error in edit:\n{e}", "e")
sys.exit(1)
def reinit(args):
try:
response.print("Easy reinit\n-------------", "i")
base_path = settings["config_folder_path"]
name = args[0]
edit_folder = find_folder(base_path, name)
if not edit_folder:
response.print("Cannot find config folder", "e")
return
config_file_path = f"{base_path}/{edit_folder}/config.json"
backend_file_path = f"{base_path}/{edit_folder}/multidatabackend.json"
upl_file_path = f"{base_path}/{edit_folder}/user_prompt_library.json"
config = Config()
verify = config.take_inputs(
instance_prompt=args[1],
instance_prompt_version=args[2],
dataset_folder=f"{settings['dataset_folder_path']}/{args[3]}",
config_folder=settings["config_folder_path"],
output_folder=settings["output_folder_path"],
sample_config_file_path=config_file_path,
options_file=config_options_file_path,
naming_preset_file=f"{settings['names_folder_path']}/{args[4]}.json",
)
final_config_folder = None
if verify:
config.editor()
final_config_folder = config.save()
mdb = MultiDataBackend()
verify = mdb.take_inputs(
dataset_folder=f"{settings['dataset_folder_path']}/{args[3]}",
config_folder=final_config_folder,
id_base=args[5],
resolutions=[int(value.strip()) for value in str(args[6]).split(",")]
)
if verify:
mdb.resolve()
mdb.editor()
mdb.save()
upl = UserPromptLibrary()
verify = upl.take_inputs(
instance_prompt=args[1],
save_path=final_config_folder,
sample_prompt_file_path=upl_file_path
)
if verify:
upl.save()
response.print(f"\n\nEasy reinit finished successfully folder: {final_config_folder}", "s")
except Exception as e:
response.print(f"Error in reinit:\n{e}", "e")
sys.exit(1)
def lister(args):
try:
response.print("Easy list\n-------------", "i")
ctype = args[0]
group = args[1] if len(args) > 1 else None
if ctype == "config":
base_path = settings["config_folder_path"]
folders = find_folders(base_path, group)
for folder in folders:
response.print(folder, "i")
elif ctype == "datasets":
base_path = settings['dataset_folder_path']
folders = find_folders(base_path, group)
for folder in folders:
response.print(folder, "i")
else:
response.print("Unknown list type. Use 'config' or 'datasets'.", "e")
except Exception as e:
response.print(f"Error in list:\n{e}", "e")
sys.exit(1)
def train(args):
try:
response.console.clear()
response.print("Easy train\n-------------", "i")
base_path = settings["config_folder_path"]
name = args[0]
config = find_folder(base_path, name)
if not config:
response.print("Cannot find config folder to train", "e")
return
response.print(f"Training: {config}", "i")
subprocess.run(["bash", "train.sh", settings['simple_tuner_path'], config])
except Exception as e:
response.print(f"Error in train:\n{e}", "e")
sys.exit(1)
def help(args=None):
try:
command_map = {
"init": "<instance_prompt> <version> <dataset> <scenario> <naming_preset> <id_base> <resolutions> <prompt_file>",
"edit": "<partial config folder name> <type(config/backend)>",
"reinit": "<partial config folder name> <instance_prompt> <version> <dataset> <naming_preset> <id_base> <resolutions>",
"list": "<config/datasets> [group]",
"train": "<name>",
"help": "Shows this help message",
"lm": "LoRA mover (specific functionality not documented)",
"ls": "LoRA sync (specific functionality not documented)",
"dc": "Download configuration files",
"vg": "Run validation grid",
"dg": "Run dataset grid",
"pp": "Run post process",
"tpp": "Run train post process"
}
response.print("\n", "i")
response.print("Available commands:\n", "i")
for cmd, usage in command_map.items():
response.print(f"[white]{cmd}[/white] {usage}", "i")
response.print("\n", "i")
except Exception as e:
response.print(f"Error in help:\n{e}", "e")
sys.exit(1)
def lora_mover():
# Use the full path to the script
script_path = str(Path(__file__).parent / "classes" / "lora_mover.py")
response.print(f"Running lora_mover from {script_path}", "i")
subprocess.run([sys.executable, script_path])
def lora_sync():
# Use the full path to the script
script_path = str(Path(__file__).parent / "classes" / "lora_sync.py")
response.print(f"Running lora_sync from {script_path}", "i")
subprocess.run([sys.executable, script_path])
def download_configs():
# Use the full path to the script
script_path = str(Path(__file__).parent / "classes" / "download_configs.py")
response.print(f"Running download_configs from {script_path}", "i")
subprocess.run([sys.executable, script_path])
def validation_grid():
# Use the full path to the script
script_path = str(Path(__file__).parent / "classes" / "validation_grid.py")
response.print(f"Running validation_grid from {script_path}", "i")
subprocess.run([sys.executable, script_path])
def dataset_grid():
# Use the full path to the script
script_path = str(Path(__file__).parent / "classes" / "dataset_grid.py")
response.print(f"Running dataset_grid from {script_path}", "i")
subprocess.run([sys.executable, script_path])
def post_process():
lora_mover()
download_configs()
validation_grid()
dataset_grid()
def train_post_process():
train()
lora_mover()
download_configs()
validation_grid()
dataset_grid()
def run():
try:
function_map = {
"init": init,
"reinit": reinit,
"edit": edit,
"train": train,
"list": lister,
"help": help,
"h": help,
"lm": lora_mover,
"ls": lora_sync,
"dc": download_configs,
"vg": validation_grid,
"dg": dataset_grid,
"pp": post_process,
"tpp": train_post_process
}
if len(sys.argv) > 1:
command = sys.argv[1]
args = sys.argv[2:]
if command in function_map:
function_map[command](args) if args else function_map[command]()
else:
response.print(f"Unknown command: {command}", "e")
else:
response.print("No arguments provided. Usage: easy <init|edit|reinit|train|list|help> [extra args]", "e")
except Exception as e:
response.print(f"Error in run:\n{e}", "e")
sys.exit(1)
if __name__ == "__main__":
run()