Skip to content

Commit

Permalink
检测按钮会重启四个app
Browse files Browse the repository at this point in the history
  • Loading branch information
cgsdfc committed Sep 9, 2022
1 parent 29107bd commit 6114b3e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions OutlierDetect.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Binary file modified desk.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion package-exe.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')

0 comments on commit 6114b3e

Please sign in to comment.