mirror of
https://github.com/ostris/ai-toolkit.git
synced 2026-01-26 16:39:47 +00:00
25 lines
587 B
Python
25 lines
587 B
Python
from jobs import BaseJob
|
|
from collections import OrderedDict
|
|
|
|
process_dict = {
|
|
'to_folder': 'GenerateProcess',
|
|
}
|
|
|
|
|
|
class GenerateJob(BaseJob):
|
|
|
|
def __init__(self, config: OrderedDict):
|
|
super().__init__(config)
|
|
self.device = self.get_conf('device', 'cpu')
|
|
|
|
# loads the processes from the config
|
|
self.load_processes(process_dict)
|
|
|
|
def run(self):
|
|
super().run()
|
|
print("")
|
|
print(f"Running {len(self.process)} process{'' if len(self.process) == 1 else 'es'}")
|
|
|
|
for process in self.process:
|
|
process.run()
|