diff --git a/OutlierDetect.py b/OutlierDetect.py index 788f3a0..b3cc965 100644 --- a/OutlierDetect.py +++ b/OutlierDetect.py @@ -33,10 +33,10 @@ def ensure_dir(dir: P): TMP_DIR = ensure_dir(PROJ_DIR.joinpath("tmp")) CACHE_DIR = ensure_dir(PROJ_DIR.joinpath('.cache')) MEMORY = Memory(location=CACHE_DIR, verbose=VERBOSE) -NUM_JOBS = 4 +NUM_JOBS = 1 def tsne(X: ndarray) -> ndarray: - return TSNE(n_jobs=2).fit_transform(X) + return TSNE(n_jobs=1).fit_transform(X) @dataclass diff --git a/desk.ico b/desk.ico index f68db39..166ca5c 100644 Binary files a/desk.ico and b/desk.ico differ diff --git a/package-exe.py b/package-exe.py index 5c97bb2..16873aa 100644 --- a/package-exe.py +++ b/package-exe.py @@ -5,4 +5,4 @@ os.system(f'python scripts/convert-ico.py ./desk.png') os.system( - f'pyinstaller ./Application.py --name {NAME} -w --noconfirm -i desk.ico') + f'pyinstaller ./app.py --name {NAME} --noconfirm -i desk.ico')