Skip to content

Commit 3e75737

Browse files
committed
2 parents a868ec3 + 15215fe commit 3e75737

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

mesmerize_core/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.0
1+
0.5.0

mesmerize_core/algorithms/cnmf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def run_algo(batch_path, uuid, data_path: str = None):
8686
cnm = cnmf.CNMF(n_processes, params=cnmf_params, dview=dview)
8787

8888
print("fitting images")
89-
cnm = cnm.fit(images)
89+
cnm.fit(images)
9090
#
9191
if "refit" in params.keys():
9292
if params["refit"] is True:

mesmerize_core/algorithms/cnmfe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def run_algo(batch_path, uuid, data_path: str = None):
8383
cnmfe_params_dict = CNMFParams(params_dict=params_dict)
8484
cnm = cnmf.CNMF(n_processes=n_processes, dview=dview, params=cnmfe_params_dict)
8585
print("Performing CNMFE")
86-
cnm = cnm.fit(images)
86+
cnm.fit(images)
8787
print("evaluating components")
8888
cnm.estimates.evaluate_components(images, cnm.params, dview=dview)
8989

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"psutil",
1313
"jupyterlab",
1414
"filelock",
15+
"mslex",
1516
]
1617

1718

0 commit comments

Comments
 (0)