Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dev to main for release 1.11.3 #1380

Merged
merged 4 commits into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.11.2
1.11.3
1 change: 0 additions & 1 deletion caiman/utils/image_preprocessing_keras.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
import re
from scipy import linalg
import scipy.ndimage as ndi
from six.moves import range
import threading
import warnings

Expand Down
2 changes: 1 addition & 1 deletion demos/notebooks/demo_OnACID_mesoscope.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"logfile = None # Replace with a path if you want to log to a file\n",
"logger = logging.getLogger('caiman')\n",
"logger.setLevel(logging.INFO)\n",
"logfmt = '%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s'\n",
"logfmt = logging.Formatter('%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s')\n",
"if logfile is not None:\n",
" handler = logging.FileHandler(logfile)\n",
"else:\n",
Expand Down
2 changes: 1 addition & 1 deletion demos/notebooks/demo_Ring_CNN.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"logfile = None # Replace with a path if you want to log to a file\n",
"logger = logging.getLogger('caiman')\n",
"logger.setLevel(logging.INFO)\n",
"logfmt = '%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s'\n",
"logfmt = logging.Formatter('%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s')\n",
"if logfile is not None:\n",
" handler = logging.FileHandler(logfile)\n",
"else:\n",
Expand Down
2 changes: 1 addition & 1 deletion demos/notebooks/demo_VST.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"logfile = None # Replace with a path if you want to log to a file\n",
"logger = logging.getLogger('caiman')\n",
"logger.setLevel(logging.INFO)\n",
"logfmt = '%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s'\n",
"logfmt = logging.Formatter('%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s')\n",
"if logfile is not None:\n",
" handler = logging.FileHandler(logfile)\n",
"else:\n",
Expand Down
2 changes: 1 addition & 1 deletion demos/notebooks/demo_caiman_cnmf_3D.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"logfile = None # Replace with a path if you want to log to a file\n",
"logger = logging.getLogger('caiman')\n",
"logger.setLevel(logging.INFO)\n",
"logfmt = '%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s'\n",
"logfmt = logging.Formatter('%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s')\n",
"if logfile is not None:\n",
" handler = logging.FileHandler(logfile)\n",
"else:\n",
Expand Down
2 changes: 1 addition & 1 deletion demos/notebooks/demo_dendritic.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
" log_file = None\n",
"logger = logging.getLogger('caiman')\n",
"logger.setLevel(logging.INFO)\n",
"logfmt = '%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s'\n",
"logfmt = logging.Formatter('%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s')\n",
"if log_file is not None:\n",
" handler = logging.FileHandler(log_file)\n",
"else:\n",
Expand Down
2 changes: 1 addition & 1 deletion demos/notebooks/demo_motion_correction.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"logfile = None # Replace with a path if you want to log to a file\n",
"logger = logging.getLogger('caiman')\n",
"logger.setLevel(logging.INFO)\n",
"logfmt = '%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s'\n",
"logfmt = logging.Formatter('%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s')\n",
"if logfile is not None:\n",
" handler = logging.FileHandler(logfile)\n",
"else:\n",
Expand Down
2 changes: 1 addition & 1 deletion demos/notebooks/demo_online_3D.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"logfile = None # Replace with a path if you want to log to a file\n",
"logger = logging.getLogger('caiman')\n",
"logger.setLevel(logging.WARNING)\n",
"logfmt = '%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s'\n",
"logfmt = logging.Formatter('%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s')\n",
"if logfile is not None:\n",
" handler = logging.FileHandler(logfile)\n",
"else:\n",
Expand Down
2 changes: 1 addition & 1 deletion demos/notebooks/demo_online_cnmfE.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"logfile = None # Replace with a path if you want to log to a file\n",
"logger = logging.getLogger('caiman')\n",
"logger.setLevel(logging.WARNING)\n",
"logfmt = '%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s'\n",
"logfmt = logging.Formatter('%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s')\n",
"if logfile is not None:\n",
" handler = logging.FileHandler(logfile)\n",
"else:\n",
Expand Down
2 changes: 1 addition & 1 deletion demos/notebooks/demo_pipeline.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
"logfile = None # Replace with a path if you want to log to a file\n",
"logger = logging.getLogger('caiman')\n",
"logger.setLevel(logging.WARNING)\n",
"logfmt = '%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s'\n",
"logfmt = logging.Formatter('%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s')\n",
"if logfile is not None:\n",
" handler = logging.FileHandler(logfile)\n",
"else:\n",
Expand Down
2 changes: 1 addition & 1 deletion demos/notebooks/demo_pipeline_cnmfE.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"logfile = None # Replace with a path if you want to log to a file\n",
"logger = logging.getLogger('caiman')\n",
"logger.setLevel(logging.WARNING)\n",
"logfmt = '%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s'\n",
"logfmt = logging.Formatter('%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s')\n",
"if logfile is not None:\n",
" handler = logging.FileHandler(logfile)\n",
"else:\n",
Expand Down
2 changes: 1 addition & 1 deletion demos/notebooks/demo_pipeline_voltage_imaging.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"logfile = None # Replace with a path if you want to log to a file\n",
"logger = logging.getLogger('caiman')\n",
"logger.setLevel(logging.ERROR)\n",
"logfmt = '%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s'\n",
"logfmt = logging.Formatter('%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s')\n",
"if logfile is not None:\n",
" handler = logging.FileHandler(logfile)\n",
"else:\n",
Expand Down
2 changes: 1 addition & 1 deletion demos/notebooks/demo_realtime_cnmfE.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"logfile = None # Replace with a path if you want to log to a file\n",
"logger = logging.getLogger('caiman')\n",
"logger.setLevel(logging.WARNING)\n",
"logfmt = '%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s'\n",
"logfmt = logging.Formatter('%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s')\n",
"if logfile is not None:\n",
" handler = logging.FileHandler(logfile)\n",
"else:\n",
Expand Down
2 changes: 1 addition & 1 deletion demos/notebooks/demo_seeded_CNMF.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"logfile = None # Replace with a path if you want to log to a file\n",
"logger = logging.getLogger('caiman')\n",
"logger.setLevel(logging.WARNING)\n",
"logfmt = '%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s'\n",
"logfmt = logging.Formatter('%(relativeCreated)12d [%(filename)s:%(funcName)20s():%(lineno)s] [%(process)d] %(message)s')\n",
"if logfile is not None:\n",
" handler = logging.FileHandler(logfile)\n",
"else:\n",
Expand Down
1 change: 0 additions & 1 deletion requirements_gpu.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
av
coverage
cython
future
h5py
ipykernel
ipython
Expand Down