diff --git a/__pycache__/preprocessing.cpython-312.pyc b/__pycache__/preprocessing.cpython-312.pyc new file mode 100644 index 0000000..886c744 Binary files /dev/null and b/__pycache__/preprocessing.cpython-312.pyc differ diff --git a/__pycache__/train.cpython-312.pyc b/__pycache__/train.cpython-312.pyc new file mode 100644 index 0000000..fddd116 Binary files /dev/null and b/__pycache__/train.cpython-312.pyc differ diff --git a/check.py b/check.py index a409f11..190bdab 100644 --- a/check.py +++ b/check.py @@ -5,23 +5,19 @@ import train import preprocessing import datetime -p = False +start_file = False while True: for foldername, subfolders, filenames in os.walk(os.path.join('datasets', 'zombobase-current')): - p = True + start_file = True for filename in filenames: - if p == True: - time.sleep(3) - print('8' * 8) + if start_file == True: + time.sleep(5) preprocessing.main(os.path.join('datasets', 'zombobase-current'),'labels', 'images') - time.sleep(3) train.main() - time.sleep(3) - shutil.rmtree(os.path.join('datasets', 'zombobase-current', 'images')) shutil.rmtree(os.path.join('datasets', 'zombobase-current', 'labels')) - p = False + start_file = False