diff --git a/allensdk/__init__.py b/allensdk/__init__.py index fab726a0b..360322330 100644 --- a/allensdk/__init__.py +++ b/allensdk/__init__.py @@ -35,7 +35,7 @@ # import logging -__version__ = '2.15.0' +__version__ = '2.15.1' try: diff --git a/allensdk/brain_observatory/behavior/behavior_project_cache/project_apis/data_io/behavior_neuropixels_project_cloud_api.py b/allensdk/brain_observatory/behavior/behavior_project_cache/project_apis/data_io/behavior_neuropixels_project_cloud_api.py index aab4f77cd..43d67605d 100644 --- a/allensdk/brain_observatory/behavior/behavior_project_cache/project_apis/data_io/behavior_neuropixels_project_cloud_api.py +++ b/allensdk/brain_observatory/behavior/behavior_project_cache/project_apis/data_io/behavior_neuropixels_project_cloud_api.py @@ -1,6 +1,6 @@ import numpy as np import pandas as pd -from allensdk.brain_observatory.behavior.behavior_project_cache.project_apis.data_io.project_cloud_api_base import ( # noqa +from allensdk.brain_observatory.behavior.behavior_project_cache.project_apis.data_io.project_cloud_api_base import ( # noqa: E501 ProjectCloudApiBase, ) from allensdk.brain_observatory.behavior.behavior_session import ( @@ -124,7 +124,9 @@ def f(): return f - if not probes_meta.empty: + # Backwards compatibility check for VBN data that doesn't contain + # the LFP, probes dataset. + if not probes_meta.empty and "file_id" in probes_meta.columns: probe_data_path_map = { p.name: make_lazy_load_filepath_function( file_id=str(int(getattr(p, self.cache.file_id_column))) diff --git a/allensdk/brain_observatory/behavior/behavior_session.py b/allensdk/brain_observatory/behavior/behavior_session.py index 4959ba298..413fdabf1 100644 --- a/allensdk/brain_observatory/behavior/behavior_session.py +++ b/allensdk/brain_observatory/behavior/behavior_session.py @@ -1,79 +1,96 @@ import datetime -from typing import Any, List, Dict, Optional, Type +import pathlib import warnings +from typing import Any, Dict, List, Optional, Type -import pynwb -import pandas as pd import numpy as np +import pandas as pd +import pynwb import pytz -import pathlib - -from pynwb import NWBFile - from allensdk import OneResultExpectedError -from allensdk.brain_observatory.behavior.data_files.eye_tracking_video import \ - EyeTrackingVideo -from allensdk.brain_observatory.sync_dataset import Dataset as SyncDataset from allensdk.brain_observatory import sync_utilities - -from allensdk.brain_observatory.behavior.data_files import \ - BehaviorStimulusFile, SyncFile, MappingStimulusFile, ReplayStimulusFile - +from allensdk.brain_observatory.behavior.data_files import ( + BehaviorStimulusFile, + MappingStimulusFile, + ReplayStimulusFile, + SyncFile, +) +from allensdk.brain_observatory.behavior.data_files.eye_tracking_file import ( + EyeTrackingFile, +) +from allensdk.brain_observatory.behavior.data_files.eye_tracking_metadata_file import ( # noqa: E501 + EyeTrackingMetadataFile, +) +from allensdk.brain_observatory.behavior.data_files.eye_tracking_video import ( + EyeTrackingVideo, +) from allensdk.brain_observatory.behavior.data_files.stimulus_file import ( StimulusFileLookup, - stimulus_lookup_from_json) - -from allensdk.brain_observatory.behavior.data_files.eye_tracking_file import \ - EyeTrackingFile -from allensdk.brain_observatory.behavior.\ - data_files.eye_tracking_metadata_file import EyeTrackingMetadataFile -from allensdk.brain_observatory.behavior.data_objects.eye_tracking \ - .eye_tracking_table import EyeTrackingTable -from allensdk.brain_observatory.behavior.data_objects.eye_tracking\ - .rig_geometry import \ - RigGeometry as EyeTrackingRigGeometry -from allensdk.brain_observatory.behavior.data_objects.stimuli.presentations \ - import \ - Presentations -from allensdk.brain_observatory.behavior.data_objects.stimuli.templates \ - import \ - Templates -from allensdk.core import \ - JsonReadableInterface, NwbReadableInterface, \ - LimsReadableInterface -from allensdk.core import \ - NwbWritableInterface + stimulus_lookup_from_json, +) +from allensdk.brain_observatory.behavior.data_objects import ( + BehaviorSessionId, + RunningAcquisition, + RunningSpeed, + StimulusTimestamps, +) +from allensdk.brain_observatory.behavior.data_objects.eye_tracking.eye_tracking_table import ( # noqa: E501 + EyeTrackingTable, +) +from allensdk.brain_observatory.behavior.data_objects.eye_tracking.rig_geometry import ( # noqa: E501 + RigGeometry as EyeTrackingRigGeometry, +) from allensdk.brain_observatory.behavior.data_objects.licks import Licks -from allensdk.brain_observatory.behavior.data_objects.metadata \ - .behavior_metadata.behavior_metadata import \ - BehaviorMetadata, get_expt_description -from allensdk.brain_observatory.behavior.data_objects.metadata\ - .behavior_metadata.date_of_acquisition import \ - DateOfAcquisition +from allensdk.brain_observatory.behavior.data_objects.metadata.behavior_metadata.behavior_metadata import ( # noqa: E501 + BehaviorMetadata, + get_expt_description, +) +from allensdk.brain_observatory.behavior.data_objects.metadata.behavior_metadata.date_of_acquisition import ( # noqa: E501 + DateOfAcquisition, +) from allensdk.brain_observatory.behavior.data_objects.rewards import Rewards -from allensdk.brain_observatory.behavior.data_objects.stimuli.stimuli import \ - Stimuli -from allensdk.brain_observatory.behavior.data_objects.task_parameters import \ - TaskParameters -from allensdk.brain_observatory.behavior.data_objects.trials.trials \ - import Trials -from allensdk.core import DataObject -from allensdk.brain_observatory.behavior.data_objects import ( - BehaviorSessionId, StimulusTimestamps, RunningSpeed, RunningAcquisition +from allensdk.brain_observatory.behavior.data_objects.stimuli.presentations import ( # noqa: E501 + Presentations, +) +from allensdk.brain_observatory.behavior.data_objects.stimuli.stimuli import ( + Stimuli, +) +from allensdk.brain_observatory.behavior.data_objects.stimuli.templates import ( # noqa: E501 + Templates, +) +from allensdk.brain_observatory.behavior.data_objects.task_parameters import ( + TaskParameters, +) +from allensdk.brain_observatory.behavior.data_objects.trials.trials import ( + Trials, +) +from allensdk.brain_observatory.behavior.stimulus_processing import ( + compute_trials_id_for_stimulus, +) +from allensdk.brain_observatory.sync_dataset import Dataset as SyncDataset +from allensdk.core import ( + DataObject, + JsonReadableInterface, + LimsReadableInterface, + NwbReadableInterface, + NwbWritableInterface, ) -from allensdk.brain_observatory.behavior.stimulus_processing import \ - compute_trials_id_for_stimulus - from allensdk.core.auth_config import LIMS_DB_CREDENTIAL_MAP -from allensdk.internal.api import db_connection_creator, PostgresQueryMixin +from allensdk.internal.api import PostgresQueryMixin, db_connection_creator +from pynwb import NWBFile -class BehaviorSession(DataObject, LimsReadableInterface, - NwbReadableInterface, - JsonReadableInterface, NwbWritableInterface): +class BehaviorSession( + DataObject, + LimsReadableInterface, + NwbReadableInterface, + JsonReadableInterface, + NwbWritableInterface, +): """Represents data from a single Visual Behavior behavior session. Initialize by using class methods `from_lims` or `from_nwb_path`. """ + def __init__( self, behavior_session_id: BehaviorSessionId, @@ -91,8 +108,9 @@ def __init__( eye_tracking_table: Optional[EyeTrackingTable] = None, eye_tracking_rig_geometry: Optional[EyeTrackingRigGeometry] = None, ): - super().__init__(name='behavior_session', value=None, - is_value_self=True) + super().__init__( + name="behavior_session", value=None, is_value_self=True + ) self._behavior_session_id = behavior_session_id self._licks = licks @@ -113,16 +131,16 @@ def __init__( @classmethod def from_json( - cls, - session_data: dict, - read_stimulus_presentations_table_from_file=False, - stimulus_presentation_columns: Optional[List[str]] = None, - stimulus_presentation_exclude_columns: Optional[List[str]] = None, - eye_tracking_z_threshold: float = 3.0, - eye_tracking_dilation_frames: int = 2, - eye_tracking_drop_frames: bool = False, - sync_file_permissive: bool = False, - running_speed_load_from_multiple_stimulus_files: bool = False + cls, + session_data: dict, + read_stimulus_presentations_table_from_file=False, + stimulus_presentation_columns: Optional[List[str]] = None, + stimulus_presentation_exclude_columns: Optional[List[str]] = None, + eye_tracking_z_threshold: float = 3.0, + eye_tracking_dilation_frames: int = 2, + eye_tracking_drop_frames: bool = False, + sync_file_permissive: bool = False, + running_speed_load_from_multiple_stimulus_files: bool = False, ) -> "BehaviorSession": """ @@ -158,138 +176,156 @@ def from_json( `BehaviorSession` instance """ - if 'monitor_delay' not in session_data: + if "monitor_delay" not in session_data: monitor_delay = cls._get_monitor_delay() else: - monitor_delay = session_data['monitor_delay'] + monitor_delay = session_data["monitor_delay"] behavior_session_id = BehaviorSessionId.from_json( - dict_repr=session_data) + dict_repr=session_data + ) stimulus_file_lookup = stimulus_lookup_from_json( - dict_repr=session_data) + dict_repr=session_data + ) - if 'sync_file' in session_data: - sync_file = SyncFile.from_json(dict_repr=session_data, - permissive=sync_file_permissive) + if "sync_file" in session_data: + sync_file = SyncFile.from_json( + dict_repr=session_data, permissive=sync_file_permissive + ) else: sync_file = None if running_speed_load_from_multiple_stimulus_files: - running_acquisition = \ + running_acquisition = ( RunningAcquisition.from_multiple_stimulus_files( behavior_stimulus_file=( - BehaviorStimulusFile.from_json( - dict_repr=session_data)), + BehaviorStimulusFile.from_json(dict_repr=session_data) + ), mapping_stimulus_file=MappingStimulusFile.from_json( - dict_repr=session_data), + dict_repr=session_data + ), replay_stimulus_file=ReplayStimulusFile.from_json( - dict_repr=session_data), - sync_file=SyncFile.from_json(dict_repr=session_data) - - ) - raw_running_speed = \ - RunningSpeed.from_multiple_stimulus_files( - behavior_stimulus_file=( - BehaviorStimulusFile.from_json( - dict_repr=session_data)), - mapping_stimulus_file=MappingStimulusFile.from_json( - dict_repr=session_data), - replay_stimulus_file=ReplayStimulusFile.from_json( - dict_repr=session_data), - sync_file=SyncFile.from_json(dict_repr=session_data), - filtered=False - ) - running_speed = \ - RunningSpeed.from_multiple_stimulus_files( - behavior_stimulus_file=( - BehaviorStimulusFile.from_json( - dict_repr=session_data)), - mapping_stimulus_file=MappingStimulusFile.from_json( - dict_repr=session_data), - replay_stimulus_file=ReplayStimulusFile.from_json( - dict_repr=session_data), + dict_repr=session_data + ), sync_file=SyncFile.from_json(dict_repr=session_data), - filtered=True ) + ) + raw_running_speed = RunningSpeed.from_multiple_stimulus_files( + behavior_stimulus_file=( + BehaviorStimulusFile.from_json(dict_repr=session_data) + ), + mapping_stimulus_file=MappingStimulusFile.from_json( + dict_repr=session_data + ), + replay_stimulus_file=ReplayStimulusFile.from_json( + dict_repr=session_data + ), + sync_file=SyncFile.from_json(dict_repr=session_data), + filtered=False, + ) + running_speed = RunningSpeed.from_multiple_stimulus_files( + behavior_stimulus_file=( + BehaviorStimulusFile.from_json(dict_repr=session_data) + ), + mapping_stimulus_file=MappingStimulusFile.from_json( + dict_repr=session_data + ), + replay_stimulus_file=ReplayStimulusFile.from_json( + dict_repr=session_data + ), + sync_file=SyncFile.from_json(dict_repr=session_data), + filtered=True, + ) else: - behavior_stimulus_file = \ - stimulus_file_lookup.behavior_stimulus_file + behavior_stimulus_file = ( + stimulus_file_lookup.behavior_stimulus_file + ) running_acquisition = RunningAcquisition.from_stimulus_file( behavior_stimulus_file=behavior_stimulus_file, - sync_file=sync_file) + sync_file=sync_file, + ) raw_running_speed = RunningSpeed.from_stimulus_file( behavior_stimulus_file=behavior_stimulus_file, sync_file=sync_file, - filtered=False + filtered=False, ) running_speed = RunningSpeed.from_stimulus_file( behavior_stimulus_file=behavior_stimulus_file, - sync_file=sync_file + sync_file=sync_file, ) metadata = BehaviorMetadata.from_json(dict_repr=session_data) - (stimulus_timestamps, - licks, - rewards, - stimuli, - task_parameters, - trials) = cls._read_data_from_stimulus_file( - stimulus_file_lookup=stimulus_file_lookup, - behavior_session_id=behavior_session_id.value, - sync_file=sync_file, - monitor_delay=monitor_delay, - include_stimuli=( - not read_stimulus_presentations_table_from_file), - stimulus_presentation_columns=stimulus_presentation_columns) + ( + stimulus_timestamps, + licks, + rewards, + stimuli, + task_parameters, + trials, + ) = cls._read_data_from_stimulus_file( + stimulus_file_lookup=stimulus_file_lookup, + behavior_session_id=behavior_session_id.value, + sync_file=sync_file, + monitor_delay=monitor_delay, + include_stimuli=(not read_stimulus_presentations_table_from_file), + stimulus_presentation_columns=stimulus_presentation_columns, + ) if read_stimulus_presentations_table_from_file: stimuli = Stimuli( presentations=Presentations.from_path( - path=session_data['stim_table_file'], - behavior_session_id=session_data['behavior_session_id'], - exclude_columns=stimulus_presentation_exclude_columns + path=session_data["stim_table_file"], + behavior_session_id=session_data["behavior_session_id"], + exclude_columns=stimulus_presentation_exclude_columns, ), templates=Templates.from_stimulus_file( - stimulus_file=stimulus_file_lookup.behavior_stimulus_file) + stimulus_file=stimulus_file_lookup.behavior_stimulus_file + ), ) date_of_acquisition = DateOfAcquisition.from_json( - dict_repr=session_data)\ - .validate( + dict_repr=session_data + ).validate( stimulus_file=stimulus_file_lookup.behavior_stimulus_file, - behavior_session_id=behavior_session_id.value) + behavior_session_id=behavior_session_id.value, + ) try: eye_tracking_file = EyeTrackingFile.from_json( - dict_repr=session_data) + dict_repr=session_data + ) except KeyError: eye_tracking_file = None if eye_tracking_file is None: # Return empty data to match what is returned by from_nwb. eye_tracking_table = EyeTrackingTable( - eye_tracking=EyeTrackingTable._get_empty_df()) + eye_tracking=EyeTrackingTable._get_empty_df() + ) eye_tracking_rig_geometry = None else: try: eye_tracking_metadata_file = EyeTrackingMetadataFile.from_json( - dict_repr=session_data) + dict_repr=session_data + ) except KeyError: eye_tracking_metadata_file = None eye_tracking_table = cls._read_eye_tracking_table( - eye_tracking_file=eye_tracking_file, - eye_tracking_metadata_file=eye_tracking_metadata_file, - sync_file=sync_file, - z_threshold=eye_tracking_z_threshold, - dilation_frames=eye_tracking_dilation_frames) + eye_tracking_file=eye_tracking_file, + eye_tracking_metadata_file=eye_tracking_metadata_file, + sync_file=sync_file, + z_threshold=eye_tracking_z_threshold, + dilation_frames=eye_tracking_dilation_frames, + ) eye_tracking_rig_geometry = EyeTrackingRigGeometry.from_json( - dict_repr=session_data) + dict_repr=session_data + ) return cls( behavior_session_id=behavior_session_id, @@ -305,18 +341,20 @@ def from_json( trials=trials, date_of_acquisition=date_of_acquisition, eye_tracking_table=eye_tracking_table, - eye_tracking_rig_geometry=eye_tracking_rig_geometry + eye_tracking_rig_geometry=eye_tracking_rig_geometry, ) @classmethod - def from_lims(cls, behavior_session_id: int, - lims_db: Optional[PostgresQueryMixin] = None, - sync_file: Optional[SyncFile] = None, - monitor_delay: Optional[float] = None, - date_of_acquisition: Optional[DateOfAcquisition] = None, - eye_tracking_z_threshold: float = 3.0, - eye_tracking_dilation_frames: int = 2) \ - -> "BehaviorSession": + def from_lims( + cls, + behavior_session_id: int, + lims_db: Optional[PostgresQueryMixin] = None, + sync_file: Optional[SyncFile] = None, + monitor_delay: Optional[float] = None, + date_of_acquisition: Optional[DateOfAcquisition] = None, + eye_tracking_z_threshold: float = 3.0, + eye_tracking_dilation_frames: int = 2, + ) -> "BehaviorSession": """ Parameters @@ -356,8 +394,8 @@ def from_lims(cls, behavior_session_id: int, if sync_file is None: try: sync_file = SyncFile.from_lims( - db=lims_db, - behavior_session_id=behavior_session_id) + db=lims_db, behavior_session_id=behavior_session_id + ) except OneResultExpectedError: sync_file = None @@ -366,60 +404,69 @@ def from_lims(cls, behavior_session_id: int, stimulus_file_lookup = StimulusFileLookup() stimulus_file_lookup.behavior_stimulus_file = ( - BehaviorStimulusFile.from_lims( - db=lims_db, - behavior_session_id=behavior_session_id.value)) + BehaviorStimulusFile.from_lims( + db=lims_db, behavior_session_id=behavior_session_id.value + ) + ) running_acquisition = RunningAcquisition.from_stimulus_file( behavior_stimulus_file=stimulus_file_lookup.behavior_stimulus_file, - sync_file=sync_file) + sync_file=sync_file, + ) raw_running_speed = RunningSpeed.from_stimulus_file( behavior_stimulus_file=stimulus_file_lookup.behavior_stimulus_file, sync_file=sync_file, - filtered=False) + filtered=False, + ) running_speed = RunningSpeed.from_stimulus_file( behavior_stimulus_file=stimulus_file_lookup.behavior_stimulus_file, sync_file=sync_file, - filtered=True) + filtered=True, + ) behavior_metadata = BehaviorMetadata.from_lims( behavior_session_id=behavior_session_id, lims_db=lims_db ) - (stimulus_timestamps, - licks, - rewards, - stimuli, - task_parameters, - trials) = \ - cls._read_data_from_stimulus_file( - behavior_session_id=behavior_session_id.value, - stimulus_file_lookup=stimulus_file_lookup, - sync_file=sync_file, - monitor_delay=monitor_delay - ) + ( + stimulus_timestamps, + licks, + rewards, + stimuli, + task_parameters, + trials, + ) = cls._read_data_from_stimulus_file( + behavior_session_id=behavior_session_id.value, + stimulus_file_lookup=stimulus_file_lookup, + sync_file=sync_file, + monitor_delay=monitor_delay, + ) if date_of_acquisition is None: date_of_acquisition = DateOfAcquisition.from_lims( - behavior_session_id=behavior_session_id.value, lims_db=lims_db) + behavior_session_id=behavior_session_id.value, lims_db=lims_db + ) date_of_acquisition = date_of_acquisition.validate( stimulus_file=stimulus_file_lookup.behavior_stimulus_file, - behavior_session_id=behavior_session_id.value) + behavior_session_id=behavior_session_id.value, + ) eye_tracking_file = EyeTrackingFile.from_lims( - db=lims_db, - behavior_session_id=behavior_session_id.value) + db=lims_db, behavior_session_id=behavior_session_id.value + ) if eye_tracking_file is None: # Return empty data to match what is returned by from_nwb. eye_tracking_table = EyeTrackingTable( - eye_tracking=EyeTrackingTable._get_empty_df()) + eye_tracking=EyeTrackingTable._get_empty_df() + ) eye_tracking_rig_geometry = None else: eye_tracking_video = EyeTrackingVideo.from_lims( - db=lims_db, behavior_session_id=behavior_session_id.value) + db=lims_db, behavior_session_id=behavior_session_id.value + ) eye_tracking_metadata_file = None @@ -429,10 +476,12 @@ def from_lims(cls, behavior_session_id: int, eye_tracking_video=eye_tracking_video, sync_file=sync_file, z_threshold=eye_tracking_z_threshold, - dilation_frames=eye_tracking_dilation_frames) + dilation_frames=eye_tracking_dilation_frames, + ) eye_tracking_rig_geometry = EyeTrackingRigGeometry.from_lims( - behavior_session_id=behavior_session_id.value, lims_db=lims_db) + behavior_session_id=behavior_session_id.value, lims_db=lims_db + ) return BehaviorSession( behavior_session_id=behavior_session_id, @@ -448,16 +497,16 @@ def from_lims(cls, behavior_session_id: int, trials=trials, date_of_acquisition=date_of_acquisition, eye_tracking_table=eye_tracking_table, - eye_tracking_rig_geometry=eye_tracking_rig_geometry + eye_tracking_rig_geometry=eye_tracking_rig_geometry, ) @classmethod def from_nwb( - cls, - nwbfile: NWBFile, - add_is_change_to_stimulus_presentations_table=True, - eye_tracking_z_threshold: float = 3.0, - eye_tracking_dilation_frames: int = 2 + cls, + nwbfile: NWBFile, + add_is_change_to_stimulus_presentations_table=True, + eye_tracking_z_threshold: float = 3.0, + eye_tracking_dilation_frames: int = 2, ) -> "BehaviorSession": """ @@ -491,25 +540,33 @@ def from_nwb( stimuli = Stimuli.from_nwb( nwbfile=nwbfile, add_is_change_to_presentations_table=( - add_is_change_to_stimulus_presentations_table) + add_is_change_to_stimulus_presentations_table + ), ) task_parameters = TaskParameters.from_nwb(nwbfile=nwbfile) trials = cls._trials_class().from_nwb(nwbfile=nwbfile) date_of_acquisition = DateOfAcquisition.from_nwb(nwbfile=nwbfile) with warnings.catch_warnings(): - warnings.filterwarnings(action='ignore', - message='This nwb file with identifier ', - category=UserWarning) + warnings.filterwarnings( + action="ignore", + message="This nwb file with identifier ", + category=UserWarning, + ) eye_tracking_rig_geometry = EyeTrackingRigGeometry.from_nwb( - nwbfile=nwbfile) + nwbfile=nwbfile + ) with warnings.catch_warnings(): - warnings.filterwarnings(action='ignore', - message='This nwb file with identifier ', - category=UserWarning) + warnings.filterwarnings( + action="ignore", + message="This nwb file with identifier ", + category=UserWarning, + ) eye_tracking_table = EyeTrackingTable.from_nwb( - nwbfile=nwbfile, z_threshold=eye_tracking_z_threshold, - dilation_frames=eye_tracking_dilation_frames) + nwbfile=nwbfile, + z_threshold=eye_tracking_z_threshold, + dilation_frames=eye_tracking_dilation_frames, + ) return cls( behavior_session_id=behavior_session_id, @@ -525,14 +582,11 @@ def from_nwb( trials=trials, date_of_acquisition=date_of_acquisition, eye_tracking_table=eye_tracking_table, - eye_tracking_rig_geometry=eye_tracking_rig_geometry + eye_tracking_rig_geometry=eye_tracking_rig_geometry, ) @classmethod - def from_nwb_path( - cls, - nwb_path: str, - **kwargs) -> "BehaviorSession": + def from_nwb_path(cls, nwb_path: str, **kwargs) -> "BehaviorSession": """ Parameters @@ -547,17 +601,15 @@ def from_nwb_path( An instantiation of a `BehaviorSession` """ nwb_path = str(nwb_path) - with pynwb.NWBHDF5IO(nwb_path, 'r', load_namespaces=True) as read_io: + with pynwb.NWBHDF5IO(nwb_path, "r", load_namespaces=True) as read_io: nwbfile = read_io.read() - return cls.from_nwb( - nwbfile=nwbfile, - **kwargs) + return cls.from_nwb(nwbfile=nwbfile, **kwargs) def to_nwb( - self, - add_metadata=True, - include_experiment_description=True, - stimulus_presentations_stimulus_column_name: str = 'stimulus_name' + self, + add_metadata=True, + include_experiment_description=True, + stimulus_presentations_stimulus_column_name: str = "stimulus_name", ) -> NWBFile: """ @@ -573,7 +625,8 @@ def to_nwb( """ if include_experiment_description: experiment_description = get_expt_description( - session_type=self._get_session_type()) + session_type=self._get_session_type() + ) else: experiment_description = None @@ -584,7 +637,8 @@ def to_nwb( file_create_date=pytz.utc.localize(datetime.datetime.now()), institution="Allen Institute for Brain Science", keywords=self._get_keywords(), - experiment_description=experiment_description) + experiment_description=experiment_description, + ) self._stimulus_timestamps.to_nwb(nwbfile=nwbfile) self._running_acquisition.to_nwb(nwbfile=nwbfile) @@ -599,7 +653,9 @@ def to_nwb( self._stimuli.to_nwb( nwbfile=nwbfile, presentations_stimulus_column_name=( - stimulus_presentations_stimulus_column_name)) + stimulus_presentations_stimulus_column_name + ), + ) self._task_parameters.to_nwb(nwbfile=nwbfile) self._trials.to_nwb(nwbfile=nwbfile) if self._eye_tracking is not None: @@ -626,14 +682,15 @@ def list_data_attributes_and_methods(self) -> List[str]: "from_json", "from_lims", "from_nwb_path", - "list_data_attributes_and_methods" + "list_data_attributes_and_methods", } attrs_and_methods_to_ignore.update(dir(NwbReadableInterface)) attrs_and_methods_to_ignore.update(dir(NwbWritableInterface)) attrs_and_methods_to_ignore.update(dir(DataObject)) class_dir = dir(self) attrs_and_methods = [ - r for r in class_dir + r + for r in class_dir if (r not in attrs_and_methods_to_ignore and not r.startswith("_")) ] return attrs_and_methods @@ -641,7 +698,7 @@ def list_data_attributes_and_methods(self) -> List[str]: # ========================= 'get' methods ========================== def get_reward_rate(self) -> np.ndarray: - """ Get the reward rate of the subject for the task calculated over a + """Get the reward rate of the subject for the task calculated over a 25 trial rolling window and provides a measure of the rewards earned per unit time (in units of rewards/minute). @@ -692,9 +749,8 @@ def get_rolling_performance_df(self) -> pd.DataFrame: return self._trials.rolling_performance def get_performance_metrics( - self, - engaged_trial_reward_rate_threshold: float = 2.0 - ) -> dict: + self, engaged_trial_reward_rate_threshold: float = 2.0 + ) -> dict: """Get a dictionary containing a subject's behavior response summary data. @@ -775,19 +831,17 @@ def get_performance_metrics( when the rolling reward rate was below 2 rewards/minute """ performance_metrics = { - 'trial_count': self._trials.trial_count, - 'go_trial_count': self._trials.go_trial_count, - 'catch_trial_count': self._trials.catch_trial_count, - 'hit_trial_count': self._trials.hit_trial_count, - 'miss_trial_count': self._trials.miss_trial_count, - 'false_alarm_trial_count': - self._trials.false_alarm_trial_count, - 'correct_reject_trial_count': - self._trials.correct_reject_trial_count, - 'auto_reward_count': self.trials.auto_rewarded.sum(), - 'earned_reward_count': self.trials.hit.sum(), - 'total_reward_count': len(self.rewards), - 'total_reward_volume': self.rewards.volume.sum() + "trial_count": self._trials.trial_count, + "go_trial_count": self._trials.go_trial_count, + "catch_trial_count": self._trials.catch_trial_count, + "hit_trial_count": self._trials.hit_trial_count, + "miss_trial_count": self._trials.miss_trial_count, + "false_alarm_trial_count": self._trials.false_alarm_trial_count, + "correct_reject_trial_count": self._trials.correct_reject_trial_count, # noqa: E501 + "auto_reward_count": self.trials.auto_rewarded.sum(), + "earned_reward_count": self.trials.hit.sum(), + "total_reward_count": len(self.rewards), + "total_reward_volume": self.rewards.volume.sum(), } # Although 'earned_reward_count' will currently have the same value as # 'hit_trial_count', in the future there may be variants of the @@ -797,34 +851,42 @@ def get_performance_metrics( rpdf = self.get_rolling_performance_df() engaged_trial_mask = ( - rpdf['reward_rate'] > - engaged_trial_reward_rate_threshold) - performance_metrics['maximum_reward_rate'] = \ - np.nanmax(rpdf['reward_rate'].values) - performance_metrics['engaged_trial_count'] = \ - self._trials.get_engaged_trial_count( - engaged_trial_reward_rate_threshold=( - engaged_trial_reward_rate_threshold)) - performance_metrics['mean_hit_rate'] = \ - rpdf['hit_rate'].mean() - performance_metrics['mean_hit_rate_uncorrected'] = \ - rpdf['hit_rate_raw'].mean() - performance_metrics['mean_hit_rate_engaged'] = \ - rpdf['hit_rate'][engaged_trial_mask].mean() - performance_metrics['mean_false_alarm_rate'] = \ - rpdf['false_alarm_rate'].mean() - performance_metrics['mean_false_alarm_rate_uncorrected'] = \ - rpdf['false_alarm_rate_raw'].mean() - performance_metrics['mean_false_alarm_rate_engaged'] = \ - rpdf['false_alarm_rate'][engaged_trial_mask].mean() - performance_metrics['mean_dprime'] = \ - rpdf['rolling_dprime'].mean() - performance_metrics['mean_dprime_engaged'] = \ - rpdf['rolling_dprime'][engaged_trial_mask].mean() - performance_metrics['max_dprime'] = \ - rpdf['rolling_dprime'].max() - performance_metrics['max_dprime_engaged'] = \ - rpdf['rolling_dprime'][engaged_trial_mask].max() + rpdf["reward_rate"] > engaged_trial_reward_rate_threshold + ) + performance_metrics["maximum_reward_rate"] = np.nanmax( + rpdf["reward_rate"].values + ) + performance_metrics[ + "engaged_trial_count" + ] = self._trials.get_engaged_trial_count( + engaged_trial_reward_rate_threshold=( + engaged_trial_reward_rate_threshold + ) + ) + performance_metrics["mean_hit_rate"] = rpdf["hit_rate"].mean() + performance_metrics["mean_hit_rate_uncorrected"] = rpdf[ + "hit_rate_raw" + ].mean() + performance_metrics["mean_hit_rate_engaged"] = rpdf["hit_rate"][ + engaged_trial_mask + ].mean() + performance_metrics["mean_false_alarm_rate"] = rpdf[ + "false_alarm_rate" + ].mean() + performance_metrics["mean_false_alarm_rate_uncorrected"] = rpdf[ + "false_alarm_rate_raw" + ].mean() + performance_metrics["mean_false_alarm_rate_engaged"] = rpdf[ + "false_alarm_rate" + ][engaged_trial_mask].mean() + performance_metrics["mean_dprime"] = rpdf["rolling_dprime"].mean() + performance_metrics["mean_dprime_engaged"] = rpdf["rolling_dprime"][ + engaged_trial_mask + ].mean() + performance_metrics["max_dprime"] = rpdf["rolling_dprime"].max() + performance_metrics["max_dprime_engaged"] = rpdf["rolling_dprime"][ + engaged_trial_mask + ].max() return performance_metrics @@ -873,9 +935,11 @@ def eye_tracking(self) -> Optional[pd.DataFrame]: :rtype: pandas.DataFrame """ - return self._eye_tracking.value \ - if self._eye_tracking is not None \ + return ( + self._eye_tracking.value + if self._eye_tracking is not None else None + ) @property def eye_tracking_rig_geometry(self) -> dict: @@ -895,7 +959,7 @@ def eye_tracking_rig_geometry(self) -> dict: """ if self._eye_tracking_rig_geometry is None: return dict() - return self._eye_tracking_rig_geometry.to_dict()['rig_geometry'] + return self._eye_tracking_rig_geometry.to_dict()["rig_geometry"] @property def licks(self) -> pd.DataFrame: @@ -1032,11 +1096,14 @@ def stimulus_presentations(self) -> pd.DataFrame: Id to match to the table Index of the trials table. """ table = self._stimuli.presentations.value - table = table.drop(columns=['image_set', 'index'], errors='ignore') - table = table.rename(columns={'stop_time': 'end_time'}) - if 'stimulus_blocks' in table.columns: - table['trials_id'] = compute_trials_id_for_stimulus(table, - self.trials) + table = table.drop(columns=["image_set", "index"], errors="ignore") + table = table.rename(columns={"stop_time": "end_time"}) + # Backwards compatibility for data generated without the needed + # ``stimulus_block`` column in the table. + if "stimulus_block" in table.columns: + table["trials_id"] = compute_trials_id_for_stimulus( + table, self.trials + ) return table @property @@ -1125,7 +1192,7 @@ def task_parameters(self) -> dict: Stimulus type ('gratings' or 'images'). """ - return self._task_parameters.to_dict()['task_parameters'] + return self._task_parameters.to_dict()["task_parameters"] @property def trials(self) -> pd.DataFrame: @@ -1242,10 +1309,11 @@ def metadata(self) -> Dict[str, Any]: @classmethod def _read_licks( - cls, - stimulus_file_lookup: StimulusFileLookup, - sync_file: Optional[SyncFile], - monitor_delay: float) -> Licks: + cls, + stimulus_file_lookup: StimulusFileLookup, + sync_file: Optional[SyncFile], + monitor_delay: float, + ) -> Licks: """ Construct the Licks data object for this session @@ -1254,84 +1322,95 @@ def _read_licks( """ stimulus_timestamps = cls._read_behavior_stimulus_timestamps( - sync_file=sync_file, - stimulus_file_lookup=stimulus_file_lookup, - monitor_delay=0.0) + sync_file=sync_file, + stimulus_file_lookup=stimulus_file_lookup, + monitor_delay=0.0, + ) return Licks.from_stimulus_file( stimulus_file=stimulus_file_lookup.behavior_stimulus_file, - stimulus_timestamps=stimulus_timestamps) + stimulus_timestamps=stimulus_timestamps, + ) @classmethod def _read_rewards( - cls, - stimulus_file_lookup: StimulusFileLookup, - sync_file: Optional[SyncFile]) -> Rewards: + cls, + stimulus_file_lookup: StimulusFileLookup, + sync_file: Optional[SyncFile], + ) -> Rewards: """ Construct the Rewards data object for this session """ stimulus_timestamps = cls._read_behavior_stimulus_timestamps( - sync_file=sync_file, - stimulus_file_lookup=stimulus_file_lookup, - monitor_delay=0.0) + sync_file=sync_file, + stimulus_file_lookup=stimulus_file_lookup, + monitor_delay=0.0, + ) return Rewards.from_stimulus_file( stimulus_file=stimulus_file_lookup.behavior_stimulus_file, - stimulus_timestamps=stimulus_timestamps.subtract_monitor_delay()) + stimulus_timestamps=stimulus_timestamps.subtract_monitor_delay(), + ) @classmethod def _read_stimuli( - cls, - stimulus_file_lookup: StimulusFileLookup, - behavior_session_id: int, - sync_file: Optional[SyncFile], - monitor_delay: float, - stimulus_presentation_columns: Optional[List[str]] = None + cls, + stimulus_file_lookup: StimulusFileLookup, + behavior_session_id: int, + sync_file: Optional[SyncFile], + monitor_delay: float, + stimulus_presentation_columns: Optional[List[str]] = None, ) -> Stimuli: """ Construct the Stimuli data object for this session """ stimulus_timestamps = cls._read_behavior_stimulus_timestamps( - sync_file=sync_file, - stimulus_file_lookup=stimulus_file_lookup, - monitor_delay=monitor_delay) + sync_file=sync_file, + stimulus_file_lookup=stimulus_file_lookup, + monitor_delay=monitor_delay, + ) return Stimuli.from_stimulus_file( behavior_session_id=behavior_session_id, stimulus_file=stimulus_file_lookup.behavior_stimulus_file, stimulus_timestamps=stimulus_timestamps, - presentation_columns=stimulus_presentation_columns) + presentation_columns=stimulus_presentation_columns, + ) @classmethod def _read_trials( - cls, - stimulus_file_lookup: StimulusFileLookup, - sync_file: Optional[SyncFile], - monitor_delay: float, - licks: Licks, - rewards: Rewards) -> Trials: + cls, + stimulus_file_lookup: StimulusFileLookup, + sync_file: Optional[SyncFile], + monitor_delay: float, + licks: Licks, + rewards: Rewards, + ) -> Trials: """ Construct the Trials data object for this session """ stimulus_timestamps = cls._read_behavior_stimulus_timestamps( - sync_file=sync_file, - stimulus_file_lookup=stimulus_file_lookup, - monitor_delay=monitor_delay) + sync_file=sync_file, + stimulus_file_lookup=stimulus_file_lookup, + monitor_delay=monitor_delay, + ) return cls._trials_class().from_stimulus_file( stimulus_file=stimulus_file_lookup.behavior_stimulus_file, stimulus_timestamps=stimulus_timestamps, licks=licks, - rewards=rewards) + rewards=rewards, + ) @classmethod def _read_behavior_stimulus_timestamps( - cls, - stimulus_file_lookup: StimulusFileLookup, - sync_file: Optional[SyncFile], - monitor_delay: float) -> StimulusTimestamps: + cls, + stimulus_file_lookup: StimulusFileLookup, + sync_file: Optional[SyncFile], + monitor_delay: float, + ) -> StimulusTimestamps: """ Assemble the StimulusTimestamps from the SyncFile. If a SyncFile is not available, use the @@ -1339,21 +1418,23 @@ def _read_behavior_stimulus_timestamps( """ if sync_file is not None: stimulus_timestamps = StimulusTimestamps.from_sync_file( - sync_file=sync_file, - monitor_delay=monitor_delay) + sync_file=sync_file, monitor_delay=monitor_delay + ) else: stimulus_timestamps = StimulusTimestamps.from_stimulus_file( - stimulus_file=stimulus_file_lookup.behavior_stimulus_file, - monitor_delay=monitor_delay) + stimulus_file=stimulus_file_lookup.behavior_stimulus_file, + monitor_delay=monitor_delay, + ) return stimulus_timestamps @classmethod def _read_session_timestamps( - cls, - stimulus_file_lookup: StimulusFileLookup, - sync_file: Optional[SyncFile], - monitor_delay: float) -> StimulusTimestamps: + cls, + stimulus_file_lookup: StimulusFileLookup, + sync_file: Optional[SyncFile], + monitor_delay: float, + ) -> StimulusTimestamps: """ Assemble the StimulusTimestamps (with monitor delay) that will be associated with this session @@ -1361,33 +1442,36 @@ def _read_session_timestamps( return cls._read_behavior_stimulus_timestamps( stimulus_file_lookup=stimulus_file_lookup, sync_file=sync_file, - monitor_delay=monitor_delay) + monitor_delay=monitor_delay, + ) @classmethod def _read_data_from_stimulus_file( - cls, - stimulus_file_lookup: StimulusFileLookup, - behavior_session_id: int, - sync_file: Optional[SyncFile], - monitor_delay: float, - include_stimuli=True, - stimulus_presentation_columns: Optional[List[str]] = None + cls, + stimulus_file_lookup: StimulusFileLookup, + behavior_session_id: int, + sync_file: Optional[SyncFile], + monitor_delay: float, + include_stimuli=True, + stimulus_presentation_columns: Optional[List[str]] = None, ): """Helper method to read data from stimulus file""" licks = cls._read_licks( stimulus_file_lookup=stimulus_file_lookup, sync_file=sync_file, - monitor_delay=monitor_delay) + monitor_delay=monitor_delay, + ) rewards = cls._read_rewards( - stimulus_file_lookup=stimulus_file_lookup, - sync_file=sync_file) + stimulus_file_lookup=stimulus_file_lookup, sync_file=sync_file + ) session_stimulus_timestamps = cls._read_session_timestamps( - stimulus_file_lookup=stimulus_file_lookup, - sync_file=sync_file, - monitor_delay=monitor_delay) + stimulus_file_lookup=stimulus_file_lookup, + sync_file=sync_file, + monitor_delay=monitor_delay, + ) if include_stimuli: stimuli = cls._read_stimuli( @@ -1395,7 +1479,8 @@ def _read_data_from_stimulus_file( behavior_session_id=behavior_session_id, sync_file=sync_file, monitor_delay=monitor_delay, - stimulus_presentation_columns=stimulus_presentation_columns) + stimulus_presentation_columns=stimulus_presentation_columns, + ) else: stimuli = None @@ -1404,36 +1489,40 @@ def _read_data_from_stimulus_file( sync_file=sync_file, monitor_delay=monitor_delay, licks=licks, - rewards=rewards + rewards=rewards, ) task_parameters = TaskParameters.from_stimulus_file( - stimulus_file=stimulus_file_lookup.behavior_stimulus_file) + stimulus_file=stimulus_file_lookup.behavior_stimulus_file + ) - return (session_stimulus_timestamps.subtract_monitor_delay(), - licks, - rewards, - stimuli, - task_parameters, - trials) + return ( + session_stimulus_timestamps.subtract_monitor_delay(), + licks, + rewards, + stimuli, + task_parameters, + trials, + ) @classmethod def _read_eye_tracking_table( - cls, - eye_tracking_file: EyeTrackingFile, - sync_file: SyncFile, - z_threshold: float, - dilation_frames: int, - eye_tracking_metadata_file: Optional[ - EyeTrackingMetadataFile] = None, - eye_tracking_video: Optional[EyeTrackingVideo] = None + cls, + eye_tracking_file: EyeTrackingFile, + sync_file: SyncFile, + z_threshold: float, + dilation_frames: int, + eye_tracking_metadata_file: Optional[EyeTrackingMetadataFile] = None, + eye_tracking_video: Optional[EyeTrackingVideo] = None, ) -> EyeTrackingTable: # this is possible if instantiating from_lims if sync_file is None: - msg = ("sync_file is None for this session; " - "do not know how to create an eye tracking " - "table without a sync_file") + msg = ( + "sync_file is None for this session; " + "do not know how to create an eye tracking " + "table without a sync_file" + ) raise RuntimeError(msg) sync_path = pathlib.Path(sync_file.filepath) @@ -1442,38 +1531,40 @@ def _read_eye_tracking_table( session_sync_file=sync_path, sync_line_label_keys=SyncDataset.EYE_TRACKING_KEYS, drop_frames=None, - trim_after_spike=False) + trim_after_spike=False, + ) stimulus_timestamps = StimulusTimestamps( - timestamps=frame_times.to_numpy(), - monitor_delay=0.0) + timestamps=frame_times.to_numpy(), monitor_delay=0.0 + ) return EyeTrackingTable.from_data_file( - data_file=eye_tracking_file, - metadata_file=eye_tracking_metadata_file, - video=eye_tracking_video, - stimulus_timestamps=stimulus_timestamps, - z_threshold=z_threshold, - dilation_frames=dilation_frames, - empty_on_fail=True) + data_file=eye_tracking_file, + metadata_file=eye_tracking_metadata_file, + video=eye_tracking_video, + stimulus_timestamps=stimulus_timestamps, + z_threshold=z_threshold, + dilation_frames=dilation_frames, + empty_on_fail=True, + ) def _get_metadata(self, behavior_metadata: BehaviorMetadata) -> dict: """Returns dict of metadata""" return { - 'equipment_name': behavior_metadata.equipment.value, - 'sex': behavior_metadata.subject_metadata.sex, - 'age_in_days': behavior_metadata.subject_metadata.age_in_days, - 'stimulus_frame_rate': behavior_metadata.stimulus_frame_rate, - 'session_type': behavior_metadata.session_type, - 'date_of_acquisition': self._date_of_acquisition.value, - 'reporter_line': behavior_metadata.subject_metadata.reporter_line, - 'cre_line': behavior_metadata.subject_metadata.cre_line, - 'behavior_session_uuid': behavior_metadata.behavior_session_uuid, - 'driver_line': behavior_metadata.subject_metadata.driver_line, - 'mouse_id': behavior_metadata.subject_metadata.mouse_id, - 'project_code': behavior_metadata.project_code, - 'full_genotype': behavior_metadata.subject_metadata.full_genotype, - 'behavior_session_id': behavior_metadata.behavior_session_id + "equipment_name": behavior_metadata.equipment.value, + "sex": behavior_metadata.subject_metadata.sex, + "age_in_days": behavior_metadata.subject_metadata.age_in_days, + "stimulus_frame_rate": behavior_metadata.stimulus_frame_rate, + "session_type": behavior_metadata.session_type, + "date_of_acquisition": self._date_of_acquisition.value, + "reporter_line": behavior_metadata.subject_metadata.reporter_line, + "cre_line": behavior_metadata.subject_metadata.cre_line, + "behavior_session_uuid": behavior_metadata.behavior_session_uuid, + "driver_line": behavior_metadata.subject_metadata.driver_line, + "mouse_id": behavior_metadata.subject_metadata.mouse_id, + "project_code": behavior_metadata.project_code, + "full_genotype": behavior_metadata.subject_metadata.full_genotype, + "behavior_session_id": behavior_metadata.behavior_session_id, } def _get_identifier(self) -> str: diff --git a/doc_template/examples_root/examples/nb/aligning_behavioral_data_to_task_events_with_the_stimulus_and_trials_tables.ipynb b/doc_template/examples_root/examples/nb/aligning_behavioral_data_to_task_events_with_the_stimulus_and_trials_tables.ipynb index 6f299d217..68def3ee5 100644 --- a/doc_template/examples_root/examples/nb/aligning_behavioral_data_to_task_events_with_the_stimulus_and_trials_tables.ipynb +++ b/doc_template/examples_root/examples/nb/aligning_behavioral_data_to_task_events_with_the_stimulus_and_trials_tables.ipynb @@ -5,10 +5,10 @@ "id": "da2b6c9c", "metadata": { "papermill": { - "duration": 0.008425, - "end_time": "2023-01-24T17:37:25.998293", + "duration": 0.011647, + "end_time": "2023-01-25T19:51:43.817541", "exception": false, - "start_time": "2023-01-24T17:37:25.989868", + "start_time": "2023-01-25T19:51:43.805894", "status": "completed" }, "tags": [] @@ -30,10 +30,10 @@ "id": "95acc7b6", "metadata": { "papermill": { - "duration": 0.006954, - "end_time": "2023-01-24T17:37:26.013059", + "duration": 0.009109, + "end_time": "2023-01-25T19:51:43.836073", "exception": false, - "start_time": "2023-01-24T17:37:26.006105", + "start_time": "2023-01-25T19:51:43.826964", "status": "completed" }, "tags": [] @@ -48,16 +48,16 @@ "id": "057695ee", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:37:26.028486Z", - "iopub.status.busy": "2023-01-24T17:37:26.027927Z", - "iopub.status.idle": "2023-01-24T17:37:31.238674Z", - "shell.execute_reply": "2023-01-24T17:37:31.237980Z" + "iopub.execute_input": "2023-01-25T19:51:43.856046Z", + "iopub.status.busy": "2023-01-25T19:51:43.855484Z", + "iopub.status.idle": "2023-01-25T19:51:51.190770Z", + "shell.execute_reply": "2023-01-25T19:51:51.189662Z" }, "papermill": { - "duration": 5.22066, - "end_time": "2023-01-24T17:37:31.240623", + "duration": 7.348852, + "end_time": "2023-01-25T19:51:51.193327", "exception": false, - "start_time": "2023-01-24T17:37:26.019963", + "start_time": "2023-01-25T19:51:43.844475", "status": "completed" }, "tags": [] @@ -89,10 +89,10 @@ "id": "fae528e5", "metadata": { "papermill": { - "duration": 0.007785, - "end_time": "2023-01-24T17:37:31.255810", + "duration": 0.009656, + "end_time": "2023-01-25T19:51:51.212812", "exception": false, - "start_time": "2023-01-24T17:37:31.248025", + "start_time": "2023-01-25T19:51:51.203156", "status": "completed" }, "tags": [] @@ -107,16 +107,16 @@ "id": "e9951ca8", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:37:31.273296Z", - "iopub.status.busy": "2023-01-24T17:37:31.272567Z", - "iopub.status.idle": "2023-01-24T17:37:31.276149Z", - "shell.execute_reply": "2023-01-24T17:37:31.275481Z" + "iopub.execute_input": "2023-01-25T19:51:51.233505Z", + "iopub.status.busy": "2023-01-25T19:51:51.232496Z", + "iopub.status.idle": "2023-01-25T19:51:51.237857Z", + "shell.execute_reply": "2023-01-25T19:51:51.237002Z" }, "papermill": { - "duration": 0.015198, - "end_time": "2023-01-24T17:37:31.277990", + "duration": 0.018298, + "end_time": "2023-01-25T19:51:51.239773", "exception": false, - "start_time": "2023-01-24T17:37:31.262792", + "start_time": "2023-01-25T19:51:51.221475", "status": "completed" }, "tags": [ @@ -135,16 +135,16 @@ "id": "5cdb0de7", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:37:31.313103Z", - "iopub.status.busy": "2023-01-24T17:37:31.312648Z", - "iopub.status.idle": "2023-01-24T17:37:39.045397Z", - "shell.execute_reply": "2023-01-24T17:37:39.044739Z" + "iopub.execute_input": "2023-01-25T19:51:51.287379Z", + "iopub.status.busy": "2023-01-25T19:51:51.286833Z", + "iopub.status.idle": "2023-01-25T19:51:59.489632Z", + "shell.execute_reply": "2023-01-25T19:51:59.487956Z" }, "papermill": { - "duration": 7.742762, - "end_time": "2023-01-24T17:37:39.047468", + "duration": 8.215851, + "end_time": "2023-01-25T19:51:59.492682", "exception": false, - "start_time": "2023-01-24T17:37:31.304706", + "start_time": "2023-01-25T19:51:51.276831", "status": "completed" }, "tags": [] @@ -162,15 +162,15 @@ "\n", "To avoid this warning in the future, make sure that\n", "\n", - "/tmp/tmp5umehgif/_downloaded_data.json\n", + "/tmp/tmp6wfbwkzs/_downloaded_data.json\n", "\n", "is not deleted between instantiations of this cache\n", " warnings.warn(msg, MissingLocalManifestWarning)\n", - "ecephys_sessions.csv: 100%|██████████| 64.7k/64.7k [00:00<00:00, 748kMB/s]\n", - "behavior_sessions.csv: 100%|██████████| 562k/562k [00:00<00:00, 4.75MMB/s] \n", - "units.csv: 100%|██████████| 132M/132M [00:03<00:00, 35.4MMB/s]\n", - "probes.csv: 100%|██████████| 130k/130k [00:00<00:00, 1.41MMB/s]\n", - "channels.csv: 100%|██████████| 27.9M/27.9M [00:01<00:00, 25.5MMB/s]\n" + "ecephys_sessions.csv: 100%|██████████| 64.7k/64.7k [00:00<00:00, 1.31MMB/s]\n", + "behavior_sessions.csv: 100%|██████████| 562k/562k [00:00<00:00, 5.98MMB/s]\n", + "units.csv: 100%|██████████| 132M/132M [00:03<00:00, 34.8MMB/s]\n", + "probes.csv: 100%|██████████| 130k/130k [00:00<00:00, 1.60MMB/s]\n", + "channels.csv: 100%|██████████| 27.9M/27.9M [00:01<00:00, 24.6MMB/s]\n" ] } ], @@ -186,10 +186,10 @@ "id": "10965f32", "metadata": { "papermill": { - "duration": 0.010085, - "end_time": "2023-01-24T17:37:39.067567", + "duration": 0.012788, + "end_time": "2023-01-25T19:51:59.519297", "exception": false, - "start_time": "2023-01-24T17:37:39.057482", + "start_time": "2023-01-25T19:51:59.506509", "status": "completed" }, "tags": [] @@ -203,10 +203,10 @@ "id": "c9fe4ad5", "metadata": { "papermill": { - "duration": 0.009655, - "end_time": "2023-01-24T17:37:39.086807", + "duration": 0.013201, + "end_time": "2023-01-25T19:51:59.545042", "exception": false, - "start_time": "2023-01-24T17:37:39.077152", + "start_time": "2023-01-25T19:51:59.531841", "status": "completed" }, "tags": [] @@ -223,10 +223,10 @@ "id": "a29b8b7d", "metadata": { "papermill": { - "duration": 0.009395, - "end_time": "2023-01-24T17:37:39.105695", + "duration": 0.013604, + "end_time": "2023-01-25T19:51:59.570629", "exception": false, - "start_time": "2023-01-24T17:37:39.096300", + "start_time": "2023-01-25T19:51:59.557025", "status": "completed" }, "tags": [] @@ -242,10 +242,10 @@ "id": "e64aeae0", "metadata": { "papermill": { - "duration": 0.009335, - "end_time": "2023-01-24T17:37:39.124434", + "duration": 0.012823, + "end_time": "2023-01-25T19:51:59.595013", "exception": false, - "start_time": "2023-01-24T17:37:39.115099", + "start_time": "2023-01-25T19:51:59.582190", "status": "completed" }, "tags": [] @@ -260,16 +260,16 @@ "id": "fb97ecd1", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:37:39.144739Z", - "iopub.status.busy": "2023-01-24T17:37:39.144275Z", - "iopub.status.idle": "2023-01-24T17:40:13.076384Z", - "shell.execute_reply": "2023-01-24T17:40:13.071202Z" + "iopub.execute_input": "2023-01-25T19:51:59.621403Z", + "iopub.status.busy": "2023-01-25T19:51:59.620822Z", + "iopub.status.idle": "2023-01-25T19:54:49.854196Z", + "shell.execute_reply": "2023-01-25T19:54:49.846252Z" }, "papermill": { - "duration": 154.004249, - "end_time": "2023-01-24T17:40:13.138056", + "duration": 170.298106, + "end_time": "2023-01-25T19:54:49.905383", "exception": false, - "start_time": "2023-01-24T17:37:39.133807", + "start_time": "2023-01-25T19:51:59.607277", "status": "completed" }, "tags": [] @@ -279,7 +279,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "ecephys_session_1065437523.nwb: 100%|██████████| 3.20G/3.20G [01:27<00:00, 36.5MMB/s]\n" + "ecephys_session_1065437523.nwb: 100%|██████████| 3.20G/3.20G [01:36<00:00, 33.2MMB/s]\n" ] } ], @@ -294,16 +294,16 @@ "id": "dfcf3916", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:40:13.334954Z", - "iopub.status.busy": "2023-01-24T17:40:13.334470Z", - "iopub.status.idle": "2023-01-24T17:40:13.381758Z", - "shell.execute_reply": "2023-01-24T17:40:13.381074Z" + "iopub.execute_input": "2023-01-25T19:54:50.221434Z", + "iopub.status.busy": "2023-01-25T19:54:50.220261Z", + "iopub.status.idle": "2023-01-25T19:54:51.551155Z", + "shell.execute_reply": "2023-01-25T19:54:51.549695Z" }, "papermill": { - "duration": 0.119281, - "end_time": "2023-01-24T17:40:13.403223", + "duration": 1.40665, + "end_time": "2023-01-25T19:54:51.562264", "exception": false, - "start_time": "2023-01-24T17:40:13.283942", + "start_time": "2023-01-25T19:54:50.155614", "status": "completed" }, "tags": [] @@ -316,7 +316,8 @@ " 'flashes_since_change', 'image_name', 'is_change', 'is_image_novel',\n", " 'omitted', 'orientation', 'position_x', 'position_y', 'rewarded',\n", " 'spatial_frequency', 'start_frame', 'start_time', 'stimulus_block',\n", - " 'stimulus_index', 'stimulus_name', 'end_time', 'temporal_frequency'],\n", + " 'stimulus_index', 'stimulus_name', 'end_time', 'temporal_frequency',\n", + " 'trials_id'],\n", " dtype='object')" ] }, @@ -335,10 +336,10 @@ "id": "dd26d114", "metadata": { "papermill": { - "duration": 0.037883, - "end_time": "2023-01-24T17:40:13.480322", + "duration": 0.052296, + "end_time": "2023-01-25T19:54:51.672759", "exception": false, - "start_time": "2023-01-24T17:40:13.442439", + "start_time": "2023-01-25T19:54:51.620463", "status": "completed" }, "tags": [] @@ -353,16 +354,16 @@ "id": "19e431cf", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:40:13.558201Z", - "iopub.status.busy": "2023-01-24T17:40:13.557577Z", - "iopub.status.idle": "2023-01-24T17:40:13.620616Z", - "shell.execute_reply": "2023-01-24T17:40:13.620056Z" + "iopub.execute_input": "2023-01-25T19:54:51.777803Z", + "iopub.status.busy": "2023-01-25T19:54:51.776993Z", + "iopub.status.idle": "2023-01-25T19:54:51.839711Z", + "shell.execute_reply": "2023-01-25T19:54:51.838561Z" }, "papermill": { - "duration": 0.104034, - "end_time": "2023-01-24T17:40:13.622122", + "duration": 0.11896, + "end_time": "2023-01-25T19:54:51.842847", "exception": false, - "start_time": "2023-01-24T17:40:13.518088", + "start_time": "2023-01-25T19:54:51.723887", "status": "completed" }, "tags": [] @@ -504,10 +505,10 @@ "id": "76ecf8be", "metadata": { "papermill": { - "duration": 0.038492, - "end_time": "2023-01-24T17:40:13.700768", + "duration": 0.049089, + "end_time": "2023-01-25T19:54:51.943494", "exception": false, - "start_time": "2023-01-24T17:40:13.662276", + "start_time": "2023-01-25T19:54:51.894405", "status": "completed" }, "tags": [] @@ -533,10 +534,10 @@ "id": "7f20e83a", "metadata": { "papermill": { - "duration": 0.038253, - "end_time": "2023-01-24T17:40:13.777134", + "duration": 0.05427, + "end_time": "2023-01-25T19:54:52.048921", "exception": false, - "start_time": "2023-01-24T17:40:13.738881", + "start_time": "2023-01-25T19:54:51.994651", "status": "completed" }, "tags": [] @@ -598,10 +599,10 @@ "id": "5303614b", "metadata": { "papermill": { - "duration": 0.038659, - "end_time": "2023-01-24T17:40:13.854966", + "duration": 0.051142, + "end_time": "2023-01-25T19:54:52.152278", "exception": false, - "start_time": "2023-01-24T17:40:13.816307", + "start_time": "2023-01-25T19:54:52.101136", "status": "completed" }, "tags": [] @@ -616,16 +617,16 @@ "id": "ba1f6324", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:40:13.933580Z", - "iopub.status.busy": "2023-01-24T17:40:13.932847Z", - "iopub.status.idle": "2023-01-24T17:40:13.943492Z", - "shell.execute_reply": "2023-01-24T17:40:13.942829Z" + "iopub.execute_input": "2023-01-25T19:54:52.259727Z", + "iopub.status.busy": "2023-01-25T19:54:52.259172Z", + "iopub.status.idle": "2023-01-25T19:54:52.271766Z", + "shell.execute_reply": "2023-01-25T19:54:52.270450Z" }, "papermill": { - "duration": 0.051883, - "end_time": "2023-01-24T17:40:13.945037", + "duration": 0.068992, + "end_time": "2023-01-25T19:54:52.273667", "exception": false, - "start_time": "2023-01-24T17:40:13.893154", + "start_time": "2023-01-25T19:54:52.204675", "status": "completed" }, "tags": [] @@ -653,10 +654,10 @@ "id": "e126c01a", "metadata": { "papermill": { - "duration": 0.038118, - "end_time": "2023-01-24T17:40:14.021671", + "duration": 0.05576, + "end_time": "2023-01-25T19:54:52.383762", "exception": false, - "start_time": "2023-01-24T17:40:13.983553", + "start_time": "2023-01-25T19:54:52.328002", "status": "completed" }, "tags": [] @@ -670,10 +671,10 @@ "id": "30ee3779", "metadata": { "papermill": { - "duration": 0.038239, - "end_time": "2023-01-24T17:40:14.097998", + "duration": 0.051524, + "end_time": "2023-01-25T19:54:52.492152", "exception": false, - "start_time": "2023-01-24T17:40:14.059759", + "start_time": "2023-01-25T19:54:52.440628", "status": "completed" }, "tags": [] @@ -689,10 +690,10 @@ "id": "f3a9fc1d", "metadata": { "papermill": { - "duration": 0.037968, - "end_time": "2023-01-24T17:40:14.174971", + "duration": 0.052631, + "end_time": "2023-01-25T19:54:52.595459", "exception": false, - "start_time": "2023-01-24T17:40:14.137003", + "start_time": "2023-01-25T19:54:52.542828", "status": "completed" }, "tags": [] @@ -707,16 +708,16 @@ "id": "2378118c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:40:14.253115Z", - "iopub.status.busy": "2023-01-24T17:40:14.252549Z", - "iopub.status.idle": "2023-01-24T17:40:14.529518Z", - "shell.execute_reply": "2023-01-24T17:40:14.528958Z" + "iopub.execute_input": "2023-01-25T19:54:52.699828Z", + "iopub.status.busy": "2023-01-25T19:54:52.699125Z", + "iopub.status.idle": "2023-01-25T19:54:53.139666Z", + "shell.execute_reply": "2023-01-25T19:54:53.138605Z" }, "papermill": { - "duration": 0.318268, - "end_time": "2023-01-24T17:40:14.531354", + "duration": 0.496217, + "end_time": "2023-01-25T19:54:53.141771", "exception": false, - "start_time": "2023-01-24T17:40:14.213086", + "start_time": "2023-01-25T19:54:52.645554", "status": "completed" }, "tags": [] @@ -725,10 +726,10 @@ { "data": { "text/plain": [ - "[,\n", - " ,\n", - " ,\n", - " ]" + "[,\n", + " ,\n", + " ,\n", + " ]" ] }, "execution_count": 9, @@ -771,10 +772,10 @@ "id": "d2f86f48", "metadata": { "papermill": { - "duration": 0.038471, - "end_time": "2023-01-24T17:40:14.612078", + "duration": 0.051594, + "end_time": "2023-01-25T19:54:53.248923", "exception": false, - "start_time": "2023-01-24T17:40:14.573607", + "start_time": "2023-01-25T19:54:53.197329", "status": "completed" }, "tags": [] @@ -794,16 +795,16 @@ "id": "79343d3a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:40:14.690530Z", - "iopub.status.busy": "2023-01-24T17:40:14.689970Z", - "iopub.status.idle": "2023-01-24T17:40:14.695440Z", - "shell.execute_reply": "2023-01-24T17:40:14.694930Z" + "iopub.execute_input": "2023-01-25T19:54:53.357516Z", + "iopub.status.busy": "2023-01-25T19:54:53.356673Z", + "iopub.status.idle": "2023-01-25T19:54:53.364993Z", + "shell.execute_reply": "2023-01-25T19:54:53.364065Z" }, "papermill": { - "duration": 0.046447, - "end_time": "2023-01-24T17:40:14.696738", + "duration": 0.066038, + "end_time": "2023-01-25T19:54:53.366998", "exception": false, - "start_time": "2023-01-24T17:40:14.650291", + "start_time": "2023-01-25T19:54:53.300960", "status": "completed" }, "tags": [] @@ -830,10 +831,10 @@ "id": "4463800e", "metadata": { "papermill": { - "duration": 0.038672, - "end_time": "2023-01-24T17:40:14.775486", + "duration": 0.051639, + "end_time": "2023-01-25T19:54:53.477943", "exception": false, - "start_time": "2023-01-24T17:40:14.736814", + "start_time": "2023-01-25T19:54:53.426304", "status": "completed" }, "tags": [] @@ -847,10 +848,10 @@ "id": "6503eace", "metadata": { "papermill": { - "duration": 0.038693, - "end_time": "2023-01-24T17:40:14.852874", + "duration": 0.055627, + "end_time": "2023-01-25T19:54:53.586280", "exception": false, - "start_time": "2023-01-24T17:40:14.814181", + "start_time": "2023-01-25T19:54:53.530653", "status": "completed" }, "tags": [] @@ -865,16 +866,16 @@ "id": "25e0cc41", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:40:14.933148Z", - "iopub.status.busy": "2023-01-24T17:40:14.932586Z", - "iopub.status.idle": "2023-01-24T17:40:14.952276Z", - "shell.execute_reply": "2023-01-24T17:40:14.951623Z" + "iopub.execute_input": "2023-01-25T19:54:53.700372Z", + "iopub.status.busy": "2023-01-25T19:54:53.699558Z", + "iopub.status.idle": "2023-01-25T19:54:53.726970Z", + "shell.execute_reply": "2023-01-25T19:54:53.726162Z" }, "papermill": { - "duration": 0.061853, - "end_time": "2023-01-24T17:40:14.953826", + "duration": 0.085266, + "end_time": "2023-01-25T19:54:53.728941", "exception": false, - "start_time": "2023-01-24T17:40:14.891973", + "start_time": "2023-01-25T19:54:53.643675", "status": "completed" }, "scrolled": true, @@ -1124,10 +1125,10 @@ "id": "b798d127", "metadata": { "papermill": { - "duration": 0.038938, - "end_time": "2023-01-24T17:40:15.033254", + "duration": 0.065573, + "end_time": "2023-01-25T19:54:53.854890", "exception": false, - "start_time": "2023-01-24T17:40:14.994316", + "start_time": "2023-01-25T19:54:53.789317", "status": "completed" }, "tags": [] @@ -1181,10 +1182,10 @@ "id": "326cf463", "metadata": { "papermill": { - "duration": 0.039235, - "end_time": "2023-01-24T17:40:15.111923", + "duration": 0.050351, + "end_time": "2023-01-25T19:54:53.960584", "exception": false, - "start_time": "2023-01-24T17:40:15.072688", + "start_time": "2023-01-25T19:54:53.910233", "status": "completed" }, "tags": [] @@ -1198,10 +1199,10 @@ "id": "cab545aa", "metadata": { "papermill": { - "duration": 0.03941, - "end_time": "2023-01-24T17:40:15.190719", + "duration": 0.055948, + "end_time": "2023-01-25T19:54:54.068821", "exception": false, - "start_time": "2023-01-24T17:40:15.151309", + "start_time": "2023-01-25T19:54:54.012873", "status": "completed" }, "tags": [] @@ -1216,16 +1217,16 @@ "id": "93b9d31b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:40:15.271063Z", - "iopub.status.busy": "2023-01-24T17:40:15.270482Z", - "iopub.status.idle": "2023-01-24T17:40:15.422860Z", - "shell.execute_reply": "2023-01-24T17:40:15.422198Z" + "iopub.execute_input": "2023-01-25T19:54:54.177974Z", + "iopub.status.busy": "2023-01-25T19:54:54.177564Z", + "iopub.status.idle": "2023-01-25T19:54:54.459372Z", + "shell.execute_reply": "2023-01-25T19:54:54.457498Z" }, "papermill": { - "duration": 0.194436, - "end_time": "2023-01-24T17:40:15.424598", + "duration": 0.340361, + "end_time": "2023-01-25T19:54:54.462209", "exception": false, - "start_time": "2023-01-24T17:40:15.230162", + "start_time": "2023-01-25T19:54:54.121848", "status": "completed" }, "tags": [] @@ -1257,10 +1258,10 @@ "id": "d996e9a8", "metadata": { "papermill": { - "duration": 0.039846, - "end_time": "2023-01-24T17:40:15.896318", + "duration": 0.937521, + "end_time": "2023-01-25T19:54:55.451658", "exception": false, - "start_time": "2023-01-24T17:40:15.856472", + "start_time": "2023-01-25T19:54:54.514137", "status": "completed" }, "tags": [] @@ -1275,16 +1276,16 @@ "id": "7a65a0eb", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:40:15.977154Z", - "iopub.status.busy": "2023-01-24T17:40:15.976351Z", - "iopub.status.idle": "2023-01-24T17:40:15.979708Z", - "shell.execute_reply": "2023-01-24T17:40:15.979190Z" + "iopub.execute_input": "2023-01-25T19:54:55.563714Z", + "iopub.status.busy": "2023-01-25T19:54:55.563286Z", + "iopub.status.idle": "2023-01-25T19:54:55.568253Z", + "shell.execute_reply": "2023-01-25T19:54:55.566924Z" }, "papermill": { - "duration": 0.045355, - "end_time": "2023-01-24T17:40:15.980991", + "duration": 0.062284, + "end_time": "2023-01-25T19:54:55.570275", "exception": false, - "start_time": "2023-01-24T17:40:15.935636", + "start_time": "2023-01-25T19:54:55.507991", "status": "completed" }, "tags": [] @@ -1300,10 +1301,10 @@ "id": "a1abde63", "metadata": { "papermill": { - "duration": 0.040001, - "end_time": "2023-01-24T17:40:16.060359", + "duration": 0.053049, + "end_time": "2023-01-25T19:54:55.676281", "exception": false, - "start_time": "2023-01-24T17:40:16.020358", + "start_time": "2023-01-25T19:54:55.623232", "status": "completed" }, "tags": [] @@ -1318,16 +1319,16 @@ "id": "1734d152", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:40:16.141220Z", - "iopub.status.busy": "2023-01-24T17:40:16.140655Z", - "iopub.status.idle": "2023-01-24T17:40:16.307585Z", - "shell.execute_reply": "2023-01-24T17:40:16.306882Z" + "iopub.execute_input": "2023-01-25T19:54:55.796813Z", + "iopub.status.busy": "2023-01-25T19:54:55.795928Z", + "iopub.status.idle": "2023-01-25T19:54:56.064407Z", + "shell.execute_reply": "2023-01-25T19:54:56.063454Z" }, "papermill": { - "duration": 0.209692, - "end_time": "2023-01-24T17:40:16.309379", + "duration": 0.333872, + "end_time": "2023-01-25T19:54:56.066837", "exception": false, - "start_time": "2023-01-24T17:40:16.099687", + "start_time": "2023-01-25T19:54:55.732965", "status": "completed" }, "scrolled": true, @@ -1377,10 +1378,10 @@ "id": "62d7d8b4", "metadata": { "papermill": { - "duration": 0.039948, - "end_time": "2023-01-24T17:40:16.390486", + "duration": 0.055246, + "end_time": "2023-01-25T19:54:56.178222", "exception": false, - "start_time": "2023-01-24T17:40:16.350538", + "start_time": "2023-01-25T19:54:56.122976", "status": "completed" }, "tags": [] @@ -1394,10 +1395,10 @@ "id": "cdf7808a", "metadata": { "papermill": { - "duration": 0.040963, - "end_time": "2023-01-24T17:40:16.471458", + "duration": 0.057229, + "end_time": "2023-01-25T19:54:56.287746", "exception": false, - "start_time": "2023-01-24T17:40:16.430495", + "start_time": "2023-01-25T19:54:56.230517", "status": "completed" }, "tags": [] @@ -1412,16 +1413,16 @@ "id": "1e59ffb0", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:40:16.553446Z", - "iopub.status.busy": "2023-01-24T17:40:16.552864Z", - "iopub.status.idle": "2023-01-24T17:40:16.556493Z", - "shell.execute_reply": "2023-01-24T17:40:16.555835Z" + "iopub.execute_input": "2023-01-25T19:54:56.411605Z", + "iopub.status.busy": "2023-01-25T19:54:56.410994Z", + "iopub.status.idle": "2023-01-25T19:54:56.416152Z", + "shell.execute_reply": "2023-01-25T19:54:56.415331Z" }, "papermill": { - "duration": 0.046469, - "end_time": "2023-01-24T17:40:16.557979", + "duration": 0.063497, + "end_time": "2023-01-25T19:54:56.418097", "exception": false, - "start_time": "2023-01-24T17:40:16.511510", + "start_time": "2023-01-25T19:54:56.354600", "status": "completed" }, "tags": [] @@ -1438,10 +1439,10 @@ "id": "6014ebc8", "metadata": { "papermill": { - "duration": 0.039925, - "end_time": "2023-01-24T17:40:16.637853", + "duration": 0.056009, + "end_time": "2023-01-25T19:54:56.528812", "exception": false, - "start_time": "2023-01-24T17:40:16.597928", + "start_time": "2023-01-25T19:54:56.472803", "status": "completed" }, "tags": [] @@ -1456,16 +1457,16 @@ "id": "e241142a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:40:16.720543Z", - "iopub.status.busy": "2023-01-24T17:40:16.719978Z", - "iopub.status.idle": "2023-01-24T17:40:16.741539Z", - "shell.execute_reply": "2023-01-24T17:40:16.740820Z" + "iopub.execute_input": "2023-01-25T19:54:56.658865Z", + "iopub.status.busy": "2023-01-25T19:54:56.657798Z", + "iopub.status.idle": "2023-01-25T19:54:56.690418Z", + "shell.execute_reply": "2023-01-25T19:54:56.689461Z" }, "papermill": { - "duration": 0.06492, - "end_time": "2023-01-24T17:40:16.743066", + "duration": 0.095283, + "end_time": "2023-01-25T19:54:56.692467", "exception": false, - "start_time": "2023-01-24T17:40:16.678146", + "start_time": "2023-01-25T19:54:56.597184", "status": "completed" }, "tags": [] @@ -1715,10 +1716,10 @@ "id": "76232341", "metadata": { "papermill": { - "duration": 0.04057, - "end_time": "2023-01-24T17:40:16.824059", + "duration": 0.05206, + "end_time": "2023-01-25T19:54:56.797761", "exception": false, - "start_time": "2023-01-24T17:40:16.783489", + "start_time": "2023-01-25T19:54:56.745701", "status": "completed" }, "tags": [] @@ -1733,16 +1734,16 @@ "id": "3f8f8a46", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:40:16.906686Z", - "iopub.status.busy": "2023-01-24T17:40:16.906101Z", - "iopub.status.idle": "2023-01-24T17:40:17.713615Z", - "shell.execute_reply": "2023-01-24T17:40:17.712989Z" + "iopub.execute_input": "2023-01-25T19:54:56.904140Z", + "iopub.status.busy": "2023-01-25T19:54:56.903527Z", + "iopub.status.idle": "2023-01-25T19:54:58.328265Z", + "shell.execute_reply": "2023-01-25T19:54:58.327103Z" }, "papermill": { - "duration": 0.851087, - "end_time": "2023-01-24T17:40:17.715588", + "duration": 1.480104, + "end_time": "2023-01-25T19:54:58.330334", "exception": false, - "start_time": "2023-01-24T17:40:16.864501", + "start_time": "2023-01-25T19:54:56.850230", "status": "completed" }, "tags": [] @@ -1993,10 +1994,10 @@ "id": "37544255", "metadata": { "papermill": { - "duration": 0.040402, - "end_time": "2023-01-24T17:40:17.796515", + "duration": 0.057569, + "end_time": "2023-01-25T19:54:58.444883", "exception": false, - "start_time": "2023-01-24T17:40:17.756113", + "start_time": "2023-01-25T19:54:58.387314", "status": "completed" }, "tags": [] @@ -2011,16 +2012,16 @@ "id": "1f406b8b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:40:17.878559Z", - "iopub.status.busy": "2023-01-24T17:40:17.877858Z", - "iopub.status.idle": "2023-01-24T17:40:17.887066Z", - "shell.execute_reply": "2023-01-24T17:40:17.886391Z" + "iopub.execute_input": "2023-01-25T19:54:58.560130Z", + "iopub.status.busy": "2023-01-25T19:54:58.559254Z", + "iopub.status.idle": "2023-01-25T19:54:58.570570Z", + "shell.execute_reply": "2023-01-25T19:54:58.569716Z" }, "papermill": { - "duration": 0.051716, - "end_time": "2023-01-24T17:40:17.888540", + "duration": 0.071497, + "end_time": "2023-01-25T19:54:58.572500", "exception": false, - "start_time": "2023-01-24T17:40:17.836824", + "start_time": "2023-01-25T19:54:58.501003", "status": "completed" }, "tags": [] @@ -2104,10 +2105,10 @@ "id": "303540b5", "metadata": { "papermill": { - "duration": 0.040185, - "end_time": "2023-01-24T17:40:17.969211", + "duration": 0.056864, + "end_time": "2023-01-25T19:54:58.686067", "exception": false, - "start_time": "2023-01-24T17:40:17.929026", + "start_time": "2023-01-25T19:54:58.629203", "status": "completed" }, "tags": [] @@ -2122,16 +2123,16 @@ "id": "8d2bcbbd", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:40:18.051469Z", - "iopub.status.busy": "2023-01-24T17:40:18.050893Z", - "iopub.status.idle": "2023-01-24T17:40:18.058101Z", - "shell.execute_reply": "2023-01-24T17:40:18.057459Z" + "iopub.execute_input": "2023-01-25T19:54:58.806102Z", + "iopub.status.busy": "2023-01-25T19:54:58.805210Z", + "iopub.status.idle": "2023-01-25T19:54:58.815604Z", + "shell.execute_reply": "2023-01-25T19:54:58.814561Z" }, "papermill": { - "duration": 0.049988, - "end_time": "2023-01-24T17:40:18.059673", + "duration": 0.072504, + "end_time": "2023-01-25T19:54:58.817565", "exception": false, - "start_time": "2023-01-24T17:40:18.009685", + "start_time": "2023-01-25T19:54:58.745061", "status": "completed" }, "tags": [] @@ -2215,10 +2216,10 @@ "id": "d57b1c3a", "metadata": { "papermill": { - "duration": 0.040331, - "end_time": "2023-01-24T17:40:18.140497", + "duration": 0.053512, + "end_time": "2023-01-25T19:54:58.927077", "exception": false, - "start_time": "2023-01-24T17:40:18.100166", + "start_time": "2023-01-25T19:54:58.873565", "status": "completed" }, "tags": [] @@ -2233,16 +2234,16 @@ "id": "0c41630a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:40:18.223356Z", - "iopub.status.busy": "2023-01-24T17:40:18.223071Z", - "iopub.status.idle": "2023-01-24T17:40:18.631597Z", - "shell.execute_reply": "2023-01-24T17:40:18.630877Z" + "iopub.execute_input": "2023-01-25T19:54:59.038470Z", + "iopub.status.busy": "2023-01-25T19:54:59.038038Z", + "iopub.status.idle": "2023-01-25T19:54:59.645132Z", + "shell.execute_reply": "2023-01-25T19:54:59.643954Z" }, "papermill": { - "duration": 0.454959, - "end_time": "2023-01-24T17:40:18.636209", + "duration": 0.675797, + "end_time": "2023-01-25T19:54:59.657438", "exception": false, - "start_time": "2023-01-24T17:40:18.181250", + "start_time": "2023-01-25T19:54:58.981641", "status": "completed" }, "tags": [] @@ -2313,10 +2314,10 @@ "id": "d6a257f6", "metadata": { "papermill": { - "duration": 0.042578, - "end_time": "2023-01-24T17:40:18.723720", + "duration": 0.059558, + "end_time": "2023-01-25T19:54:59.779016", "exception": false, - "start_time": "2023-01-24T17:40:18.681142", + "start_time": "2023-01-25T19:54:59.719458", "status": "completed" }, "tags": [] @@ -2347,17 +2348,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 175.620056, - "end_time": "2023-01-24T17:40:20.589103", + "duration": 200.845271, + "end_time": "2023-01-25T19:55:03.468614", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/aligning_behavioral_data_to_task_events_with_the_stimulus_and_trials_tables.ipynb", - "output_path": "/tmp/tmp5umehgif/scratch_nb.ipynb", + "output_path": "/tmp/tmp6wfbwkzs/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmp5umehgif", + "output_dir": "/tmp/tmp6wfbwkzs", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T17:37:24.969047", + "start_time": "2023-01-25T19:51:42.623343", "version": "2.4.0" }, "vscode": { diff --git a/doc_template/examples_root/examples/nb/brain_observatory.ipynb b/doc_template/examples_root/examples/nb/brain_observatory.ipynb index fdc490f19..9058f555e 100644 --- a/doc_template/examples_root/examples/nb/brain_observatory.ipynb +++ b/doc_template/examples_root/examples/nb/brain_observatory.ipynb @@ -5,10 +5,10 @@ "id": "cd48a6ee", "metadata": { "papermill": { - "duration": 0.01072, - "end_time": "2023-01-24T18:01:39.742707", + "duration": 0.019936, + "end_time": "2023-01-25T20:15:03.005972", "exception": false, - "start_time": "2023-01-24T18:01:39.731987", + "start_time": "2023-01-25T20:15:02.986036", "status": "completed" }, "pycharm": { @@ -28,10 +28,10 @@ "id": "6055a8d4", "metadata": { "papermill": { - "duration": 0.007693, - "end_time": "2023-01-24T18:01:39.758414", + "duration": 0.010626, + "end_time": "2023-01-25T20:15:03.026809", "exception": false, - "start_time": "2023-01-24T18:01:39.750721", + "start_time": "2023-01-25T20:15:03.016183", "status": "completed" }, "pycharm": { @@ -50,16 +50,16 @@ "id": "8e879ee9", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:01:39.775298Z", - "iopub.status.busy": "2023-01-24T18:01:39.774714Z", - "iopub.status.idle": "2023-01-24T18:01:39.782082Z", - "shell.execute_reply": "2023-01-24T18:01:39.781408Z" + "iopub.execute_input": "2023-01-25T20:15:03.051402Z", + "iopub.status.busy": "2023-01-25T20:15:03.050720Z", + "iopub.status.idle": "2023-01-25T20:15:03.062994Z", + "shell.execute_reply": "2023-01-25T20:15:03.062067Z" }, "papermill": { - "duration": 0.017549, - "end_time": "2023-01-24T18:01:39.783601", + "duration": 0.02648, + "end_time": "2023-01-25T20:15:03.065184", "exception": false, - "start_time": "2023-01-24T18:01:39.766052", + "start_time": "2023-01-25T20:15:03.038704", "status": "completed" }, "pycharm": { @@ -78,16 +78,16 @@ "id": "220c7414", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:01:39.799986Z", - "iopub.status.busy": "2023-01-24T18:01:39.799563Z", - "iopub.status.idle": "2023-01-24T18:01:39.802605Z", - "shell.execute_reply": "2023-01-24T18:01:39.802009Z" + "iopub.execute_input": "2023-01-25T20:15:03.090151Z", + "iopub.status.busy": "2023-01-25T20:15:03.089125Z", + "iopub.status.idle": "2023-01-25T20:15:03.093706Z", + "shell.execute_reply": "2023-01-25T20:15:03.092770Z" }, "papermill": { - "duration": 0.012782, - "end_time": "2023-01-24T18:01:39.803999", + "duration": 0.017251, + "end_time": "2023-01-25T20:15:03.095893", "exception": false, - "start_time": "2023-01-24T18:01:39.791217", + "start_time": "2023-01-25T20:15:03.078642", "status": "completed" }, "pycharm": { @@ -108,16 +108,16 @@ "id": "87b84d32", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:01:39.841017Z", - "iopub.status.busy": "2023-01-24T18:01:39.840598Z", - "iopub.status.idle": "2023-01-24T18:01:48.243467Z", - "shell.execute_reply": "2023-01-24T18:01:48.242735Z" + "iopub.execute_input": "2023-01-25T20:15:03.143107Z", + "iopub.status.busy": "2023-01-25T20:15:03.142762Z", + "iopub.status.idle": "2023-01-25T20:15:13.108134Z", + "shell.execute_reply": "2023-01-25T20:15:13.107195Z" }, "papermill": { - "duration": 8.412924, - "end_time": "2023-01-24T18:01:48.245115", + "duration": 9.978582, + "end_time": "2023-01-25T20:15:13.110268", "exception": false, - "start_time": "2023-01-24T18:01:39.832191", + "start_time": "2023-01-25T20:15:03.131686", "status": "completed" }, "pycharm": { @@ -156,16 +156,16 @@ "id": "ee8ca05b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:01:48.263452Z", - "iopub.status.busy": "2023-01-24T18:01:48.262627Z", - "iopub.status.idle": "2023-01-24T18:01:48.306673Z", - "shell.execute_reply": "2023-01-24T18:01:48.306099Z" + "iopub.execute_input": "2023-01-25T20:15:13.131838Z", + "iopub.status.busy": "2023-01-25T20:15:13.131192Z", + "iopub.status.idle": "2023-01-25T20:15:13.195419Z", + "shell.execute_reply": "2023-01-25T20:15:13.194378Z" }, "papermill": { - "duration": 0.055102, - "end_time": "2023-01-24T18:01:48.308447", + "duration": 0.077514, + "end_time": "2023-01-25T20:15:13.198027", "exception": false, - "start_time": "2023-01-24T18:01:48.253345", + "start_time": "2023-01-25T20:15:13.120513", "status": "completed" }, "pycharm": { @@ -204,16 +204,16 @@ "id": "8569f98a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:01:48.325867Z", - "iopub.status.busy": "2023-01-24T18:01:48.325253Z", - "iopub.status.idle": "2023-01-24T18:01:48.370331Z", - "shell.execute_reply": "2023-01-24T18:01:48.369662Z" + "iopub.execute_input": "2023-01-25T20:15:13.220408Z", + "iopub.status.busy": "2023-01-25T20:15:13.220073Z", + "iopub.status.idle": "2023-01-25T20:15:13.287111Z", + "shell.execute_reply": "2023-01-25T20:15:13.286068Z" }, "papermill": { - "duration": 0.055491, - "end_time": "2023-01-24T18:01:48.372013", + "duration": 0.08181, + "end_time": "2023-01-25T20:15:13.290669", "exception": false, - "start_time": "2023-01-24T18:01:48.316522", + "start_time": "2023-01-25T20:15:13.208859", "status": "completed" }, "pycharm": { @@ -252,16 +252,16 @@ "id": "043f4517", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:01:48.390465Z", - "iopub.status.busy": "2023-01-24T18:01:48.389837Z", - "iopub.status.idle": "2023-01-24T18:01:48.432673Z", - "shell.execute_reply": "2023-01-24T18:01:48.431946Z" + "iopub.execute_input": "2023-01-25T20:15:13.322641Z", + "iopub.status.busy": "2023-01-25T20:15:13.322064Z", + "iopub.status.idle": "2023-01-25T20:15:13.383971Z", + "shell.execute_reply": "2023-01-25T20:15:13.382872Z" }, "papermill": { - "duration": 0.054016, - "end_time": "2023-01-24T18:01:48.434331", + "duration": 0.085179, + "end_time": "2023-01-25T20:15:13.386909", "exception": false, - "start_time": "2023-01-24T18:01:48.380315", + "start_time": "2023-01-25T20:15:13.301730", "status": "completed" }, "pycharm": { @@ -290,16 +290,16 @@ "id": "d9cec3d4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:01:48.451981Z", - "iopub.status.busy": "2023-01-24T18:01:48.451462Z", - "iopub.status.idle": "2023-01-24T18:01:48.495548Z", - "shell.execute_reply": "2023-01-24T18:01:48.494793Z" + "iopub.execute_input": "2023-01-25T20:15:13.409684Z", + "iopub.status.busy": "2023-01-25T20:15:13.409329Z", + "iopub.status.idle": "2023-01-25T20:15:13.470864Z", + "shell.execute_reply": "2023-01-25T20:15:13.469808Z" }, "papermill": { - "duration": 0.054576, - "end_time": "2023-01-24T18:01:48.497128", + "duration": 0.074878, + "end_time": "2023-01-25T20:15:13.473191", "exception": false, - "start_time": "2023-01-24T18:01:48.442552", + "start_time": "2023-01-25T20:15:13.398313", "status": "completed" }, "pycharm": { @@ -328,16 +328,16 @@ "id": "96b25815", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:01:48.515379Z", - "iopub.status.busy": "2023-01-24T18:01:48.514886Z", - "iopub.status.idle": "2023-01-24T18:01:48.518818Z", - "shell.execute_reply": "2023-01-24T18:01:48.518300Z" + "iopub.execute_input": "2023-01-25T20:15:13.498134Z", + "iopub.status.busy": "2023-01-25T20:15:13.497178Z", + "iopub.status.idle": "2023-01-25T20:15:13.502847Z", + "shell.execute_reply": "2023-01-25T20:15:13.501796Z" }, "papermill": { - "duration": 0.014937, - "end_time": "2023-01-24T18:01:48.520506", + "duration": 0.020192, + "end_time": "2023-01-25T20:15:13.504920", "exception": false, - "start_time": "2023-01-24T18:01:48.505569", + "start_time": "2023-01-25T20:15:13.484728", "status": "completed" }, "pycharm": { @@ -378,16 +378,16 @@ "id": "2a4dc967", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:01:48.537935Z", - "iopub.status.busy": "2023-01-24T18:01:48.537336Z", - "iopub.status.idle": "2023-01-24T18:01:48.581853Z", - "shell.execute_reply": "2023-01-24T18:01:48.581280Z" + "iopub.execute_input": "2023-01-25T20:15:13.528376Z", + "iopub.status.busy": "2023-01-25T20:15:13.527743Z", + "iopub.status.idle": "2023-01-25T20:15:13.592666Z", + "shell.execute_reply": "2023-01-25T20:15:13.591521Z" }, "papermill": { - "duration": 0.05505, - "end_time": "2023-01-24T18:01:48.583577", + "duration": 0.079584, + "end_time": "2023-01-25T20:15:13.595014", "exception": false, - "start_time": "2023-01-24T18:01:48.528527", + "start_time": "2023-01-25T20:15:13.515430", "status": "completed" }, "pycharm": { @@ -431,16 +431,16 @@ "id": "fcb56809", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:01:48.601485Z", - "iopub.status.busy": "2023-01-24T18:01:48.601002Z", - "iopub.status.idle": "2023-01-24T18:01:48.644364Z", - "shell.execute_reply": "2023-01-24T18:01:48.643626Z" + "iopub.execute_input": "2023-01-25T20:15:13.617655Z", + "iopub.status.busy": "2023-01-25T20:15:13.617315Z", + "iopub.status.idle": "2023-01-25T20:15:13.682208Z", + "shell.execute_reply": "2023-01-25T20:15:13.680928Z" }, "papermill": { - "duration": 0.054002, - "end_time": "2023-01-24T18:01:48.645929", + "duration": 0.078717, + "end_time": "2023-01-25T20:15:13.684508", "exception": false, - "start_time": "2023-01-24T18:01:48.591927", + "start_time": "2023-01-25T20:15:13.605791", "status": "completed" }, "pycharm": { @@ -482,10 +482,10 @@ "id": "a3c1ce36", "metadata": { "papermill": { - "duration": 0.008199, - "end_time": "2023-01-24T18:01:48.662613", + "duration": 0.009922, + "end_time": "2023-01-25T20:15:13.705107", "exception": false, - "start_time": "2023-01-24T18:01:48.654414", + "start_time": "2023-01-25T20:15:13.695185", "status": "completed" }, "pycharm": { @@ -504,16 +504,16 @@ "id": "7fd5776a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:01:48.680205Z", - "iopub.status.busy": "2023-01-24T18:01:48.679698Z", - "iopub.status.idle": "2023-01-24T18:02:13.665994Z", - "shell.execute_reply": "2023-01-24T18:02:13.665323Z" + "iopub.execute_input": "2023-01-25T20:15:13.727839Z", + "iopub.status.busy": "2023-01-25T20:15:13.726401Z", + "iopub.status.idle": "2023-01-25T20:15:40.553507Z", + "shell.execute_reply": "2023-01-25T20:15:40.551960Z" }, "papermill": { - "duration": 24.996972, - "end_time": "2023-01-24T18:02:13.667658", + "duration": 26.840883, + "end_time": "2023-01-25T20:15:40.555996", "exception": false, - "start_time": "2023-01-24T18:01:48.670686", + "start_time": "2023-01-25T20:15:13.715113", "status": "completed" }, "pycharm": { @@ -577,10 +577,10 @@ "id": "fdcd6bd9", "metadata": { "papermill": { - "duration": 0.008416, - "end_time": "2023-01-24T18:02:13.684673", + "duration": 0.020604, + "end_time": "2023-01-25T20:15:40.590528", "exception": false, - "start_time": "2023-01-24T18:02:13.676257", + "start_time": "2023-01-25T20:15:40.569924", "status": "completed" }, "pycharm": { @@ -598,16 +598,16 @@ "id": "7ee205c2", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:02:13.703827Z", - "iopub.status.busy": "2023-01-24T18:02:13.702256Z", - "iopub.status.idle": "2023-01-24T18:02:14.228170Z", - "shell.execute_reply": "2023-01-24T18:02:14.227448Z" + "iopub.execute_input": "2023-01-25T20:15:40.612697Z", + "iopub.status.busy": "2023-01-25T20:15:40.612310Z", + "iopub.status.idle": "2023-01-25T20:15:41.097278Z", + "shell.execute_reply": "2023-01-25T20:15:41.096216Z" }, "papermill": { - "duration": 0.537116, - "end_time": "2023-01-24T18:02:14.230120", + "duration": 0.499131, + "end_time": "2023-01-25T20:15:41.099817", "exception": false, - "start_time": "2023-01-24T18:02:13.693004", + "start_time": "2023-01-25T20:15:40.600686", "status": "completed" }, "pycharm": { @@ -653,10 +653,10 @@ "id": "6b13077a", "metadata": { "papermill": { - "duration": 0.008615, - "end_time": "2023-01-24T18:02:14.247522", + "duration": 0.009756, + "end_time": "2023-01-25T20:15:41.120836", "exception": false, - "start_time": "2023-01-24T18:02:14.238907", + "start_time": "2023-01-25T20:15:41.111080", "status": "completed" }, "pycharm": { @@ -674,16 +674,16 @@ "id": "e4381ee6", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:02:14.265984Z", - "iopub.status.busy": "2023-01-24T18:02:14.265220Z", - "iopub.status.idle": "2023-01-24T18:02:28.278469Z", - "shell.execute_reply": "2023-01-24T18:02:28.277893Z" + "iopub.execute_input": "2023-01-25T20:15:41.145100Z", + "iopub.status.busy": "2023-01-25T20:15:41.144761Z", + "iopub.status.idle": "2023-01-25T20:15:47.366887Z", + "shell.execute_reply": "2023-01-25T20:15:47.365983Z" }, "papermill": { - "duration": 14.024427, - "end_time": "2023-01-24T18:02:28.280274", + "duration": 6.238086, + "end_time": "2023-01-25T20:15:47.369469", "exception": false, - "start_time": "2023-01-24T18:02:14.255847", + "start_time": "2023-01-25T20:15:41.131383", "status": "completed" }, "pycharm": { @@ -696,7 +696,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 18:02:14,348 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/592661898\n" + "2023-01-25 20:15:41,198 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/592661898\n" ] }, { @@ -735,10 +735,10 @@ "id": "a54821c9", "metadata": { "papermill": { - "duration": 0.008821, - "end_time": "2023-01-24T18:02:28.297943", + "duration": 0.009986, + "end_time": "2023-01-25T20:15:47.390845", "exception": false, - "start_time": "2023-01-24T18:02:28.289122", + "start_time": "2023-01-25T20:15:47.380859", "status": "completed" }, "pycharm": { @@ -759,16 +759,16 @@ "id": "61b02e9b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:02:28.316689Z", - "iopub.status.busy": "2023-01-24T18:02:28.315944Z", - "iopub.status.idle": "2023-01-24T18:07:02.449585Z", - "shell.execute_reply": "2023-01-24T18:07:02.449000Z" + "iopub.execute_input": "2023-01-25T20:15:47.413422Z", + "iopub.status.busy": "2023-01-25T20:15:47.413053Z", + "iopub.status.idle": "2023-01-25T20:20:30.452645Z", + "shell.execute_reply": "2023-01-25T20:20:30.448380Z" }, "papermill": { - "duration": 274.15307, - "end_time": "2023-01-24T18:07:02.459544", + "duration": 283.060814, + "end_time": "2023-01-25T20:20:30.462351", "exception": false, - "start_time": "2023-01-24T18:02:28.306474", + "start_time": "2023-01-25T20:15:47.401537", "status": "completed" }, "pycharm": { @@ -815,10 +815,10 @@ "id": "080dd75f", "metadata": { "papermill": { - "duration": 0.008403, - "end_time": "2023-01-24T18:07:02.476550", + "duration": 0.010729, + "end_time": "2023-01-25T20:20:30.483631", "exception": false, - "start_time": "2023-01-24T18:07:02.468147", + "start_time": "2023-01-25T20:20:30.472902", "status": "completed" }, "pycharm": { @@ -837,16 +837,16 @@ "id": "f4867585", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:07:02.495073Z", - "iopub.status.busy": "2023-01-24T18:07:02.494373Z", - "iopub.status.idle": "2023-01-24T18:07:03.014620Z", - "shell.execute_reply": "2023-01-24T18:07:03.014035Z" + "iopub.execute_input": "2023-01-25T20:20:30.507586Z", + "iopub.status.busy": "2023-01-25T20:20:30.506862Z", + "iopub.status.idle": "2023-01-25T20:20:31.235496Z", + "shell.execute_reply": "2023-01-25T20:20:31.233719Z" }, "papermill": { - "duration": 0.531436, - "end_time": "2023-01-24T18:07:03.016449", + "duration": 0.743198, + "end_time": "2023-01-25T20:20:31.237549", "exception": false, - "start_time": "2023-01-24T18:07:02.485013", + "start_time": "2023-01-25T20:20:30.494351", "status": "completed" }, "pycharm": { @@ -896,10 +896,10 @@ "id": "607f27e7", "metadata": { "papermill": { - "duration": 0.054875, - "end_time": "2023-01-24T18:07:03.080628", + "duration": 0.011627, + "end_time": "2023-01-25T20:20:31.263615", "exception": false, - "start_time": "2023-01-24T18:07:03.025753", + "start_time": "2023-01-25T20:20:31.251988", "status": "completed" }, "pycharm": { @@ -918,16 +918,16 @@ "id": "fb346e93", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:07:03.099445Z", - "iopub.status.busy": "2023-01-24T18:07:03.098882Z", - "iopub.status.idle": "2023-01-24T18:07:39.183222Z", - "shell.execute_reply": "2023-01-24T18:07:39.181420Z" + "iopub.execute_input": "2023-01-25T20:20:31.287982Z", + "iopub.status.busy": "2023-01-25T20:20:31.287015Z", + "iopub.status.idle": "2023-01-25T20:20:53.189428Z", + "shell.execute_reply": "2023-01-25T20:20:53.188501Z" }, "papermill": { - "duration": 36.10281, - "end_time": "2023-01-24T18:07:39.192090", + "duration": 21.917801, + "end_time": "2023-01-25T20:20:53.191686", "exception": false, - "start_time": "2023-01-24T18:07:03.089280", + "start_time": "2023-01-25T20:20:31.273885", "status": "completed" }, "pycharm": { @@ -940,7 +940,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 18:07:06,031 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/516362573\n" + "2023-01-25 20:20:35,126 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/516362573\n" ] }, { @@ -992,10 +992,10 @@ "id": "dc9bc85c", "metadata": { "papermill": { - "duration": 0.008793, - "end_time": "2023-01-24T18:07:39.209801", + "duration": 0.010534, + "end_time": "2023-01-25T20:20:53.215359", "exception": false, - "start_time": "2023-01-24T18:07:39.201008", + "start_time": "2023-01-25T20:20:53.204825", "status": "completed" }, "pycharm": { @@ -1014,16 +1014,16 @@ "id": "cd2cdf9a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:07:39.228745Z", - "iopub.status.busy": "2023-01-24T18:07:39.228188Z", - "iopub.status.idle": "2023-01-24T18:07:39.371588Z", - "shell.execute_reply": "2023-01-24T18:07:39.370890Z" + "iopub.execute_input": "2023-01-25T20:20:53.239071Z", + "iopub.status.busy": "2023-01-25T20:20:53.238212Z", + "iopub.status.idle": "2023-01-25T20:20:53.394162Z", + "shell.execute_reply": "2023-01-25T20:20:53.393079Z" }, "papermill": { - "duration": 0.154912, - "end_time": "2023-01-24T18:07:39.373381", + "duration": 0.171404, + "end_time": "2023-01-25T20:20:53.397299", "exception": false, - "start_time": "2023-01-24T18:07:39.218469", + "start_time": "2023-01-25T20:20:53.225895", "status": "completed" }, "pycharm": { @@ -1047,16 +1047,16 @@ "id": "9a6d7818", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:07:39.393156Z", - "iopub.status.busy": "2023-01-24T18:07:39.392618Z", - "iopub.status.idle": "2023-01-24T18:07:40.258861Z", - "shell.execute_reply": "2023-01-24T18:07:40.258191Z" + "iopub.execute_input": "2023-01-25T20:20:53.423150Z", + "iopub.status.busy": "2023-01-25T20:20:53.422770Z", + "iopub.status.idle": "2023-01-25T20:20:54.699871Z", + "shell.execute_reply": "2023-01-25T20:20:54.698703Z" }, "papermill": { - "duration": 0.877883, - "end_time": "2023-01-24T18:07:40.260544", + "duration": 1.292797, + "end_time": "2023-01-25T20:20:54.702885", "exception": false, - "start_time": "2023-01-24T18:07:39.382661", + "start_time": "2023-01-25T20:20:53.410088", "status": "completed" }, "pycharm": { @@ -1139,10 +1139,10 @@ "id": "b2e12495", "metadata": { "papermill": { - "duration": 0.011663, - "end_time": "2023-01-24T18:07:40.284476", + "duration": 0.013772, + "end_time": "2023-01-25T20:20:54.731364", "exception": false, - "start_time": "2023-01-24T18:07:40.272813", + "start_time": "2023-01-25T20:20:54.717592", "status": "completed" }, "pycharm": { @@ -1161,16 +1161,16 @@ "id": "2fcb8a99", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:07:40.309166Z", - "iopub.status.busy": "2023-01-24T18:07:40.308630Z", - "iopub.status.idle": "2023-01-24T18:07:47.758652Z", - "shell.execute_reply": "2023-01-24T18:07:47.758064Z" + "iopub.execute_input": "2023-01-25T20:20:54.765423Z", + "iopub.status.busy": "2023-01-25T20:20:54.765045Z", + "iopub.status.idle": "2023-01-25T20:21:01.939061Z", + "shell.execute_reply": "2023-01-25T20:21:01.938151Z" }, "papermill": { - "duration": 7.464286, - "end_time": "2023-01-24T18:07:47.760348", + "duration": 7.19528, + "end_time": "2023-01-25T20:21:01.941624", "exception": false, - "start_time": "2023-01-24T18:07:40.296062", + "start_time": "2023-01-25T20:20:54.746344", "status": "completed" }, "pycharm": { @@ -1183,7 +1183,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 18:07:40,395 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/516381662\n" + "2023-01-25 20:20:54,825 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/516381662\n" ] }, { @@ -1236,10 +1236,10 @@ "id": "4099cab0", "metadata": { "papermill": { - "duration": 0.012994, - "end_time": "2023-01-24T18:07:47.787169", + "duration": 0.015138, + "end_time": "2023-01-25T20:21:01.973009", "exception": false, - "start_time": "2023-01-24T18:07:47.774175", + "start_time": "2023-01-25T20:21:01.957871", "status": "completed" }, "pycharm": { @@ -1258,16 +1258,16 @@ "id": "29b6778d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:07:47.814097Z", - "iopub.status.busy": "2023-01-24T18:07:47.813846Z", - "iopub.status.idle": "2023-01-24T18:09:06.800384Z", - "shell.execute_reply": "2023-01-24T18:09:06.799782Z" + "iopub.execute_input": "2023-01-25T20:21:02.005324Z", + "iopub.status.busy": "2023-01-25T20:21:02.004296Z", + "iopub.status.idle": "2023-01-25T20:22:52.767416Z", + "shell.execute_reply": "2023-01-25T20:22:52.766495Z" }, "papermill": { - "duration": 79.012814, - "end_time": "2023-01-24T18:09:06.812975", + "duration": 110.797061, + "end_time": "2023-01-25T20:22:52.784733", "exception": false, - "start_time": "2023-01-24T18:07:47.800161", + "start_time": "2023-01-25T20:21:01.987672", "status": "completed" }, "pycharm": { @@ -1280,7 +1280,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 18:07:47,895 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/517023824\n" + "2023-01-25 20:21:02,059 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/517023824\n" ] }, { @@ -1307,16 +1307,16 @@ "id": "dfa32c09", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:09:06.841264Z", - "iopub.status.busy": "2023-01-24T18:09:06.840726Z", - "iopub.status.idle": "2023-01-24T18:09:07.088204Z", - "shell.execute_reply": "2023-01-24T18:09:07.087548Z" + "iopub.execute_input": "2023-01-25T20:22:52.818147Z", + "iopub.status.busy": "2023-01-25T20:22:52.817585Z", + "iopub.status.idle": "2023-01-25T20:22:53.199187Z", + "shell.execute_reply": "2023-01-25T20:22:53.196947Z" }, "papermill": { - "duration": 0.263594, - "end_time": "2023-01-24T18:09:07.089760", + "duration": 0.402977, + "end_time": "2023-01-25T20:22:53.202805", "exception": false, - "start_time": "2023-01-24T18:09:06.826166", + "start_time": "2023-01-25T20:22:52.799828", "status": "completed" }, "pycharm": { @@ -1396,10 +1396,10 @@ "id": "458fdd83", "metadata": { "papermill": { - "duration": 0.014212, - "end_time": "2023-01-24T18:09:07.117845", + "duration": 0.016029, + "end_time": "2023-01-25T20:22:53.236522", "exception": false, - "start_time": "2023-01-24T18:09:07.103633", + "start_time": "2023-01-25T20:22:53.220493", "status": "completed" }, "pycharm": { @@ -1418,16 +1418,16 @@ "id": "104ad37d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:09:07.146812Z", - "iopub.status.busy": "2023-01-24T18:09:07.146231Z", - "iopub.status.idle": "2023-01-24T18:09:26.885430Z", - "shell.execute_reply": "2023-01-24T18:09:26.884848Z" + "iopub.execute_input": "2023-01-25T20:22:53.271224Z", + "iopub.status.busy": "2023-01-25T20:22:53.270627Z", + "iopub.status.idle": "2023-01-25T20:23:01.995166Z", + "shell.execute_reply": "2023-01-25T20:23:01.994041Z" }, "papermill": { - "duration": 19.755667, - "end_time": "2023-01-24T18:09:26.887391", + "duration": 8.745227, + "end_time": "2023-01-25T20:23:01.997360", "exception": false, - "start_time": "2023-01-24T18:09:07.131724", + "start_time": "2023-01-25T20:22:53.252133", "status": "completed" }, "pycharm": { @@ -1440,7 +1440,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 18:09:07,247 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/569955226\n" + "2023-01-25 20:22:53,348 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/569955226\n" ] }, { @@ -1472,10 +1472,10 @@ "id": "5ca1332a", "metadata": { "papermill": { - "duration": 0.013583, - "end_time": "2023-01-24T18:09:26.915347", + "duration": 0.015104, + "end_time": "2023-01-25T20:23:02.029439", "exception": false, - "start_time": "2023-01-24T18:09:26.901764", + "start_time": "2023-01-25T20:23:02.014335", "status": "completed" }, "pycharm": { @@ -1493,16 +1493,16 @@ "id": "f8a45105", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:09:26.943840Z", - "iopub.status.busy": "2023-01-24T18:09:26.943431Z", - "iopub.status.idle": "2023-01-24T18:09:27.201630Z", - "shell.execute_reply": "2023-01-24T18:09:27.200921Z" + "iopub.execute_input": "2023-01-25T20:23:02.063320Z", + "iopub.status.busy": "2023-01-25T20:23:02.061995Z", + "iopub.status.idle": "2023-01-25T20:23:02.434665Z", + "shell.execute_reply": "2023-01-25T20:23:02.433605Z" }, "papermill": { - "duration": 0.274715, - "end_time": "2023-01-24T18:09:27.203578", + "duration": 0.392494, + "end_time": "2023-01-25T20:23:02.437359", "exception": false, - "start_time": "2023-01-24T18:09:26.928863", + "start_time": "2023-01-25T20:23:02.044865", "status": "completed" }, "pycharm": { @@ -1536,10 +1536,10 @@ "id": "186c5e29", "metadata": { "papermill": { - "duration": 0.014424, - "end_time": "2023-01-24T18:09:27.232589", + "duration": 0.01713, + "end_time": "2023-01-25T20:23:02.471866", "exception": false, - "start_time": "2023-01-24T18:09:27.218165", + "start_time": "2023-01-25T20:23:02.454736", "status": "completed" }, "pycharm": { @@ -1558,16 +1558,16 @@ "id": "0ffbd45a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:09:27.262238Z", - "iopub.status.busy": "2023-01-24T18:09:27.261698Z", - "iopub.status.idle": "2023-01-24T18:09:28.047570Z", - "shell.execute_reply": "2023-01-24T18:09:28.046833Z" + "iopub.execute_input": "2023-01-25T20:23:02.510272Z", + "iopub.status.busy": "2023-01-25T20:23:02.509162Z", + "iopub.status.idle": "2023-01-25T20:23:03.509054Z", + "shell.execute_reply": "2023-01-25T20:23:03.507660Z" }, "papermill": { - "duration": 0.802828, - "end_time": "2023-01-24T18:09:28.049410", + "duration": 1.023071, + "end_time": "2023-01-25T20:23:03.511516", "exception": false, - "start_time": "2023-01-24T18:09:27.246582", + "start_time": "2023-01-25T20:23:02.488445", "status": "completed" }, "pycharm": { @@ -1602,10 +1602,10 @@ "id": "6fa72a23", "metadata": { "papermill": { - "duration": 0.015183, - "end_time": "2023-01-24T18:09:28.079847", + "duration": 0.017789, + "end_time": "2023-01-25T20:23:03.547033", "exception": false, - "start_time": "2023-01-24T18:09:28.064664", + "start_time": "2023-01-25T20:23:03.529244", "status": "completed" }, "pycharm": { @@ -1624,16 +1624,16 @@ "id": "f401120b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:09:28.111285Z", - "iopub.status.busy": "2023-01-24T18:09:28.110696Z", - "iopub.status.idle": "2023-01-24T18:09:47.348362Z", - "shell.execute_reply": "2023-01-24T18:09:47.347662Z" + "iopub.execute_input": "2023-01-25T20:23:03.586343Z", + "iopub.status.busy": "2023-01-25T20:23:03.585594Z", + "iopub.status.idle": "2023-01-25T20:23:19.835833Z", + "shell.execute_reply": "2023-01-25T20:23:19.834133Z" }, "papermill": { - "duration": 19.25581, - "end_time": "2023-01-24T18:09:47.350531", + "duration": 16.272428, + "end_time": "2023-01-25T20:23:19.837938", "exception": false, - "start_time": "2023-01-24T18:09:28.094721", + "start_time": "2023-01-25T20:23:03.565510", "status": "completed" }, "pycharm": { @@ -1647,7 +1647,7 @@ "output_type": "stream", "text": [ "WARNING:allensdk.api.queries.brain_observatory_api:Downloading ophys_experiment 501940850 NWB. This can take some time.\n", - "2023-01-24 18:09:28,194 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/514340576\n", + "2023-01-25 20:23:03,642 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/514340576\n", "INFO:allensdk.api.api.retrieve_file_over_http:Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/514340576\n" ] }, @@ -1679,10 +1679,10 @@ "id": "cf116154", "metadata": { "papermill": { - "duration": 0.015711, - "end_time": "2023-01-24T18:09:47.382348", + "duration": 0.056755, + "end_time": "2023-01-25T20:23:20.107068", "exception": false, - "start_time": "2023-01-24T18:09:47.366637", + "start_time": "2023-01-25T20:23:20.050313", "status": "completed" }, "pycharm": { @@ -1701,16 +1701,16 @@ "id": "d1cbbe0d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:09:47.414981Z", - "iopub.status.busy": "2023-01-24T18:09:47.414645Z", - "iopub.status.idle": "2023-01-24T18:09:47.828022Z", - "shell.execute_reply": "2023-01-24T18:09:47.827296Z" + "iopub.execute_input": "2023-01-25T20:23:20.508741Z", + "iopub.status.busy": "2023-01-25T20:23:20.508283Z", + "iopub.status.idle": "2023-01-25T20:23:21.080278Z", + "shell.execute_reply": "2023-01-25T20:23:21.079111Z" }, "papermill": { - "duration": 0.432084, - "end_time": "2023-01-24T18:09:47.830016", + "duration": 0.625053, + "end_time": "2023-01-25T20:23:21.082513", "exception": false, - "start_time": "2023-01-24T18:09:47.397932", + "start_time": "2023-01-25T20:23:20.457460", "status": "completed" }, "pycharm": { @@ -1750,10 +1750,10 @@ "id": "1b6ee390", "metadata": { "papermill": { - "duration": 0.016683, - "end_time": "2023-01-24T18:09:47.864287", + "duration": 0.020646, + "end_time": "2023-01-25T20:23:21.123076", "exception": false, - "start_time": "2023-01-24T18:09:47.847604", + "start_time": "2023-01-25T20:23:21.102430", "status": "completed" }, "pycharm": { @@ -1772,16 +1772,16 @@ "id": "88c66084", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:09:47.899222Z", - "iopub.status.busy": "2023-01-24T18:09:47.898635Z", - "iopub.status.idle": "2023-01-24T18:09:48.739411Z", - "shell.execute_reply": "2023-01-24T18:09:48.738672Z" + "iopub.execute_input": "2023-01-25T20:23:21.162957Z", + "iopub.status.busy": "2023-01-25T20:23:21.161766Z", + "iopub.status.idle": "2023-01-25T20:23:22.299548Z", + "shell.execute_reply": "2023-01-25T20:23:22.298383Z" }, "papermill": { - "duration": 0.860264, - "end_time": "2023-01-24T18:09:48.741198", + "duration": 1.160697, + "end_time": "2023-01-25T20:23:22.302027", "exception": false, - "start_time": "2023-01-24T18:09:47.880934", + "start_time": "2023-01-25T20:23:21.141330", "status": "completed" }, "pycharm": { @@ -1898,17 +1898,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 490.404472, - "end_time": "2023-01-24T18:09:49.284145", + "duration": 501.218056, + "end_time": "2023-01-25T20:23:23.148771", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/brain_observatory.ipynb", - "output_path": "/tmp/tmp5qiu6s0i/scratch_nb.ipynb", + "output_path": "/tmp/tmpts9b1zco/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmp5qiu6s0i", + "output_dir": "/tmp/tmpts9b1zco", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T18:01:38.879673", + "start_time": "2023-01-25T20:15:01.930715", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/brain_observatory_analysis.ipynb b/doc_template/examples_root/examples/nb/brain_observatory_analysis.ipynb index 7fae08859..fe896a293 100644 --- a/doc_template/examples_root/examples/nb/brain_observatory_analysis.ipynb +++ b/doc_template/examples_root/examples/nb/brain_observatory_analysis.ipynb @@ -5,10 +5,10 @@ "id": "867901ba", "metadata": { "papermill": { - "duration": 0.006617, - "end_time": "2023-01-24T16:57:43.859585", + "duration": 0.008549, + "end_time": "2023-01-25T19:04:19.618919", "exception": false, - "start_time": "2023-01-24T16:57:43.852968", + "start_time": "2023-01-25T19:04:19.610370", "status": "completed" }, "pycharm": { @@ -29,16 +29,16 @@ "id": "90c1e63e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:43.872236Z", - "iopub.status.busy": "2023-01-24T16:57:43.871680Z", - "iopub.status.idle": "2023-01-24T16:57:43.879030Z", - "shell.execute_reply": "2023-01-24T16:57:43.878347Z" + "iopub.execute_input": "2023-01-25T19:04:19.634892Z", + "iopub.status.busy": "2023-01-25T19:04:19.633943Z", + "iopub.status.idle": "2023-01-25T19:04:19.643453Z", + "shell.execute_reply": "2023-01-25T19:04:19.642457Z" }, "papermill": { - "duration": 0.015294, - "end_time": "2023-01-24T16:57:43.880513", + "duration": 0.019728, + "end_time": "2023-01-25T19:04:19.645598", "exception": false, - "start_time": "2023-01-24T16:57:43.865219", + "start_time": "2023-01-25T19:04:19.625870", "status": "completed" }, "pycharm": { @@ -57,16 +57,16 @@ "id": "3f58b7bd", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:43.892540Z", - "iopub.status.busy": "2023-01-24T16:57:43.892092Z", - "iopub.status.idle": "2023-01-24T16:57:43.895667Z", - "shell.execute_reply": "2023-01-24T16:57:43.895062Z" + "iopub.execute_input": "2023-01-25T19:04:19.664149Z", + "iopub.status.busy": "2023-01-25T19:04:19.663431Z", + "iopub.status.idle": "2023-01-25T19:04:19.668404Z", + "shell.execute_reply": "2023-01-25T19:04:19.667483Z" }, "papermill": { - "duration": 0.011154, - "end_time": "2023-01-24T16:57:43.897092", + "duration": 0.018341, + "end_time": "2023-01-25T19:04:19.670797", "exception": false, - "start_time": "2023-01-24T16:57:43.885938", + "start_time": "2023-01-25T19:04:19.652456", "status": "completed" }, "pycharm": { @@ -89,16 +89,16 @@ "id": "7cdec404", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:43.925160Z", - "iopub.status.busy": "2023-01-24T16:57:43.924595Z", - "iopub.status.idle": "2023-01-24T16:57:46.302379Z", - "shell.execute_reply": "2023-01-24T16:57:46.301695Z" + "iopub.execute_input": "2023-01-25T19:04:19.708952Z", + "iopub.status.busy": "2023-01-25T19:04:19.708258Z", + "iopub.status.idle": "2023-01-25T19:04:22.979690Z", + "shell.execute_reply": "2023-01-25T19:04:22.978615Z" }, "papermill": { - "duration": 2.386062, - "end_time": "2023-01-24T16:57:46.304576", + "duration": 3.295531, + "end_time": "2023-01-25T19:04:22.995459", "exception": false, - "start_time": "2023-01-24T16:57:43.918514", + "start_time": "2023-01-25T19:04:19.699928", "status": "completed" }, "pycharm": { @@ -120,10 +120,10 @@ "id": "6e8ddd48", "metadata": { "papermill": { - "duration": 0.005483, - "end_time": "2023-01-24T16:57:46.315885", + "duration": 0.006906, + "end_time": "2023-01-25T19:04:23.009998", "exception": false, - "start_time": "2023-01-24T16:57:46.310402", + "start_time": "2023-01-25T19:04:23.003092", "status": "completed" }, "pycharm": { @@ -142,16 +142,16 @@ "id": "a10438e9", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:46.328541Z", - "iopub.status.busy": "2023-01-24T16:57:46.327703Z", - "iopub.status.idle": "2023-01-24T16:58:01.948892Z", - "shell.execute_reply": "2023-01-24T16:58:01.948116Z" + "iopub.execute_input": "2023-01-25T19:04:23.025789Z", + "iopub.status.busy": "2023-01-25T19:04:23.025192Z", + "iopub.status.idle": "2023-01-25T19:04:34.373570Z", + "shell.execute_reply": "2023-01-25T19:04:34.372544Z" }, "papermill": { - "duration": 15.629724, - "end_time": "2023-01-24T16:58:01.950962", + "duration": 11.359155, + "end_time": "2023-01-25T19:04:34.376349", "exception": false, - "start_time": "2023-01-24T16:57:46.321238", + "start_time": "2023-01-25T19:04:23.017194", "status": "completed" }, "pycharm": { @@ -164,7 +164,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 16:57:46,413 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/514609062\n" + "2023-01-25 19:04:23,095 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/514609062\n" ] } ], @@ -183,10 +183,10 @@ "id": "04d4f715", "metadata": { "papermill": { - "duration": 0.005698, - "end_time": "2023-01-24T16:58:01.962699", + "duration": 0.00721, + "end_time": "2023-01-25T19:04:34.391137", "exception": false, - "start_time": "2023-01-24T16:58:01.957001", + "start_time": "2023-01-25T19:04:34.383927", "status": "completed" }, "pycharm": { @@ -204,16 +204,16 @@ "id": "d03c5173", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:58:01.975281Z", - "iopub.status.busy": "2023-01-24T16:58:01.974688Z", - "iopub.status.idle": "2023-01-24T16:58:01.980270Z", - "shell.execute_reply": "2023-01-24T16:58:01.979585Z" + "iopub.execute_input": "2023-01-25T19:04:34.407653Z", + "iopub.status.busy": "2023-01-25T19:04:34.406850Z", + "iopub.status.idle": "2023-01-25T19:04:34.416657Z", + "shell.execute_reply": "2023-01-25T19:04:34.415615Z" }, "papermill": { - "duration": 0.013497, - "end_time": "2023-01-24T16:58:01.981686", + "duration": 0.020768, + "end_time": "2023-01-25T19:04:34.418909", "exception": false, - "start_time": "2023-01-24T16:58:01.968189", + "start_time": "2023-01-25T19:04:34.398141", "status": "completed" }, "pycharm": { @@ -245,10 +245,10 @@ "id": "3c3a9b9e", "metadata": { "papermill": { - "duration": 0.005449, - "end_time": "2023-01-24T16:58:01.993721", + "duration": 0.007261, + "end_time": "2023-01-25T19:04:34.433402", "exception": false, - "start_time": "2023-01-24T16:58:01.988272", + "start_time": "2023-01-25T19:04:34.426141", "status": "completed" }, "pycharm": { @@ -273,16 +273,16 @@ "id": "5db37d31", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:58:02.006026Z", - "iopub.status.busy": "2023-01-24T16:58:02.005557Z", - "iopub.status.idle": "2023-01-24T16:58:18.887352Z", - "shell.execute_reply": "2023-01-24T16:58:18.886746Z" + "iopub.execute_input": "2023-01-25T19:04:34.449850Z", + "iopub.status.busy": "2023-01-25T19:04:34.449066Z", + "iopub.status.idle": "2023-01-25T19:05:05.561892Z", + "shell.execute_reply": "2023-01-25T19:05:05.560958Z" }, "papermill": { - "duration": 16.889961, - "end_time": "2023-01-24T16:58:18.889143", + "duration": 31.133745, + "end_time": "2023-01-25T19:05:05.574363", "exception": false, - "start_time": "2023-01-24T16:58:01.999182", + "start_time": "2023-01-25T19:04:34.440618", "status": "completed" }, "pycharm": { @@ -319,10 +319,10 @@ "id": "e03708c8", "metadata": { "papermill": { - "duration": 0.006238, - "end_time": "2023-01-24T16:58:18.901997", + "duration": 0.007539, + "end_time": "2023-01-25T19:05:05.589160", "exception": false, - "start_time": "2023-01-24T16:58:18.895759", + "start_time": "2023-01-25T19:05:05.581621", "status": "completed" }, "pycharm": { @@ -350,16 +350,16 @@ "id": "c7c1c980", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:58:18.915603Z", - "iopub.status.busy": "2023-01-24T16:58:18.915102Z", - "iopub.status.idle": "2023-01-24T16:58:23.498134Z", - "shell.execute_reply": "2023-01-24T16:58:23.497499Z" + "iopub.execute_input": "2023-01-25T19:05:05.606251Z", + "iopub.status.busy": "2023-01-25T19:05:05.605532Z", + "iopub.status.idle": "2023-01-25T19:05:14.262216Z", + "shell.execute_reply": "2023-01-25T19:05:14.260934Z" }, "papermill": { - "duration": 4.591851, - "end_time": "2023-01-24T16:58:23.500005", + "duration": 8.66779, + "end_time": "2023-01-25T19:05:14.264387", "exception": false, - "start_time": "2023-01-24T16:58:18.908154", + "start_time": "2023-01-25T19:05:05.596597", "status": "completed" }, "pycharm": { @@ -411,10 +411,10 @@ "id": "19abf203", "metadata": { "papermill": { - "duration": 0.006282, - "end_time": "2023-01-24T16:58:23.512947", + "duration": 0.00868, + "end_time": "2023-01-25T19:05:14.281417", "exception": false, - "start_time": "2023-01-24T16:58:23.506665", + "start_time": "2023-01-25T19:05:14.272737", "status": "completed" }, "pycharm": { @@ -432,16 +432,16 @@ "id": "edee7cb6", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:58:23.526724Z", - "iopub.status.busy": "2023-01-24T16:58:23.526242Z", - "iopub.status.idle": "2023-01-24T16:58:23.530716Z", - "shell.execute_reply": "2023-01-24T16:58:23.530024Z" + "iopub.execute_input": "2023-01-25T19:05:14.298565Z", + "iopub.status.busy": "2023-01-25T19:05:14.298189Z", + "iopub.status.idle": "2023-01-25T19:05:14.304335Z", + "shell.execute_reply": "2023-01-25T19:05:14.303436Z" }, "papermill": { - "duration": 0.014066, - "end_time": "2023-01-24T16:58:23.533182", + "duration": 0.017334, + "end_time": "2023-01-25T19:05:14.306200", "exception": false, - "start_time": "2023-01-24T16:58:23.519116", + "start_time": "2023-01-25T19:05:14.288866", "status": "completed" }, "pycharm": { @@ -472,16 +472,16 @@ "id": "b5c811c9", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:58:23.546805Z", - "iopub.status.busy": "2023-01-24T16:58:23.546232Z", - "iopub.status.idle": "2023-01-24T16:58:23.559721Z", - "shell.execute_reply": "2023-01-24T16:58:23.559064Z" + "iopub.execute_input": "2023-01-25T19:05:14.324485Z", + "iopub.status.busy": "2023-01-25T19:05:14.323371Z", + "iopub.status.idle": "2023-01-25T19:05:14.341517Z", + "shell.execute_reply": "2023-01-25T19:05:14.340624Z" }, "papermill": { - "duration": 0.021913, - "end_time": "2023-01-24T16:58:23.561233", + "duration": 0.029904, + "end_time": "2023-01-25T19:05:14.343996", "exception": false, - "start_time": "2023-01-24T16:58:23.539320", + "start_time": "2023-01-25T19:05:14.314092", "status": "completed" }, "pycharm": { @@ -677,10 +677,10 @@ "id": "337a6b65", "metadata": { "papermill": { - "duration": 0.006437, - "end_time": "2023-01-24T16:58:23.574189", + "duration": 0.008263, + "end_time": "2023-01-25T19:05:14.360525", "exception": false, - "start_time": "2023-01-24T16:58:23.567752", + "start_time": "2023-01-25T19:05:14.352262", "status": "completed" }, "pycharm": { @@ -698,16 +698,16 @@ "id": "2f206326", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:58:23.588603Z", - "iopub.status.busy": "2023-01-24T16:58:23.587951Z", - "iopub.status.idle": "2023-01-24T16:58:23.592510Z", - "shell.execute_reply": "2023-01-24T16:58:23.591848Z" + "iopub.execute_input": "2023-01-25T19:05:14.379806Z", + "iopub.status.busy": "2023-01-25T19:05:14.379229Z", + "iopub.status.idle": "2023-01-25T19:05:14.385653Z", + "shell.execute_reply": "2023-01-25T19:05:14.384769Z" }, "papermill": { - "duration": 0.013383, - "end_time": "2023-01-24T16:58:23.593950", + "duration": 0.017956, + "end_time": "2023-01-25T19:05:14.387723", "exception": false, - "start_time": "2023-01-24T16:58:23.580567", + "start_time": "2023-01-25T19:05:14.369767", "status": "completed" }, "pycharm": { @@ -725,10 +725,10 @@ "id": "12495375", "metadata": { "papermill": { - "duration": 0.006295, - "end_time": "2023-01-24T16:58:23.606595", + "duration": 0.008455, + "end_time": "2023-01-25T19:05:14.404294", "exception": false, - "start_time": "2023-01-24T16:58:23.600300", + "start_time": "2023-01-25T19:05:14.395839", "status": "completed" }, "pycharm": { @@ -746,16 +746,16 @@ "id": "fbb7314f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:58:23.621073Z", - "iopub.status.busy": "2023-01-24T16:58:23.620462Z", - "iopub.status.idle": "2023-01-24T16:58:23.627299Z", - "shell.execute_reply": "2023-01-24T16:58:23.626652Z" + "iopub.execute_input": "2023-01-25T19:05:14.422527Z", + "iopub.status.busy": "2023-01-25T19:05:14.421951Z", + "iopub.status.idle": "2023-01-25T19:05:14.431403Z", + "shell.execute_reply": "2023-01-25T19:05:14.430520Z" }, "papermill": { - "duration": 0.01559, - "end_time": "2023-01-24T16:58:23.628764", + "duration": 0.021571, + "end_time": "2023-01-25T19:05:14.433551", "exception": false, - "start_time": "2023-01-24T16:58:23.613174", + "start_time": "2023-01-25T19:05:14.411980", "status": "completed" }, "pycharm": { @@ -800,10 +800,10 @@ "id": "4274270d", "metadata": { "papermill": { - "duration": 0.006488, - "end_time": "2023-01-24T16:58:23.641713", + "duration": 0.007793, + "end_time": "2023-01-25T19:05:14.449791", "exception": false, - "start_time": "2023-01-24T16:58:23.635225", + "start_time": "2023-01-25T19:05:14.441998", "status": "completed" }, "pycharm": { @@ -821,16 +821,16 @@ "id": "0e174d68", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:58:23.656001Z", - "iopub.status.busy": "2023-01-24T16:58:23.655414Z", - "iopub.status.idle": "2023-01-24T16:58:24.405153Z", - "shell.execute_reply": "2023-01-24T16:58:24.404580Z" + "iopub.execute_input": "2023-01-25T19:05:14.467331Z", + "iopub.status.busy": "2023-01-25T19:05:14.466771Z", + "iopub.status.idle": "2023-01-25T19:05:15.629761Z", + "shell.execute_reply": "2023-01-25T19:05:15.628771Z" }, "papermill": { - "duration": 0.759966, - "end_time": "2023-01-24T16:58:24.408114", + "duration": 1.174339, + "end_time": "2023-01-25T19:05:15.631865", "exception": false, - "start_time": "2023-01-24T16:58:23.648148", + "start_time": "2023-01-25T19:05:14.457526", "status": "completed" }, "pycharm": { @@ -873,10 +873,10 @@ "id": "6d601586", "metadata": { "papermill": { - "duration": 0.00896, - "end_time": "2023-01-24T16:58:24.426637", + "duration": 0.010435, + "end_time": "2023-01-25T19:05:15.653849", "exception": false, - "start_time": "2023-01-24T16:58:24.417677", + "start_time": "2023-01-25T19:05:15.643414", "status": "completed" }, "pycharm": { @@ -895,16 +895,16 @@ "id": "f4994b78", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:58:24.446235Z", - "iopub.status.busy": "2023-01-24T16:58:24.445566Z", - "iopub.status.idle": "2023-01-24T16:58:36.684854Z", - "shell.execute_reply": "2023-01-24T16:58:36.684202Z" + "iopub.execute_input": "2023-01-25T19:05:15.677633Z", + "iopub.status.busy": "2023-01-25T19:05:15.676789Z", + "iopub.status.idle": "2023-01-25T19:05:24.741633Z", + "shell.execute_reply": "2023-01-25T19:05:24.740532Z" }, "papermill": { - "duration": 12.251662, - "end_time": "2023-01-24T16:58:36.687199", + "duration": 9.08004, + "end_time": "2023-01-25T19:05:24.744311", "exception": false, - "start_time": "2023-01-24T16:58:24.435537", + "start_time": "2023-01-25T19:05:15.664271", "status": "completed" }, "pycharm": { @@ -917,7 +917,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 16:58:24,526 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/516802541\n" + "2023-01-25 19:05:15,739 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/516802541\n" ] } ], @@ -936,16 +936,16 @@ "id": "ef643aff", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:58:36.707743Z", - "iopub.status.busy": "2023-01-24T16:58:36.706996Z", - "iopub.status.idle": "2023-01-24T17:01:02.840230Z", - "shell.execute_reply": "2023-01-24T17:01:02.839668Z" + "iopub.execute_input": "2023-01-25T19:05:24.768931Z", + "iopub.status.busy": "2023-01-25T19:05:24.768127Z", + "iopub.status.idle": "2023-01-25T19:10:10.985975Z", + "shell.execute_reply": "2023-01-25T19:10:10.985082Z" }, "papermill": { - "duration": 146.153241, - "end_time": "2023-01-24T17:01:02.849881", + "duration": 286.241397, + "end_time": "2023-01-25T19:10:10.996918", "exception": false, - "start_time": "2023-01-24T16:58:36.696640", + "start_time": "2023-01-25T19:05:24.755521", "status": "completed" }, "pycharm": { @@ -1112,10 +1112,10 @@ "id": "88028019", "metadata": { "papermill": { - "duration": 0.009353, - "end_time": "2023-01-24T17:01:02.910675", + "duration": 0.011712, + "end_time": "2023-01-25T19:10:11.019379", "exception": false, - "start_time": "2023-01-24T17:01:02.901322", + "start_time": "2023-01-25T19:10:11.007667", "status": "completed" }, "pycharm": { @@ -1134,16 +1134,16 @@ "id": "9360735d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:01:02.930781Z", - "iopub.status.busy": "2023-01-24T17:01:02.930045Z", - "iopub.status.idle": "2023-01-24T17:01:02.938069Z", - "shell.execute_reply": "2023-01-24T17:01:02.937541Z" + "iopub.execute_input": "2023-01-25T19:10:11.043478Z", + "iopub.status.busy": "2023-01-25T19:10:11.043109Z", + "iopub.status.idle": "2023-01-25T19:10:11.059904Z", + "shell.execute_reply": "2023-01-25T19:10:11.058886Z" }, "papermill": { - "duration": 0.019547, - "end_time": "2023-01-24T17:01:02.939406", + "duration": 0.031292, + "end_time": "2023-01-25T19:10:11.061959", "exception": false, - "start_time": "2023-01-24T17:01:02.919859", + "start_time": "2023-01-25T19:10:11.030667", "status": "completed" }, "pycharm": { @@ -1175,16 +1175,16 @@ "id": "b67c47c7", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:01:02.958974Z", - "iopub.status.busy": "2023-01-24T17:01:02.958538Z", - "iopub.status.idle": "2023-01-24T17:03:36.036216Z", - "shell.execute_reply": "2023-01-24T17:03:36.035665Z" + "iopub.execute_input": "2023-01-25T19:10:11.090400Z", + "iopub.status.busy": "2023-01-25T19:10:11.090028Z", + "iopub.status.idle": "2023-01-25T19:14:50.945782Z", + "shell.execute_reply": "2023-01-25T19:14:50.944927Z" }, "papermill": { - "duration": 153.094904, - "end_time": "2023-01-24T17:03:36.043507", + "duration": 279.877677, + "end_time": "2023-01-25T19:14:50.955123", "exception": false, - "start_time": "2023-01-24T17:01:02.948603", + "start_time": "2023-01-25T19:10:11.077446", "status": "completed" }, "pycharm": { @@ -1320,10 +1320,10 @@ "id": "d3e0113c", "metadata": { "papermill": { - "duration": 0.009873, - "end_time": "2023-01-24T17:03:36.063146", + "duration": 0.018493, + "end_time": "2023-01-25T19:14:50.986945", "exception": false, - "start_time": "2023-01-24T17:03:36.053273", + "start_time": "2023-01-25T19:14:50.968452", "status": "completed" }, "pycharm": { @@ -1342,16 +1342,16 @@ "id": "edba229a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:03:36.084248Z", - "iopub.status.busy": "2023-01-24T17:03:36.083437Z", - "iopub.status.idle": "2023-01-24T17:08:55.726568Z", - "shell.execute_reply": "2023-01-24T17:08:55.725898Z" + "iopub.execute_input": "2023-01-25T19:14:51.012079Z", + "iopub.status.busy": "2023-01-25T19:14:51.011488Z", + "iopub.status.idle": "2023-01-25T19:20:01.482060Z", + "shell.execute_reply": "2023-01-25T19:20:01.481017Z" }, "papermill": { - "duration": 319.65558, - "end_time": "2023-01-24T17:08:55.728373", + "duration": 310.486553, + "end_time": "2023-01-25T19:20:01.484534", "exception": false, - "start_time": "2023-01-24T17:03:36.072793", + "start_time": "2023-01-25T19:14:50.997981", "status": "completed" }, "pycharm": { @@ -1364,7 +1364,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 17:08:33,491 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/514409433\n" + "2023-01-25 19:19:51,071 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/514409433\n" ] } ], @@ -1387,16 +1387,16 @@ "id": "457f6eb8", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:08:55.750004Z", - "iopub.status.busy": "2023-01-24T17:08:55.749223Z", - "iopub.status.idle": "2023-01-24T17:08:55.772882Z", - "shell.execute_reply": "2023-01-24T17:08:55.772241Z" + "iopub.execute_input": "2023-01-25T19:20:01.508553Z", + "iopub.status.busy": "2023-01-25T19:20:01.507834Z", + "iopub.status.idle": "2023-01-25T19:20:01.537506Z", + "shell.execute_reply": "2023-01-25T19:20:01.536540Z" }, "papermill": { - "duration": 0.036061, - "end_time": "2023-01-24T17:08:55.774435", + "duration": 0.04388, + "end_time": "2023-01-25T19:20:01.539740", "exception": false, - "start_time": "2023-01-24T17:08:55.738374", + "start_time": "2023-01-25T19:20:01.495860", "status": "completed" }, "tags": [] @@ -1476,18 +1476,18 @@ }, "papermill": { "default_parameters": {}, - "duration": 673.538745, - "end_time": "2023-01-24T17:08:56.404302", + "duration": 944.107365, + "end_time": "2023-01-25T19:20:02.679285", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/brain_observatory_analysis.ipynb", - "output_path": "/tmp/tmpxp525hw_/scratch_nb.ipynb", + "output_path": "/tmp/tmpxvkl4kyh/scratch_nb.ipynb", "parameters": { "RUN_LOCALLY_SPARSE_NOISE": false, - "output_dir": "/tmp/tmpxp525hw_", + "output_dir": "/tmp/tmpxvkl4kyh", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T16:57:42.865557", + "start_time": "2023-01-25T19:04:18.571920", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/brain_observatory_monitor.ipynb b/doc_template/examples_root/examples/nb/brain_observatory_monitor.ipynb index e1dd3ac47..b92a6e0e8 100644 --- a/doc_template/examples_root/examples/nb/brain_observatory_monitor.ipynb +++ b/doc_template/examples_root/examples/nb/brain_observatory_monitor.ipynb @@ -5,10 +5,10 @@ "id": "393c2a39", "metadata": { "papermill": { - "duration": 0.004182, - "end_time": "2023-01-24T18:24:54.259247", + "duration": 0.005206, + "end_time": "2023-01-25T20:38:42.305485", "exception": false, - "start_time": "2023-01-24T18:24:54.255065", + "start_time": "2023-01-25T20:38:42.300279", "status": "completed" }, "tags": [] @@ -24,16 +24,16 @@ "id": "0770199a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:24:54.267879Z", - "iopub.status.busy": "2023-01-24T18:24:54.267219Z", - "iopub.status.idle": "2023-01-24T18:24:54.274767Z", - "shell.execute_reply": "2023-01-24T18:24:54.274103Z" + "iopub.execute_input": "2023-01-25T20:38:42.320508Z", + "iopub.status.busy": "2023-01-25T20:38:42.320166Z", + "iopub.status.idle": "2023-01-25T20:38:42.329696Z", + "shell.execute_reply": "2023-01-25T20:38:42.328859Z" }, "papermill": { - "duration": 0.013485, - "end_time": "2023-01-24T18:24:54.276267", + "duration": 0.019553, + "end_time": "2023-01-25T20:38:42.331949", "exception": false, - "start_time": "2023-01-24T18:24:54.262782", + "start_time": "2023-01-25T20:38:42.312396", "status": "completed" }, "tags": [] @@ -49,16 +49,16 @@ "id": "96b7108f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:24:54.283970Z", - "iopub.status.busy": "2023-01-24T18:24:54.283417Z", - "iopub.status.idle": "2023-01-24T18:24:54.286575Z", - "shell.execute_reply": "2023-01-24T18:24:54.285957Z" + "iopub.execute_input": "2023-01-25T20:38:42.343211Z", + "iopub.status.busy": "2023-01-25T20:38:42.342415Z", + "iopub.status.idle": "2023-01-25T20:38:42.346911Z", + "shell.execute_reply": "2023-01-25T20:38:42.345992Z" }, "papermill": { - "duration": 0.008529, - "end_time": "2023-01-24T18:24:54.288029", + "duration": 0.011404, + "end_time": "2023-01-25T20:38:42.348832", "exception": false, - "start_time": "2023-01-24T18:24:54.279500", + "start_time": "2023-01-25T20:38:42.337428", "status": "completed" }, "tags": [ @@ -77,16 +77,16 @@ "metadata": { "collapsed": true, "execution": { - "iopub.execute_input": "2023-01-24T18:24:54.307702Z", - "iopub.status.busy": "2023-01-24T18:24:54.307094Z", - "iopub.status.idle": "2023-01-24T18:24:57.152924Z", - "shell.execute_reply": "2023-01-24T18:24:57.152253Z" + "iopub.execute_input": "2023-01-25T20:38:42.378572Z", + "iopub.status.busy": "2023-01-25T20:38:42.377459Z", + "iopub.status.idle": "2023-01-25T20:38:46.672665Z", + "shell.execute_reply": "2023-01-25T20:38:46.671476Z" }, "papermill": { - "duration": 2.851906, - "end_time": "2023-01-24T18:24:57.154966", + "duration": 4.303421, + "end_time": "2023-01-25T20:38:46.675076", "exception": false, - "start_time": "2023-01-24T18:24:54.303060", + "start_time": "2023-01-25T20:38:42.371655", "status": "completed" }, "tags": [] @@ -109,10 +109,10 @@ "id": "0c5a54a3", "metadata": { "papermill": { - "duration": 0.003573, - "end_time": "2023-01-24T18:24:57.162149", + "duration": 0.004247, + "end_time": "2023-01-25T20:38:46.683978", "exception": false, - "start_time": "2023-01-24T18:24:57.158576", + "start_time": "2023-01-25T20:38:46.679731", "status": "completed" }, "tags": [] @@ -127,16 +127,16 @@ "id": "1d80b72a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:24:57.170221Z", - "iopub.status.busy": "2023-01-24T18:24:57.169636Z", - "iopub.status.idle": "2023-01-24T18:25:15.786591Z", - "shell.execute_reply": "2023-01-24T18:25:15.786004Z" + "iopub.execute_input": "2023-01-25T20:38:46.693989Z", + "iopub.status.busy": "2023-01-25T20:38:46.693434Z", + "iopub.status.idle": "2023-01-25T20:39:00.309359Z", + "shell.execute_reply": "2023-01-25T20:39:00.308462Z" }, "papermill": { - "duration": 18.622611, - "end_time": "2023-01-24T18:25:15.788050", + "duration": 13.623158, + "end_time": "2023-01-25T20:39:00.311253", "exception": false, - "start_time": "2023-01-24T18:24:57.165439", + "start_time": "2023-01-25T20:38:46.688095", "status": "completed" }, "tags": [] @@ -146,7 +146,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 18:24:57,288 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/528017428\n" + "2023-01-25 20:38:46,772 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/528017428\n" ] }, { @@ -248,10 +248,10 @@ "id": "615603f0", "metadata": { "papermill": { - "duration": 0.003569, - "end_time": "2023-01-24T18:25:15.795605", + "duration": 0.004114, + "end_time": "2023-01-25T20:39:00.320725", "exception": false, - "start_time": "2023-01-24T18:25:15.792036", + "start_time": "2023-01-25T20:39:00.316611", "status": "completed" }, "tags": [] @@ -266,16 +266,16 @@ "id": "b84d9a20", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:25:15.804207Z", - "iopub.status.busy": "2023-01-24T18:25:15.803468Z", - "iopub.status.idle": "2023-01-24T18:25:16.152444Z", - "shell.execute_reply": "2023-01-24T18:25:16.151736Z" + "iopub.execute_input": "2023-01-25T20:39:00.330260Z", + "iopub.status.busy": "2023-01-25T20:39:00.329574Z", + "iopub.status.idle": "2023-01-25T20:39:00.823916Z", + "shell.execute_reply": "2023-01-25T20:39:00.822981Z" }, "papermill": { - "duration": 0.355069, - "end_time": "2023-01-24T18:25:16.154201", + "duration": 0.501447, + "end_time": "2023-01-25T20:39:00.826259", "exception": false, - "start_time": "2023-01-24T18:25:15.799132", + "start_time": "2023-01-25T20:39:00.324812", "status": "completed" }, "tags": [] @@ -307,10 +307,10 @@ "id": "642c4135", "metadata": { "papermill": { - "duration": 0.004054, - "end_time": "2023-01-24T18:25:16.162625", + "duration": 0.004807, + "end_time": "2023-01-25T20:39:00.836137", "exception": false, - "start_time": "2023-01-24T18:25:16.158571", + "start_time": "2023-01-25T20:39:00.831330", "status": "completed" }, "tags": [] @@ -325,16 +325,16 @@ "id": "a44cc00c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:25:16.171337Z", - "iopub.status.busy": "2023-01-24T18:25:16.170812Z", - "iopub.status.idle": "2023-01-24T18:25:16.369613Z", - "shell.execute_reply": "2023-01-24T18:25:16.368930Z" + "iopub.execute_input": "2023-01-25T20:39:00.846945Z", + "iopub.status.busy": "2023-01-25T20:39:00.846567Z", + "iopub.status.idle": "2023-01-25T20:39:01.173713Z", + "shell.execute_reply": "2023-01-25T20:39:01.172832Z" }, "papermill": { - "duration": 0.205677, - "end_time": "2023-01-24T18:25:16.371987", + "duration": 0.33551, + "end_time": "2023-01-25T20:39:01.176269", "exception": false, - "start_time": "2023-01-24T18:25:16.166310", + "start_time": "2023-01-25T20:39:00.840759", "status": "completed" }, "tags": [] @@ -360,10 +360,10 @@ "id": "92555290", "metadata": { "papermill": { - "duration": 0.00412, - "end_time": "2023-01-24T18:25:16.380223", + "duration": 0.00444, + "end_time": "2023-01-25T20:39:01.186321", "exception": false, - "start_time": "2023-01-24T18:25:16.376103", + "start_time": "2023-01-25T20:39:01.181881", "status": "completed" }, "tags": [] @@ -378,16 +378,16 @@ "id": "ffe96a0c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:25:16.388880Z", - "iopub.status.busy": "2023-01-24T18:25:16.388640Z", - "iopub.status.idle": "2023-01-24T18:25:17.908198Z", - "shell.execute_reply": "2023-01-24T18:25:17.907552Z" + "iopub.execute_input": "2023-01-25T20:39:01.203485Z", + "iopub.status.busy": "2023-01-25T20:39:01.203001Z", + "iopub.status.idle": "2023-01-25T20:39:03.285533Z", + "shell.execute_reply": "2023-01-25T20:39:03.283531Z" }, "papermill": { - "duration": 1.569284, - "end_time": "2023-01-24T18:25:17.953299", + "duration": 2.093317, + "end_time": "2023-01-25T20:39:03.287672", "exception": false, - "start_time": "2023-01-24T18:25:16.384015", + "start_time": "2023-01-25T20:39:01.194355", "status": "completed" }, "tags": [] @@ -415,10 +415,10 @@ "id": "63d4282d", "metadata": { "papermill": { - "duration": 0.008566, - "end_time": "2023-01-24T18:25:18.109486", + "duration": 0.004945, + "end_time": "2023-01-25T20:39:03.300084", "exception": false, - "start_time": "2023-01-24T18:25:18.100920", + "start_time": "2023-01-25T20:39:03.295139", "status": "completed" }, "tags": [] @@ -433,16 +433,16 @@ "id": "00053c56", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:25:18.159135Z", - "iopub.status.busy": "2023-01-24T18:25:18.158396Z", - "iopub.status.idle": "2023-01-24T18:25:21.324601Z", - "shell.execute_reply": "2023-01-24T18:25:21.323996Z" + "iopub.execute_input": "2023-01-25T20:39:03.311343Z", + "iopub.status.busy": "2023-01-25T20:39:03.310744Z", + "iopub.status.idle": "2023-01-25T20:39:08.223761Z", + "shell.execute_reply": "2023-01-25T20:39:08.222814Z" }, "papermill": { - "duration": 3.174325, - "end_time": "2023-01-24T18:25:21.326188", + "duration": 4.92098, + "end_time": "2023-01-25T20:39:08.225937", "exception": false, - "start_time": "2023-01-24T18:25:18.151863", + "start_time": "2023-01-25T20:39:03.304957", "status": "completed" }, "tags": [] @@ -470,10 +470,10 @@ "id": "aaaea49f", "metadata": { "papermill": { - "duration": 0.004262, - "end_time": "2023-01-24T18:25:21.335331", + "duration": 0.005713, + "end_time": "2023-01-25T20:39:08.238690", "exception": false, - "start_time": "2023-01-24T18:25:21.331069", + "start_time": "2023-01-25T20:39:08.232977", "status": "completed" }, "tags": [] @@ -488,16 +488,16 @@ "id": "5a22dfea", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:25:21.345290Z", - "iopub.status.busy": "2023-01-24T18:25:21.345035Z", - "iopub.status.idle": "2023-01-24T18:25:28.757198Z", - "shell.execute_reply": "2023-01-24T18:25:28.756467Z" + "iopub.execute_input": "2023-01-25T20:39:08.249816Z", + "iopub.status.busy": "2023-01-25T20:39:08.249544Z", + "iopub.status.idle": "2023-01-25T20:39:19.833670Z", + "shell.execute_reply": "2023-01-25T20:39:19.832624Z" }, "papermill": { - "duration": 7.421072, - "end_time": "2023-01-24T18:25:28.760780", + "duration": 11.597454, + "end_time": "2023-01-25T20:39:19.840847", "exception": false, - "start_time": "2023-01-24T18:25:21.339708", + "start_time": "2023-01-25T20:39:08.243393", "status": "completed" }, "tags": [] @@ -570,10 +570,10 @@ "id": "264b6f1d", "metadata": { "papermill": { - "duration": 0.005947, - "end_time": "2023-01-24T18:25:28.772752", + "duration": 0.005833, + "end_time": "2023-01-25T20:39:19.853643", "exception": false, - "start_time": "2023-01-24T18:25:28.766805", + "start_time": "2023-01-25T20:39:19.847810", "status": "completed" }, "tags": [] @@ -587,10 +587,10 @@ "id": "dfaab4e6", "metadata": { "papermill": { - "duration": 0.005716, - "end_time": "2023-01-24T18:25:28.784081", + "duration": 0.006233, + "end_time": "2023-01-25T20:39:19.866079", "exception": false, - "start_time": "2023-01-24T18:25:28.778365", + "start_time": "2023-01-25T20:39:19.859846", "status": "completed" }, "tags": [] @@ -605,16 +605,16 @@ "id": "50ef0982", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:25:28.796579Z", - "iopub.status.busy": "2023-01-24T18:25:28.796315Z", - "iopub.status.idle": "2023-01-24T18:25:32.996020Z", - "shell.execute_reply": "2023-01-24T18:25:32.995450Z" + "iopub.execute_input": "2023-01-25T20:39:19.881137Z", + "iopub.status.busy": "2023-01-25T20:39:19.880183Z", + "iopub.status.idle": "2023-01-25T20:39:26.484707Z", + "shell.execute_reply": "2023-01-25T20:39:26.483589Z" }, "papermill": { - "duration": 4.208037, - "end_time": "2023-01-24T18:25:32.997743", + "duration": 6.61822, + "end_time": "2023-01-25T20:39:26.490902", "exception": false, - "start_time": "2023-01-24T18:25:28.789706", + "start_time": "2023-01-25T20:39:19.872682", "status": "completed" }, "tags": [] @@ -680,17 +680,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 40.431623, - "end_time": "2023-01-24T18:25:33.423835", + "duration": 46.474888, + "end_time": "2023-01-25T20:39:27.221381", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/brain_observatory_monitor.ipynb", - "output_path": "/tmp/tmpavbovw1p/scratch_nb.ipynb", + "output_path": "/tmp/tmpazxd6x4d/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmpavbovw1p", + "output_dir": "/tmp/tmpazxd6x4d", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T18:24:52.992212", + "start_time": "2023-01-25T20:38:40.746493", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/brain_observatory_stimuli.ipynb b/doc_template/examples_root/examples/nb/brain_observatory_stimuli.ipynb index 2ab80e954..8d8287c93 100644 --- a/doc_template/examples_root/examples/nb/brain_observatory_stimuli.ipynb +++ b/doc_template/examples_root/examples/nb/brain_observatory_stimuli.ipynb @@ -5,10 +5,10 @@ "id": "0698dc8f", "metadata": { "papermill": { - "duration": 0.004682, - "end_time": "2023-01-24T18:00:05.568954", + "duration": 0.00687, + "end_time": "2023-01-25T20:13:58.718959", "exception": false, - "start_time": "2023-01-24T18:00:05.564272", + "start_time": "2023-01-25T20:13:58.712089", "status": "completed" }, "tags": [] @@ -26,16 +26,16 @@ "id": "5a52e7ef", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:00:05.577981Z", - "iopub.status.busy": "2023-01-24T18:00:05.577262Z", - "iopub.status.idle": "2023-01-24T18:00:05.585829Z", - "shell.execute_reply": "2023-01-24T18:00:05.585231Z" + "iopub.execute_input": "2023-01-25T20:13:58.731721Z", + "iopub.status.busy": "2023-01-25T20:13:58.730263Z", + "iopub.status.idle": "2023-01-25T20:13:58.741143Z", + "shell.execute_reply": "2023-01-25T20:13:58.739697Z" }, "papermill": { - "duration": 0.01497, - "end_time": "2023-01-24T18:00:05.587751", + "duration": 0.01907, + "end_time": "2023-01-25T20:13:58.743265", "exception": false, - "start_time": "2023-01-24T18:00:05.572781", + "start_time": "2023-01-25T20:13:58.724195", "status": "completed" }, "tags": [] @@ -51,16 +51,16 @@ "id": "1138f1cb", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:00:05.595888Z", - "iopub.status.busy": "2023-01-24T18:00:05.595439Z", - "iopub.status.idle": "2023-01-24T18:00:05.598563Z", - "shell.execute_reply": "2023-01-24T18:00:05.597915Z" + "iopub.execute_input": "2023-01-25T20:13:58.754249Z", + "iopub.status.busy": "2023-01-25T20:13:58.753611Z", + "iopub.status.idle": "2023-01-25T20:13:58.758084Z", + "shell.execute_reply": "2023-01-25T20:13:58.757146Z" }, "papermill": { - "duration": 0.008782, - "end_time": "2023-01-24T18:00:05.599994", + "duration": 0.0123, + "end_time": "2023-01-25T20:13:58.760111", "exception": false, - "start_time": "2023-01-24T18:00:05.591212", + "start_time": "2023-01-25T20:13:58.747811", "status": "completed" }, "tags": [ @@ -78,16 +78,16 @@ "id": "be1c0a7f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:00:05.620429Z", - "iopub.status.busy": "2023-01-24T18:00:05.619880Z", - "iopub.status.idle": "2023-01-24T18:00:05.893025Z", - "shell.execute_reply": "2023-01-24T18:00:05.892370Z" + "iopub.execute_input": "2023-01-25T20:13:58.788315Z", + "iopub.status.busy": "2023-01-25T20:13:58.787601Z", + "iopub.status.idle": "2023-01-25T20:13:59.164625Z", + "shell.execute_reply": "2023-01-25T20:13:59.163343Z" }, "papermill": { - "duration": 0.279495, - "end_time": "2023-01-24T18:00:05.895241", + "duration": 0.385424, + "end_time": "2023-01-25T20:13:59.167542", "exception": false, - "start_time": "2023-01-24T18:00:05.615746", + "start_time": "2023-01-25T20:13:58.782118", "status": "completed" }, "tags": [] @@ -120,10 +120,10 @@ "id": "57a3dd75", "metadata": { "papermill": { - "duration": 0.003523, - "end_time": "2023-01-24T18:00:05.902604", + "duration": 0.004993, + "end_time": "2023-01-25T20:13:59.178215", "exception": false, - "start_time": "2023-01-24T18:00:05.899081", + "start_time": "2023-01-25T20:13:59.173222", "status": "completed" }, "tags": [] @@ -139,16 +139,16 @@ "id": "86d015a4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:00:05.911382Z", - "iopub.status.busy": "2023-01-24T18:00:05.910660Z", - "iopub.status.idle": "2023-01-24T18:00:32.927980Z", - "shell.execute_reply": "2023-01-24T18:00:32.927327Z" + "iopub.execute_input": "2023-01-25T20:13:59.189611Z", + "iopub.status.busy": "2023-01-25T20:13:59.188600Z", + "iopub.status.idle": "2023-01-25T20:14:16.886410Z", + "shell.execute_reply": "2023-01-25T20:14:16.885026Z" }, "papermill": { - "duration": 27.023518, - "end_time": "2023-01-24T18:00:32.929590", + "duration": 17.706127, + "end_time": "2023-01-25T20:14:16.888729", "exception": false, - "start_time": "2023-01-24T18:00:05.906072", + "start_time": "2023-01-25T20:13:59.182602", "status": "completed" }, "tags": [] @@ -158,7 +158,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 18:00:07,963 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/514340576\n" + "2023-01-25 20:14:02,066 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/514340576\n" ] }, { @@ -193,10 +193,10 @@ "id": "abc48527", "metadata": { "papermill": { - "duration": 0.00422, - "end_time": "2023-01-24T18:00:32.937971", + "duration": 0.004801, + "end_time": "2023-01-25T20:14:16.900281", "exception": false, - "start_time": "2023-01-24T18:00:32.933751", + "start_time": "2023-01-25T20:14:16.895480", "status": "completed" }, "tags": [] @@ -212,16 +212,16 @@ "id": "5c8b0144", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:00:32.947117Z", - "iopub.status.busy": "2023-01-24T18:00:32.946498Z", - "iopub.status.idle": "2023-01-24T18:00:59.094473Z", - "shell.execute_reply": "2023-01-24T18:00:59.093407Z" + "iopub.execute_input": "2023-01-25T20:14:16.911415Z", + "iopub.status.busy": "2023-01-25T20:14:16.911103Z", + "iopub.status.idle": "2023-01-25T20:14:31.576850Z", + "shell.execute_reply": "2023-01-25T20:14:31.575421Z" }, "papermill": { - "duration": 26.154721, - "end_time": "2023-01-24T18:00:59.096452", + "duration": 14.674001, + "end_time": "2023-01-25T20:14:31.579108", "exception": false, - "start_time": "2023-01-24T18:00:32.941731", + "start_time": "2023-01-25T20:14:16.905107", "status": "completed" }, "tags": [] @@ -231,7 +231,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 18:00:33,036 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/514422179\n" + "2023-01-25 20:14:16,968 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/514422179\n" ] }, { @@ -266,10 +266,10 @@ "id": "bb211aeb", "metadata": { "papermill": { - "duration": 0.004036, - "end_time": "2023-01-24T18:00:59.104933", + "duration": 0.22241, + "end_time": "2023-01-25T20:14:31.807220", "exception": false, - "start_time": "2023-01-24T18:00:59.100897", + "start_time": "2023-01-25T20:14:31.584810", "status": "completed" }, "tags": [] @@ -285,16 +285,16 @@ "id": "7da6fa06", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:00:59.114486Z", - "iopub.status.busy": "2023-01-24T18:00:59.113812Z", - "iopub.status.idle": "2023-01-24T18:01:00.852056Z", - "shell.execute_reply": "2023-01-24T18:01:00.851485Z" + "iopub.execute_input": "2023-01-25T20:14:31.822656Z", + "iopub.status.busy": "2023-01-25T20:14:31.821405Z", + "iopub.status.idle": "2023-01-25T20:14:33.877124Z", + "shell.execute_reply": "2023-01-25T20:14:33.876280Z" }, "papermill": { - "duration": 1.745176, - "end_time": "2023-01-24T18:01:00.854079", + "duration": 2.066139, + "end_time": "2023-01-25T20:14:33.879930", "exception": false, - "start_time": "2023-01-24T18:00:59.108903", + "start_time": "2023-01-25T20:14:31.813791", "status": "completed" }, "tags": [] @@ -332,10 +332,10 @@ "id": "09357f1b", "metadata": { "papermill": { - "duration": 0.006021, - "end_time": "2023-01-24T18:01:00.866248", + "duration": 0.007617, + "end_time": "2023-01-25T20:14:33.894960", "exception": false, - "start_time": "2023-01-24T18:01:00.860227", + "start_time": "2023-01-25T20:14:33.887343", "status": "completed" }, "tags": [] @@ -350,16 +350,16 @@ "id": "c40e2880", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:01:00.879107Z", - "iopub.status.busy": "2023-01-24T18:01:00.878593Z", - "iopub.status.idle": "2023-01-24T18:01:01.057324Z", - "shell.execute_reply": "2023-01-24T18:01:01.056654Z" + "iopub.execute_input": "2023-01-25T20:14:33.909862Z", + "iopub.status.busy": "2023-01-25T20:14:33.909536Z", + "iopub.status.idle": "2023-01-25T20:14:34.212856Z", + "shell.execute_reply": "2023-01-25T20:14:34.211950Z" }, "papermill": { - "duration": 0.186939, - "end_time": "2023-01-24T18:01:01.058906", + "duration": 0.313452, + "end_time": "2023-01-25T20:14:34.214956", "exception": false, - "start_time": "2023-01-24T18:01:00.871967", + "start_time": "2023-01-25T20:14:33.901504", "status": "completed" }, "tags": [] @@ -397,10 +397,10 @@ "id": "fed7f6ce", "metadata": { "papermill": { - "duration": 0.006332, - "end_time": "2023-01-24T18:01:01.071684", + "duration": 0.007155, + "end_time": "2023-01-25T20:14:34.229737", "exception": false, - "start_time": "2023-01-24T18:01:01.065352", + "start_time": "2023-01-25T20:14:34.222582", "status": "completed" }, "tags": [] @@ -416,16 +416,16 @@ "id": "a0b0297a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:01:01.085198Z", - "iopub.status.busy": "2023-01-24T18:01:01.084505Z", - "iopub.status.idle": "2023-01-24T18:01:02.020067Z", - "shell.execute_reply": "2023-01-24T18:01:02.019465Z" + "iopub.execute_input": "2023-01-25T20:14:34.245979Z", + "iopub.status.busy": "2023-01-25T20:14:34.245435Z", + "iopub.status.idle": "2023-01-25T20:14:35.309321Z", + "shell.execute_reply": "2023-01-25T20:14:35.308297Z" }, "papermill": { - "duration": 0.944489, - "end_time": "2023-01-24T18:01:02.022068", + "duration": 1.075657, + "end_time": "2023-01-25T20:14:35.312384", "exception": false, - "start_time": "2023-01-24T18:01:01.077579", + "start_time": "2023-01-25T20:14:34.236727", "status": "completed" }, "tags": [] @@ -461,10 +461,10 @@ "id": "cd9cdd9a", "metadata": { "papermill": { - "duration": 0.007419, - "end_time": "2023-01-24T18:01:02.037333", + "duration": 0.008939, + "end_time": "2023-01-25T20:14:35.330868", "exception": false, - "start_time": "2023-01-24T18:01:02.029914", + "start_time": "2023-01-25T20:14:35.321929", "status": "completed" }, "tags": [] @@ -479,16 +479,16 @@ "id": "7ffd1a18", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:01:02.053413Z", - "iopub.status.busy": "2023-01-24T18:01:02.052851Z", - "iopub.status.idle": "2023-01-24T18:01:02.431246Z", - "shell.execute_reply": "2023-01-24T18:01:02.430524Z" + "iopub.execute_input": "2023-01-25T20:14:35.349132Z", + "iopub.status.busy": "2023-01-25T20:14:35.348388Z", + "iopub.status.idle": "2023-01-25T20:14:36.011604Z", + "shell.execute_reply": "2023-01-25T20:14:36.010583Z" }, "papermill": { - "duration": 0.388413, - "end_time": "2023-01-24T18:01:02.432986", + "duration": 0.675414, + "end_time": "2023-01-25T20:14:36.014087", "exception": false, - "start_time": "2023-01-24T18:01:02.044573", + "start_time": "2023-01-25T20:14:35.338673", "status": "completed" }, "tags": [] @@ -523,10 +523,10 @@ "id": "d64df66f", "metadata": { "papermill": { - "duration": 0.007827, - "end_time": "2023-01-24T18:01:02.448660", + "duration": 0.01091, + "end_time": "2023-01-25T20:14:36.035622", "exception": false, - "start_time": "2023-01-24T18:01:02.440833", + "start_time": "2023-01-25T20:14:36.024712", "status": "completed" }, "tags": [] @@ -542,16 +542,16 @@ "id": "045e1866", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:01:02.465180Z", - "iopub.status.busy": "2023-01-24T18:01:02.464480Z", - "iopub.status.idle": "2023-01-24T18:01:37.756227Z", - "shell.execute_reply": "2023-01-24T18:01:37.755660Z" + "iopub.execute_input": "2023-01-25T20:14:36.054364Z", + "iopub.status.busy": "2023-01-25T20:14:36.053541Z", + "iopub.status.idle": "2023-01-25T20:15:00.322041Z", + "shell.execute_reply": "2023-01-25T20:15:00.321036Z" }, "papermill": { - "duration": 35.309237, - "end_time": "2023-01-24T18:01:37.765411", + "duration": 24.280945, + "end_time": "2023-01-25T20:15:00.324946", "exception": false, - "start_time": "2023-01-24T18:01:02.456174", + "start_time": "2023-01-25T20:14:36.044001", "status": "completed" }, "tags": [] @@ -561,7 +561,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 18:01:02,551 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/516238128\n" + "2023-01-25 20:14:36,111 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/516238128\n" ] }, { @@ -596,10 +596,10 @@ "id": "af3112c7", "metadata": { "papermill": { - "duration": 0.00787, - "end_time": "2023-01-24T18:01:37.781054", + "duration": 0.008361, + "end_time": "2023-01-25T20:15:00.342637", "exception": false, - "start_time": "2023-01-24T18:01:37.773184", + "start_time": "2023-01-25T20:15:00.334276", "status": "completed" }, "tags": [] @@ -614,16 +614,16 @@ "id": "86abe247", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:01:37.798283Z", - "iopub.status.busy": "2023-01-24T18:01:37.797533Z", - "iopub.status.idle": "2023-01-24T18:01:37.958522Z", - "shell.execute_reply": "2023-01-24T18:01:37.957806Z" + "iopub.execute_input": "2023-01-25T20:15:00.360825Z", + "iopub.status.busy": "2023-01-25T20:15:00.360266Z", + "iopub.status.idle": "2023-01-25T20:15:00.623433Z", + "shell.execute_reply": "2023-01-25T20:15:00.622377Z" }, "papermill": { - "duration": 0.171667, - "end_time": "2023-01-24T18:01:37.960300", + "duration": 0.275235, + "end_time": "2023-01-25T20:15:00.626046", "exception": false, - "start_time": "2023-01-24T18:01:37.788633", + "start_time": "2023-01-25T20:15:00.350811", "status": "completed" }, "tags": [] @@ -679,17 +679,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 93.648726, - "end_time": "2023-01-24T18:01:38.387148", + "duration": 63.778754, + "end_time": "2023-01-25T20:15:01.257499", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/brain_observatory_stimuli.ipynb", - "output_path": "/tmp/tmpgocyjmah/scratch_nb.ipynb", + "output_path": "/tmp/tmpzvs2zp5z/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmpgocyjmah", + "output_dir": "/tmp/tmpzvs2zp5z", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T18:00:04.738422", + "start_time": "2023-01-25T20:13:57.478745", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/cell_specimen_mapping.ipynb b/doc_template/examples_root/examples/nb/cell_specimen_mapping.ipynb index 7e19433f4..45172e455 100644 --- a/doc_template/examples_root/examples/nb/cell_specimen_mapping.ipynb +++ b/doc_template/examples_root/examples/nb/cell_specimen_mapping.ipynb @@ -5,10 +5,10 @@ "id": "ab898518", "metadata": { "papermill": { - "duration": 0.00314, - "end_time": "2023-01-24T17:54:15.931140", + "duration": 0.003796, + "end_time": "2023-01-25T20:08:13.571250", "exception": false, - "start_time": "2023-01-24T17:54:15.928000", + "start_time": "2023-01-25T20:08:13.567454", "status": "completed" }, "tags": [] @@ -25,10 +25,10 @@ "id": "2457b067", "metadata": { "papermill": { - "duration": 0.001988, - "end_time": "2023-01-24T17:54:15.935503", + "duration": 0.002588, + "end_time": "2023-01-25T20:08:13.577068", "exception": false, - "start_time": "2023-01-24T17:54:15.933515", + "start_time": "2023-01-25T20:08:13.574480", "status": "completed" }, "tags": [] @@ -44,16 +44,16 @@ "id": "6c46abcb", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:54:15.941033Z", - "iopub.status.busy": "2023-01-24T17:54:15.940572Z", - "iopub.status.idle": "2023-01-24T17:54:15.947880Z", - "shell.execute_reply": "2023-01-24T17:54:15.947239Z" + "iopub.execute_input": "2023-01-25T20:08:13.584981Z", + "iopub.status.busy": "2023-01-25T20:08:13.584097Z", + "iopub.status.idle": "2023-01-25T20:08:13.594388Z", + "shell.execute_reply": "2023-01-25T20:08:13.593347Z" }, "papermill": { - "duration": 0.011836, - "end_time": "2023-01-24T17:54:15.949341", + "duration": 0.017005, + "end_time": "2023-01-25T20:08:13.596880", "exception": false, - "start_time": "2023-01-24T17:54:15.937505", + "start_time": "2023-01-25T20:08:13.579875", "status": "completed" }, "tags": [] @@ -69,16 +69,16 @@ "id": "6ac4bacf", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:54:15.954706Z", - "iopub.status.busy": "2023-01-24T17:54:15.954158Z", - "iopub.status.idle": "2023-01-24T17:54:15.957228Z", - "shell.execute_reply": "2023-01-24T17:54:15.956611Z" + "iopub.execute_input": "2023-01-25T20:08:13.604420Z", + "iopub.status.busy": "2023-01-25T20:08:13.603697Z", + "iopub.status.idle": "2023-01-25T20:08:13.609711Z", + "shell.execute_reply": "2023-01-25T20:08:13.607754Z" }, "papermill": { - "duration": 0.007186, - "end_time": "2023-01-24T17:54:15.958594", + "duration": 0.012035, + "end_time": "2023-01-25T20:08:13.611796", "exception": false, - "start_time": "2023-01-24T17:54:15.951408", + "start_time": "2023-01-25T20:08:13.599761", "status": "completed" }, "tags": [ @@ -96,16 +96,16 @@ "id": "2db02eeb", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:54:15.973443Z", - "iopub.status.busy": "2023-01-24T17:54:15.972887Z", - "iopub.status.idle": "2023-01-24T17:54:18.069832Z", - "shell.execute_reply": "2023-01-24T17:54:18.068858Z" + "iopub.execute_input": "2023-01-25T20:08:13.632530Z", + "iopub.status.busy": "2023-01-25T20:08:13.631727Z", + "iopub.status.idle": "2023-01-25T20:08:16.468895Z", + "shell.execute_reply": "2023-01-25T20:08:16.467846Z" }, "papermill": { - "duration": 2.101461, - "end_time": "2023-01-24T17:54:18.071565", + "duration": 2.843146, + "end_time": "2023-01-25T20:08:16.470922", "exception": false, - "start_time": "2023-01-24T17:54:15.970104", + "start_time": "2023-01-25T20:08:13.627776", "status": "completed" }, "tags": [] @@ -115,7 +115,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 17:54:17,803 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/590985414\n" + "2023-01-25 20:08:16,190 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/590985414\n" ] }, { @@ -153,10 +153,10 @@ "metadata": { "collapsed": true, "papermill": { - "duration": 0.002334, - "end_time": "2023-01-24T17:54:18.076451", + "duration": 0.002909, + "end_time": "2023-01-25T20:08:16.477128", "exception": false, - "start_time": "2023-01-24T17:54:18.074117", + "start_time": "2023-01-25T20:08:16.474219", "status": "completed" }, "tags": [] @@ -172,16 +172,16 @@ "id": "187b40f8", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:54:18.082358Z", - "iopub.status.busy": "2023-01-24T17:54:18.081792Z", - "iopub.status.idle": "2023-01-24T17:54:18.094940Z", - "shell.execute_reply": "2023-01-24T17:54:18.094246Z" + "iopub.execute_input": "2023-01-25T20:08:16.488181Z", + "iopub.status.busy": "2023-01-25T20:08:16.487147Z", + "iopub.status.idle": "2023-01-25T20:08:16.508689Z", + "shell.execute_reply": "2023-01-25T20:08:16.506862Z" }, "papermill": { - "duration": 0.017882, - "end_time": "2023-01-24T17:54:18.096528", + "duration": 0.03279, + "end_time": "2023-01-25T20:08:16.512644", "exception": false, - "start_time": "2023-01-24T17:54:18.078646", + "start_time": "2023-01-25T20:08:16.479854", "status": "completed" }, "tags": [] @@ -257,16 +257,16 @@ "id": "53a58933", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:54:18.102625Z", - "iopub.status.busy": "2023-01-24T17:54:18.102036Z", - "iopub.status.idle": "2023-01-24T18:00:03.793596Z", - "shell.execute_reply": "2023-01-24T18:00:03.792874Z" + "iopub.execute_input": "2023-01-25T20:08:16.524156Z", + "iopub.status.busy": "2023-01-25T20:08:16.523480Z", + "iopub.status.idle": "2023-01-25T20:13:55.391145Z", + "shell.execute_reply": "2023-01-25T20:13:55.389939Z" }, "papermill": { - "duration": 345.706907, - "end_time": "2023-01-24T18:00:03.805845", + "duration": 339.267781, + "end_time": "2023-01-25T20:13:55.785969", "exception": false, - "start_time": "2023-01-24T17:54:18.098938", + "start_time": "2023-01-25T20:08:16.518188", "status": "completed" }, "tags": [] @@ -276,8 +276,8 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 17:59:21,371 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/540997912\n", - "2023-01-24 17:59:50,383 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/540653508\n" + "2023-01-25 20:13:24,166 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/540997912\n", + "2023-01-25 20:13:43,081 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/540653508\n" ] }, { @@ -338,16 +338,16 @@ "id": "1d72ff29", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:00:03.820151Z", - "iopub.status.busy": "2023-01-24T18:00:03.819897Z", - "iopub.status.idle": "2023-01-24T18:00:03.830795Z", - "shell.execute_reply": "2023-01-24T18:00:03.830267Z" + "iopub.execute_input": "2023-01-25T20:13:55.826931Z", + "iopub.status.busy": "2023-01-25T20:13:55.826543Z", + "iopub.status.idle": "2023-01-25T20:13:55.842956Z", + "shell.execute_reply": "2023-01-25T20:13:55.841991Z" }, "papermill": { - "duration": 0.019819, - "end_time": "2023-01-24T18:00:03.832172", + "duration": 0.030215, + "end_time": "2023-01-25T20:13:55.844991", "exception": false, - "start_time": "2023-01-24T18:00:03.812353", + "start_time": "2023-01-25T20:13:55.814776", "status": "completed" }, "tags": [] @@ -442,17 +442,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 349.29615, - "end_time": "2023-01-24T18:00:04.257831", + "duration": 344.244936, + "end_time": "2023-01-25T20:13:56.586853", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/cell_specimen_mapping.ipynb", - "output_path": "/tmp/tmpha84a30o/scratch_nb.ipynb", + "output_path": "/tmp/tmpd6e0kv4r/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmpha84a30o", + "output_dir": "/tmp/tmpd6e0kv4r", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T17:54:14.961681", + "start_time": "2023-01-25T20:08:12.341917", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/cell_types.ipynb b/doc_template/examples_root/examples/nb/cell_types.ipynb index 38e1867aa..1135160c0 100644 --- a/doc_template/examples_root/examples/nb/cell_types.ipynb +++ b/doc_template/examples_root/examples/nb/cell_types.ipynb @@ -5,10 +5,10 @@ "id": "c21551e8", "metadata": { "papermill": { - "duration": 0.00796, - "end_time": "2023-01-24T17:14:51.224646", + "duration": 0.010482, + "end_time": "2023-01-25T19:25:38.468659", "exception": false, - "start_time": "2023-01-24T17:14:51.216686", + "start_time": "2023-01-25T19:25:38.458177", "status": "completed" }, "pycharm": { @@ -32,16 +32,16 @@ "id": "69c10e68", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:14:51.239311Z", - "iopub.status.busy": "2023-01-24T17:14:51.238742Z", - "iopub.status.idle": "2023-01-24T17:14:51.245881Z", - "shell.execute_reply": "2023-01-24T17:14:51.245220Z" + "iopub.execute_input": "2023-01-25T19:25:38.488762Z", + "iopub.status.busy": "2023-01-25T19:25:38.488417Z", + "iopub.status.idle": "2023-01-25T19:25:38.499295Z", + "shell.execute_reply": "2023-01-25T19:25:38.498327Z" }, "papermill": { - "duration": 0.016008, - "end_time": "2023-01-24T17:14:51.247378", + "duration": 0.025466, + "end_time": "2023-01-25T19:25:38.502014", "exception": false, - "start_time": "2023-01-24T17:14:51.231370", + "start_time": "2023-01-25T19:25:38.476548", "status": "completed" }, "pycharm": { @@ -60,16 +60,16 @@ "id": "311bd28c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:14:51.263849Z", - "iopub.status.busy": "2023-01-24T17:14:51.263236Z", - "iopub.status.idle": "2023-01-24T17:14:51.266477Z", - "shell.execute_reply": "2023-01-24T17:14:51.265903Z" + "iopub.execute_input": "2023-01-25T19:25:38.521444Z", + "iopub.status.busy": "2023-01-25T19:25:38.520999Z", + "iopub.status.idle": "2023-01-25T19:25:38.525484Z", + "shell.execute_reply": "2023-01-25T19:25:38.524656Z" }, "papermill": { - "duration": 0.014594, - "end_time": "2023-01-24T17:14:51.268170", + "duration": 0.017386, + "end_time": "2023-01-25T19:25:38.527626", "exception": false, - "start_time": "2023-01-24T17:14:51.253576", + "start_time": "2023-01-25T19:25:38.510240", "status": "completed" }, "pycharm": { @@ -90,16 +90,16 @@ "id": "266175ea", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:14:51.300038Z", - "iopub.status.busy": "2023-01-24T17:14:51.299462Z", - "iopub.status.idle": "2023-01-24T17:14:58.328222Z", - "shell.execute_reply": "2023-01-24T17:14:58.327514Z" + "iopub.execute_input": "2023-01-25T19:25:38.570355Z", + "iopub.status.busy": "2023-01-25T19:25:38.569694Z", + "iopub.status.idle": "2023-01-25T19:25:43.809509Z", + "shell.execute_reply": "2023-01-25T19:25:43.808426Z" }, "papermill": { - "duration": 7.038043, - "end_time": "2023-01-24T17:14:58.330377", + "duration": 5.252446, + "end_time": "2023-01-25T19:25:43.812185", "exception": false, - "start_time": "2023-01-24T17:14:51.292334", + "start_time": "2023-01-25T19:25:38.559739", "status": "completed" }, "pycharm": { @@ -112,7 +112,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 17:14:53,503 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/491202878\n" + "2023-01-25 19:25:41,619 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/491202878\n" ] } ], @@ -141,16 +141,16 @@ "id": "321f6a29", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:14:58.344855Z", - "iopub.status.busy": "2023-01-24T17:14:58.344606Z", - "iopub.status.idle": "2023-01-24T17:14:58.348893Z", - "shell.execute_reply": "2023-01-24T17:14:58.348247Z" + "iopub.execute_input": "2023-01-25T19:25:43.830524Z", + "iopub.status.busy": "2023-01-25T19:25:43.830140Z", + "iopub.status.idle": "2023-01-25T19:25:43.836652Z", + "shell.execute_reply": "2023-01-25T19:25:43.835663Z" }, "papermill": { - "duration": 0.013377, - "end_time": "2023-01-24T17:14:58.350492", + "duration": 0.018616, + "end_time": "2023-01-25T19:25:43.839325", "exception": false, - "start_time": "2023-01-24T17:14:58.337115", + "start_time": "2023-01-25T19:25:43.820709", "status": "completed" }, "pycharm": { @@ -179,16 +179,16 @@ "id": "be057130", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:14:58.364584Z", - "iopub.status.busy": "2023-01-24T17:14:58.363956Z", - "iopub.status.idle": "2023-01-24T17:14:58.368141Z", - "shell.execute_reply": "2023-01-24T17:14:58.367500Z" + "iopub.execute_input": "2023-01-25T19:25:43.857977Z", + "iopub.status.busy": "2023-01-25T19:25:43.857045Z", + "iopub.status.idle": "2023-01-25T19:25:43.862843Z", + "shell.execute_reply": "2023-01-25T19:25:43.861879Z" }, "papermill": { - "duration": 0.012736, - "end_time": "2023-01-24T17:14:58.369536", + "duration": 0.017845, + "end_time": "2023-01-25T19:25:43.865214", "exception": false, - "start_time": "2023-01-24T17:14:58.356800", + "start_time": "2023-01-25T19:25:43.847369", "status": "completed" }, "pycharm": { @@ -216,10 +216,10 @@ "id": "0c4809a8", "metadata": { "papermill": { - "duration": 0.006332, - "end_time": "2023-01-24T17:14:58.382193", + "duration": 0.008124, + "end_time": "2023-01-25T19:25:43.881253", "exception": false, - "start_time": "2023-01-24T17:14:58.375861", + "start_time": "2023-01-25T19:25:43.873129", "status": "completed" }, "pycharm": { @@ -237,16 +237,16 @@ "id": "55455305", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:14:58.395986Z", - "iopub.status.busy": "2023-01-24T17:14:58.395557Z", - "iopub.status.idle": "2023-01-24T17:14:59.071929Z", - "shell.execute_reply": "2023-01-24T17:14:59.070668Z" + "iopub.execute_input": "2023-01-25T19:25:43.898961Z", + "iopub.status.busy": "2023-01-25T19:25:43.898407Z", + "iopub.status.idle": "2023-01-25T19:25:44.903467Z", + "shell.execute_reply": "2023-01-25T19:25:44.902441Z" }, "papermill": { - "duration": 0.685086, - "end_time": "2023-01-24T17:14:59.073549", + "duration": 1.016857, + "end_time": "2023-01-25T19:25:44.905476", "exception": false, - "start_time": "2023-01-24T17:14:58.388463", + "start_time": "2023-01-25T19:25:43.888619", "status": "completed" }, "pycharm": { @@ -299,10 +299,10 @@ "id": "e302aea6", "metadata": { "papermill": { - "duration": 0.007161, - "end_time": "2023-01-24T17:14:59.087900", + "duration": 0.008417, + "end_time": "2023-01-25T19:25:44.922745", "exception": false, - "start_time": "2023-01-24T17:14:59.080739", + "start_time": "2023-01-25T19:25:44.914328", "status": "completed" }, "pycharm": { @@ -322,16 +322,16 @@ "id": "f2abde81", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:14:59.103636Z", - "iopub.status.busy": "2023-01-24T17:14:59.102748Z", - "iopub.status.idle": "2023-01-24T17:15:04.180394Z", - "shell.execute_reply": "2023-01-24T17:15:04.179812Z" + "iopub.execute_input": "2023-01-25T19:25:44.941422Z", + "iopub.status.busy": "2023-01-25T19:25:44.940352Z", + "iopub.status.idle": "2023-01-25T19:25:49.886429Z", + "shell.execute_reply": "2023-01-25T19:25:49.885492Z" }, "papermill": { - "duration": 5.087368, - "end_time": "2023-01-24T17:15:04.182098", + "duration": 4.957935, + "end_time": "2023-01-25T19:25:49.888685", "exception": false, - "start_time": "2023-01-24T17:14:59.094730", + "start_time": "2023-01-25T19:25:44.930750", "status": "completed" }, "pycharm": { @@ -390,10 +390,10 @@ "id": "5c0def2a", "metadata": { "papermill": { - "duration": 0.007026, - "end_time": "2023-01-24T17:15:04.196419", + "duration": 0.008104, + "end_time": "2023-01-25T19:25:49.907001", "exception": false, - "start_time": "2023-01-24T17:15:04.189393", + "start_time": "2023-01-25T19:25:49.898897", "status": "completed" }, "pycharm": { @@ -415,16 +415,16 @@ "id": "c60e6e75", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:15:04.211702Z", - "iopub.status.busy": "2023-01-24T17:15:04.211168Z", - "iopub.status.idle": "2023-01-24T17:15:04.558198Z", - "shell.execute_reply": "2023-01-24T17:15:04.557509Z" + "iopub.execute_input": "2023-01-25T19:25:49.925079Z", + "iopub.status.busy": "2023-01-25T19:25:49.924734Z", + "iopub.status.idle": "2023-01-25T19:25:50.172342Z", + "shell.execute_reply": "2023-01-25T19:25:50.171224Z" }, "papermill": { - "duration": 0.356654, - "end_time": "2023-01-24T17:15:04.559924", + "duration": 0.25948, + "end_time": "2023-01-25T19:25:50.174634", "exception": false, - "start_time": "2023-01-24T17:15:04.203270", + "start_time": "2023-01-25T19:25:49.915154", "status": "completed" }, "pycharm": { @@ -437,7 +437,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 17:15:04,305 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/491771448\n" + "2023-01-25 19:25:49,984 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/491771448\n" ] }, { @@ -483,10 +483,10 @@ "id": "7c9b273f", "metadata": { "papermill": { - "duration": 0.00733, - "end_time": "2023-01-24T17:15:04.574924", + "duration": 0.008578, + "end_time": "2023-01-25T19:25:50.192500", "exception": false, - "start_time": "2023-01-24T17:15:04.567594", + "start_time": "2023-01-25T19:25:50.183922", "status": "completed" }, "pycharm": { @@ -506,16 +506,16 @@ "id": "3bcab1ac", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:15:04.590530Z", - "iopub.status.busy": "2023-01-24T17:15:04.589833Z", - "iopub.status.idle": "2023-01-24T17:15:04.778196Z", - "shell.execute_reply": "2023-01-24T17:15:04.777519Z" + "iopub.execute_input": "2023-01-25T19:25:50.212626Z", + "iopub.status.busy": "2023-01-25T19:25:50.211997Z", + "iopub.status.idle": "2023-01-25T19:25:50.369642Z", + "shell.execute_reply": "2023-01-25T19:25:50.368562Z" }, "papermill": { - "duration": 0.198011, - "end_time": "2023-01-24T17:15:04.779833", + "duration": 0.169948, + "end_time": "2023-01-25T19:25:50.371680", "exception": false, - "start_time": "2023-01-24T17:15:04.581822", + "start_time": "2023-01-25T19:25:50.201732", "status": "completed" }, "pycharm": { @@ -528,7 +528,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 17:15:04,679 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/496606365\n" + "2023-01-25 19:25:50,271 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/496606365\n" ] }, { @@ -550,10 +550,10 @@ "id": "f2215938", "metadata": { "papermill": { - "duration": 0.0075, - "end_time": "2023-01-24T17:15:04.794833", + "duration": 0.008766, + "end_time": "2023-01-25T19:25:50.389939", "exception": false, - "start_time": "2023-01-24T17:15:04.787333", + "start_time": "2023-01-25T19:25:50.381173", "status": "completed" }, "pycharm": { @@ -571,16 +571,16 @@ "id": "69ed8cab", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:15:04.810971Z", - "iopub.status.busy": "2023-01-24T17:15:04.810194Z", - "iopub.status.idle": "2023-01-24T17:15:12.367362Z", - "shell.execute_reply": "2023-01-24T17:15:12.366684Z" + "iopub.execute_input": "2023-01-25T19:25:50.409626Z", + "iopub.status.busy": "2023-01-25T19:25:50.408937Z", + "iopub.status.idle": "2023-01-25T19:26:03.253395Z", + "shell.execute_reply": "2023-01-25T19:26:03.252371Z" }, "papermill": { - "duration": 7.567253, - "end_time": "2023-01-24T17:15:12.369174", + "duration": 12.856404, + "end_time": "2023-01-25T19:26:03.255623", "exception": false, - "start_time": "2023-01-24T17:15:04.801921", + "start_time": "2023-01-25T19:25:50.399219", "status": "completed" }, "pycharm": { @@ -635,10 +635,10 @@ "id": "e44850b9", "metadata": { "papermill": { - "duration": 0.007933, - "end_time": "2023-01-24T17:15:12.385084", + "duration": 0.010186, + "end_time": "2023-01-25T19:26:03.275878", "exception": false, - "start_time": "2023-01-24T17:15:12.377151", + "start_time": "2023-01-25T19:26:03.265692", "status": "completed" }, "pycharm": { @@ -658,16 +658,16 @@ "id": "035e6b53", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:15:12.401854Z", - "iopub.status.busy": "2023-01-24T17:15:12.401151Z", - "iopub.status.idle": "2023-01-24T17:15:17.256323Z", - "shell.execute_reply": "2023-01-24T17:15:17.255662Z" + "iopub.execute_input": "2023-01-25T19:26:03.295856Z", + "iopub.status.busy": "2023-01-25T19:26:03.295482Z", + "iopub.status.idle": "2023-01-25T19:26:07.184146Z", + "shell.execute_reply": "2023-01-25T19:26:07.182997Z" }, "papermill": { - "duration": 4.865406, - "end_time": "2023-01-24T17:15:17.257931", + "duration": 3.901364, + "end_time": "2023-01-25T19:26:07.186382", "exception": false, - "start_time": "2023-01-24T17:15:12.392525", + "start_time": "2023-01-25T19:26:03.285018", "status": "completed" }, "pycharm": { @@ -810,10 +810,10 @@ "id": "f639041d", "metadata": { "papermill": { - "duration": 0.00793, - "end_time": "2023-01-24T17:15:17.274050", + "duration": 0.009754, + "end_time": "2023-01-25T19:26:07.205437", "exception": false, - "start_time": "2023-01-24T17:15:17.266120", + "start_time": "2023-01-25T19:26:07.195683", "status": "completed" }, "pycharm": { @@ -831,16 +831,16 @@ "id": "fc63f206", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:15:17.291040Z", - "iopub.status.busy": "2023-01-24T17:15:17.290502Z", - "iopub.status.idle": "2023-01-24T17:15:17.402454Z", - "shell.execute_reply": "2023-01-24T17:15:17.401738Z" + "iopub.execute_input": "2023-01-25T19:26:07.225103Z", + "iopub.status.busy": "2023-01-25T19:26:07.224600Z", + "iopub.status.idle": "2023-01-25T19:26:07.386514Z", + "shell.execute_reply": "2023-01-25T19:26:07.385406Z" }, "papermill": { - "duration": 0.122584, - "end_time": "2023-01-24T17:15:17.404373", + "duration": 0.175199, + "end_time": "2023-01-25T19:26:07.389958", "exception": false, - "start_time": "2023-01-24T17:15:17.281789", + "start_time": "2023-01-25T19:26:07.214759", "status": "completed" }, "pycharm": { @@ -874,10 +874,10 @@ "id": "bd1e39cc", "metadata": { "papermill": { - "duration": 0.008698, - "end_time": "2023-01-24T17:15:17.422497", + "duration": 0.011363, + "end_time": "2023-01-25T19:26:07.415332", "exception": false, - "start_time": "2023-01-24T17:15:17.413799", + "start_time": "2023-01-25T19:26:07.403969", "status": "completed" }, "pycharm": { @@ -895,16 +895,16 @@ "id": "36495362", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:15:17.441183Z", - "iopub.status.busy": "2023-01-24T17:15:17.440660Z", - "iopub.status.idle": "2023-01-24T17:15:17.562374Z", - "shell.execute_reply": "2023-01-24T17:15:17.561670Z" + "iopub.execute_input": "2023-01-25T19:26:07.439107Z", + "iopub.status.busy": "2023-01-25T19:26:07.438722Z", + "iopub.status.idle": "2023-01-25T19:26:07.609882Z", + "shell.execute_reply": "2023-01-25T19:26:07.608766Z" }, "papermill": { - "duration": 0.13302, - "end_time": "2023-01-24T17:15:17.564082", + "duration": 0.184837, + "end_time": "2023-01-25T19:26:07.612126", "exception": false, - "start_time": "2023-01-24T17:15:17.431062", + "start_time": "2023-01-25T19:26:07.427289", "status": "completed" }, "pycharm": { @@ -963,10 +963,10 @@ "id": "086caae6", "metadata": { "papermill": { - "duration": 0.009591, - "end_time": "2023-01-24T17:15:17.583449", + "duration": 0.01225, + "end_time": "2023-01-25T19:26:07.636139", "exception": false, - "start_time": "2023-01-24T17:15:17.573858", + "start_time": "2023-01-25T19:26:07.623889", "status": "completed" }, "pycharm": { @@ -984,16 +984,16 @@ "id": "199b8a22", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:15:17.603817Z", - "iopub.status.busy": "2023-01-24T17:15:17.603126Z", - "iopub.status.idle": "2023-01-24T17:15:17.806415Z", - "shell.execute_reply": "2023-01-24T17:15:17.805834Z" + "iopub.execute_input": "2023-01-25T19:26:07.669299Z", + "iopub.status.busy": "2023-01-25T19:26:07.668925Z", + "iopub.status.idle": "2023-01-25T19:26:07.967464Z", + "shell.execute_reply": "2023-01-25T19:26:07.966420Z" }, "papermill": { - "duration": 0.215227, - "end_time": "2023-01-24T17:15:17.808016", + "duration": 0.318458, + "end_time": "2023-01-25T19:26:07.971281", "exception": false, - "start_time": "2023-01-24T17:15:17.592789", + "start_time": "2023-01-25T19:26:07.652823", "status": "completed" }, "pycharm": { @@ -1044,10 +1044,10 @@ "id": "3a8f5cd7", "metadata": { "papermill": { - "duration": 0.010737, - "end_time": "2023-01-24T17:15:17.829638", + "duration": 0.011909, + "end_time": "2023-01-25T19:26:07.996265", "exception": false, - "start_time": "2023-01-24T17:15:17.818901", + "start_time": "2023-01-25T19:26:07.984356", "status": "completed" }, "pycharm": { @@ -1067,16 +1067,16 @@ "id": "afa4af8a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:15:17.852151Z", - "iopub.status.busy": "2023-01-24T17:15:17.851366Z", - "iopub.status.idle": "2023-01-24T17:15:19.320147Z", - "shell.execute_reply": "2023-01-24T17:15:19.319464Z" + "iopub.execute_input": "2023-01-25T19:26:08.020399Z", + "iopub.status.busy": "2023-01-25T19:26:08.019760Z", + "iopub.status.idle": "2023-01-25T19:26:08.885979Z", + "shell.execute_reply": "2023-01-25T19:26:08.884941Z" }, "papermill": { - "duration": 1.482223, - "end_time": "2023-01-24T17:15:19.322198", + "duration": 0.88083, + "end_time": "2023-01-25T19:26:08.887986", "exception": false, - "start_time": "2023-01-24T17:15:17.839975", + "start_time": "2023-01-25T19:26:08.007156", "status": "completed" }, "pycharm": { @@ -1334,10 +1334,10 @@ "id": "4d856aab", "metadata": { "papermill": { - "duration": 0.011072, - "end_time": "2023-01-24T17:15:19.344454", + "duration": 0.015887, + "end_time": "2023-01-25T19:26:08.917777", "exception": false, - "start_time": "2023-01-24T17:15:19.333382", + "start_time": "2023-01-25T19:26:08.901890", "status": "completed" }, "pycharm": { @@ -1357,16 +1357,16 @@ "id": "85a9869b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:15:19.367505Z", - "iopub.status.busy": "2023-01-24T17:15:19.366971Z", - "iopub.status.idle": "2023-01-24T17:15:19.819636Z", - "shell.execute_reply": "2023-01-24T17:15:19.818887Z" + "iopub.execute_input": "2023-01-25T19:26:08.944823Z", + "iopub.status.busy": "2023-01-25T19:26:08.944145Z", + "iopub.status.idle": "2023-01-25T19:26:09.625922Z", + "shell.execute_reply": "2023-01-25T19:26:09.624766Z" }, "papermill": { - "duration": 0.466057, - "end_time": "2023-01-24T17:15:19.821233", + "duration": 0.6982, + "end_time": "2023-01-25T19:26:09.627943", "exception": false, - "start_time": "2023-01-24T17:15:19.355176", + "start_time": "2023-01-25T19:26:08.929743", "status": "completed" }, "pycharm": { @@ -1411,10 +1411,10 @@ "id": "7e7df25b", "metadata": { "papermill": { - "duration": 0.011091, - "end_time": "2023-01-24T17:15:19.843773", + "duration": 0.012412, + "end_time": "2023-01-25T19:26:09.653608", "exception": false, - "start_time": "2023-01-24T17:15:19.832682", + "start_time": "2023-01-25T19:26:09.641196", "status": "completed" }, "pycharm": { @@ -1432,16 +1432,16 @@ "id": "c37c38d4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:15:19.867165Z", - "iopub.status.busy": "2023-01-24T17:15:19.866298Z", - "iopub.status.idle": "2023-01-24T17:15:19.871396Z", - "shell.execute_reply": "2023-01-24T17:15:19.870872Z" + "iopub.execute_input": "2023-01-25T19:26:09.679736Z", + "iopub.status.busy": "2023-01-25T19:26:09.679135Z", + "iopub.status.idle": "2023-01-25T19:26:09.686661Z", + "shell.execute_reply": "2023-01-25T19:26:09.685584Z" }, "papermill": { - "duration": 0.018121, - "end_time": "2023-01-24T17:15:19.872710", + "duration": 0.024507, + "end_time": "2023-01-25T19:26:09.689961", "exception": false, - "start_time": "2023-01-24T17:15:19.854589", + "start_time": "2023-01-25T19:26:09.665454", "status": "completed" }, "pycharm": { @@ -1505,10 +1505,10 @@ "id": "e746c34f", "metadata": { "papermill": { - "duration": 0.010784, - "end_time": "2023-01-24T17:15:19.894314", + "duration": 0.014807, + "end_time": "2023-01-25T19:26:09.718408", "exception": false, - "start_time": "2023-01-24T17:15:19.883530", + "start_time": "2023-01-25T19:26:09.703601", "status": "completed" }, "pycharm": { @@ -1526,16 +1526,16 @@ "id": "b93eba0f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:15:19.917479Z", - "iopub.status.busy": "2023-01-24T17:15:19.916858Z", - "iopub.status.idle": "2023-01-24T17:15:19.920965Z", - "shell.execute_reply": "2023-01-24T17:15:19.920457Z" + "iopub.execute_input": "2023-01-25T19:26:09.748151Z", + "iopub.status.busy": "2023-01-25T19:26:09.746669Z", + "iopub.status.idle": "2023-01-25T19:26:09.753026Z", + "shell.execute_reply": "2023-01-25T19:26:09.752177Z" }, "papermill": { - "duration": 0.017334, - "end_time": "2023-01-24T17:15:19.922544", + "duration": 0.022835, + "end_time": "2023-01-25T19:26:09.755182", "exception": false, - "start_time": "2023-01-24T17:15:19.905210", + "start_time": "2023-01-25T19:26:09.732347", "status": "completed" }, "pycharm": { @@ -1563,10 +1563,10 @@ "id": "5c644c3e", "metadata": { "papermill": { - "duration": 0.010929, - "end_time": "2023-01-24T17:15:19.944605", + "duration": 0.012731, + "end_time": "2023-01-25T19:26:09.781453", "exception": false, - "start_time": "2023-01-24T17:15:19.933676", + "start_time": "2023-01-25T19:26:09.768722", "status": "completed" }, "pycharm": { @@ -1584,16 +1584,16 @@ "id": "ced631e9", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:15:19.968249Z", - "iopub.status.busy": "2023-01-24T17:15:19.967457Z", - "iopub.status.idle": "2023-01-24T17:15:20.152199Z", - "shell.execute_reply": "2023-01-24T17:15:20.151465Z" + "iopub.execute_input": "2023-01-25T19:26:09.813392Z", + "iopub.status.busy": "2023-01-25T19:26:09.812137Z", + "iopub.status.idle": "2023-01-25T19:26:10.088327Z", + "shell.execute_reply": "2023-01-25T19:26:10.087215Z" }, "papermill": { - "duration": 0.198283, - "end_time": "2023-01-24T17:15:20.153878", + "duration": 0.294254, + "end_time": "2023-01-25T19:26:10.090917", "exception": false, - "start_time": "2023-01-24T17:15:19.955595", + "start_time": "2023-01-25T19:26:09.796663", "status": "completed" }, "pycharm": { @@ -1640,10 +1640,10 @@ "id": "dba20dbe", "metadata": { "papermill": { - "duration": 0.011856, - "end_time": "2023-01-24T17:15:20.177782", + "duration": 0.012977, + "end_time": "2023-01-25T19:26:10.123818", "exception": false, - "start_time": "2023-01-24T17:15:20.165926", + "start_time": "2023-01-25T19:26:10.110841", "status": "completed" }, "pycharm": { @@ -1661,16 +1661,16 @@ "id": "36443601", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:15:20.202518Z", - "iopub.status.busy": "2023-01-24T17:15:20.201957Z", - "iopub.status.idle": "2023-01-24T17:15:20.372179Z", - "shell.execute_reply": "2023-01-24T17:15:20.371462Z" + "iopub.execute_input": "2023-01-25T19:26:10.153910Z", + "iopub.status.busy": "2023-01-25T19:26:10.153184Z", + "iopub.status.idle": "2023-01-25T19:26:10.412939Z", + "shell.execute_reply": "2023-01-25T19:26:10.411743Z" }, "papermill": { - "duration": 0.184576, - "end_time": "2023-01-24T17:15:20.373903", + "duration": 0.278509, + "end_time": "2023-01-25T19:26:10.415588", "exception": false, - "start_time": "2023-01-24T17:15:20.189327", + "start_time": "2023-01-25T19:26:10.137079", "status": "completed" }, "pycharm": { @@ -1733,17 +1733,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 31.170796, - "end_time": "2023-01-24T17:15:21.205409", + "duration": 34.601385, + "end_time": "2023-01-25T19:26:11.656792", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/cell_types.ipynb", - "output_path": "/tmp/tmp5zyld3r0/scratch_nb.ipynb", + "output_path": "/tmp/tmp55fqtqji/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmp5zyld3r0", + "output_dir": "/tmp/tmp55fqtqji", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T17:14:50.034613", + "start_time": "2023-01-25T19:25:37.055407", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/download_data_via_api.ipynb b/doc_template/examples_root/examples/nb/download_data_via_api.ipynb index 42d0cbb3f..baf9839ac 100644 --- a/doc_template/examples_root/examples/nb/download_data_via_api.ipynb +++ b/doc_template/examples_root/examples/nb/download_data_via_api.ipynb @@ -5,10 +5,10 @@ "id": "f1665fa9", "metadata": { "papermill": { - "duration": 0.005625, - "end_time": "2023-01-24T17:51:57.555949", + "duration": 0.006534, + "end_time": "2023-01-25T20:05:51.019222", "exception": false, - "start_time": "2023-01-24T17:51:57.550324", + "start_time": "2023-01-25T20:05:51.012688", "status": "completed" }, "tags": [] @@ -23,16 +23,16 @@ "id": "c000a3a1", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:51:57.569790Z", - "iopub.status.busy": "2023-01-24T17:51:57.569217Z", - "iopub.status.idle": "2023-01-24T17:51:57.577328Z", - "shell.execute_reply": "2023-01-24T17:51:57.576727Z" + "iopub.execute_input": "2023-01-25T20:05:51.037139Z", + "iopub.status.busy": "2023-01-25T20:05:51.036776Z", + "iopub.status.idle": "2023-01-25T20:05:51.047326Z", + "shell.execute_reply": "2023-01-25T20:05:51.045874Z" }, "papermill": { - "duration": 0.018281, - "end_time": "2023-01-24T17:51:57.578938", + "duration": 0.022879, + "end_time": "2023-01-25T20:05:51.049614", "exception": false, - "start_time": "2023-01-24T17:51:57.560657", + "start_time": "2023-01-25T20:05:51.026735", "status": "completed" }, "tags": [ @@ -50,16 +50,16 @@ "id": "14487b52", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:51:57.603136Z", - "iopub.status.busy": "2023-01-24T17:51:57.602741Z", - "iopub.status.idle": "2023-01-24T17:51:59.716456Z", - "shell.execute_reply": "2023-01-24T17:51:59.715758Z" + "iopub.execute_input": "2023-01-25T20:05:51.083778Z", + "iopub.status.busy": "2023-01-25T20:05:51.083210Z", + "iopub.status.idle": "2023-01-25T20:05:54.338325Z", + "shell.execute_reply": "2023-01-25T20:05:54.337265Z" }, "papermill": { - "duration": 2.120722, - "end_time": "2023-01-24T17:51:59.718277", + "duration": 3.266566, + "end_time": "2023-01-25T20:05:54.341778", "exception": false, - "start_time": "2023-01-24T17:51:57.597555", + "start_time": "2023-01-25T20:05:51.075212", "status": "completed" }, "tags": [] @@ -87,10 +87,10 @@ "id": "91962df6", "metadata": { "papermill": { - "duration": 0.00469, - "end_time": "2023-01-24T17:51:59.727772", + "duration": 0.008726, + "end_time": "2023-01-25T20:05:54.357126", "exception": false, - "start_time": "2023-01-24T17:51:59.723082", + "start_time": "2023-01-25T20:05:54.348400", "status": "completed" }, "tags": [] @@ -104,10 +104,10 @@ "id": "290563c1", "metadata": { "papermill": { - "duration": 0.004266, - "end_time": "2023-01-24T17:51:59.736388", + "duration": 0.005166, + "end_time": "2023-01-25T20:05:54.369809", "exception": false, - "start_time": "2023-01-24T17:51:59.732122", + "start_time": "2023-01-25T20:05:54.364643", "status": "completed" }, "tags": [] @@ -122,16 +122,16 @@ "id": "9be3f29d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:51:59.746741Z", - "iopub.status.busy": "2023-01-24T17:51:59.746108Z", - "iopub.status.idle": "2023-01-24T17:51:59.883227Z", - "shell.execute_reply": "2023-01-24T17:51:59.882627Z" + "iopub.execute_input": "2023-01-25T20:05:54.387156Z", + "iopub.status.busy": "2023-01-25T20:05:54.386597Z", + "iopub.status.idle": "2023-01-25T20:05:54.472790Z", + "shell.execute_reply": "2023-01-25T20:05:54.471582Z" }, "papermill": { - "duration": 0.143919, - "end_time": "2023-01-24T17:51:59.884714", + "duration": 0.098286, + "end_time": "2023-01-25T20:05:54.475427", "exception": false, - "start_time": "2023-01-24T17:51:59.740795", + "start_time": "2023-01-25T20:05:54.377141", "status": "completed" }, "tags": [] @@ -183,16 +183,16 @@ "id": "7f5555e6", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:51:59.895876Z", - "iopub.status.busy": "2023-01-24T17:51:59.895170Z", - "iopub.status.idle": "2023-01-24T17:52:00.015413Z", - "shell.execute_reply": "2023-01-24T17:52:00.014713Z" + "iopub.execute_input": "2023-01-25T20:05:54.493912Z", + "iopub.status.busy": "2023-01-25T20:05:54.493531Z", + "iopub.status.idle": "2023-01-25T20:05:54.554532Z", + "shell.execute_reply": "2023-01-25T20:05:54.553334Z" }, "papermill": { - "duration": 0.127707, - "end_time": "2023-01-24T17:52:00.017218", + "duration": 0.072517, + "end_time": "2023-01-25T20:05:54.556815", "exception": false, - "start_time": "2023-01-24T17:51:59.889511", + "start_time": "2023-01-25T20:05:54.484298", "status": "completed" }, "tags": [] @@ -226,16 +226,16 @@ "id": "d8576520", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:00.028376Z", - "iopub.status.busy": "2023-01-24T17:52:00.027768Z", - "iopub.status.idle": "2023-01-24T17:52:00.128331Z", - "shell.execute_reply": "2023-01-24T17:52:00.127679Z" + "iopub.execute_input": "2023-01-25T20:05:54.570120Z", + "iopub.status.busy": "2023-01-25T20:05:54.569744Z", + "iopub.status.idle": "2023-01-25T20:05:54.660663Z", + "shell.execute_reply": "2023-01-25T20:05:54.659595Z" }, "papermill": { - "duration": 0.107913, - "end_time": "2023-01-24T17:52:00.130114", + "duration": 0.100504, + "end_time": "2023-01-25T20:05:54.663339", "exception": false, - "start_time": "2023-01-24T17:52:00.022201", + "start_time": "2023-01-25T20:05:54.562835", "status": "completed" }, "tags": [] @@ -267,16 +267,16 @@ "id": "8e798325", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:00.141622Z", - "iopub.status.busy": "2023-01-24T17:52:00.140940Z", - "iopub.status.idle": "2023-01-24T17:52:00.238126Z", - "shell.execute_reply": "2023-01-24T17:52:00.237460Z" + "iopub.execute_input": "2023-01-25T20:05:54.678723Z", + "iopub.status.busy": "2023-01-25T20:05:54.678041Z", + "iopub.status.idle": "2023-01-25T20:05:54.748666Z", + "shell.execute_reply": "2023-01-25T20:05:54.747521Z" }, "papermill": { - "duration": 0.104778, - "end_time": "2023-01-24T17:52:00.239922", + "duration": 0.080621, + "end_time": "2023-01-25T20:05:54.750779", "exception": false, - "start_time": "2023-01-24T17:52:00.135144", + "start_time": "2023-01-25T20:05:54.670158", "status": "completed" }, "tags": [] @@ -314,10 +314,10 @@ "id": "27b41b9a", "metadata": { "papermill": { - "duration": 0.005082, - "end_time": "2023-01-24T17:52:00.250124", + "duration": 0.005634, + "end_time": "2023-01-25T20:05:54.762697", "exception": false, - "start_time": "2023-01-24T17:52:00.245042", + "start_time": "2023-01-25T20:05:54.757063", "status": "completed" }, "tags": [] @@ -332,16 +332,16 @@ "id": "26307b99", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:00.261135Z", - "iopub.status.busy": "2023-01-24T17:52:00.260358Z", - "iopub.status.idle": "2023-01-24T17:52:00.263986Z", - "shell.execute_reply": "2023-01-24T17:52:00.263309Z" + "iopub.execute_input": "2023-01-25T20:05:54.777389Z", + "iopub.status.busy": "2023-01-25T20:05:54.776621Z", + "iopub.status.idle": "2023-01-25T20:05:54.781663Z", + "shell.execute_reply": "2023-01-25T20:05:54.780844Z" }, "papermill": { - "duration": 0.010755, - "end_time": "2023-01-24T17:52:00.265551", + "duration": 0.01485, + "end_time": "2023-01-25T20:05:54.783670", "exception": false, - "start_time": "2023-01-24T17:52:00.254796", + "start_time": "2023-01-25T20:05:54.768820", "status": "completed" }, "tags": [] @@ -356,10 +356,10 @@ "id": "841e106e", "metadata": { "papermill": { - "duration": 0.004647, - "end_time": "2023-01-24T17:52:00.274986", + "duration": 0.00698, + "end_time": "2023-01-25T20:05:54.797805", "exception": false, - "start_time": "2023-01-24T17:52:00.270339", + "start_time": "2023-01-25T20:05:54.790825", "status": "completed" }, "tags": [] @@ -386,16 +386,16 @@ "id": "88d5b178", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:00.285542Z", - "iopub.status.busy": "2023-01-24T17:52:00.285086Z", - "iopub.status.idle": "2023-01-24T17:52:01.031499Z", - "shell.execute_reply": "2023-01-24T17:52:01.030793Z" + "iopub.execute_input": "2023-01-25T20:05:54.812677Z", + "iopub.status.busy": "2023-01-25T20:05:54.812095Z", + "iopub.status.idle": "2023-01-25T20:05:55.368807Z", + "shell.execute_reply": "2023-01-25T20:05:55.367550Z" }, "papermill": { - "duration": 0.753859, - "end_time": "2023-01-24T17:52:01.033457", + "duration": 0.567227, + "end_time": "2023-01-25T20:05:55.371509", "exception": false, - "start_time": "2023-01-24T17:52:00.279598", + "start_time": "2023-01-25T20:05:54.804282", "status": "completed" }, "tags": [] @@ -405,11 +405,11 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 17:52:00,287 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/grid_data/download_file/183282970?image=projection_density&resolution=100\n", - "2023-01-24 17:52:00,533 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/grid_data/download_file/183282970?image=projection_energy&resolution=100\n", - "2023-01-24 17:52:00,729 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/grid_data/download_file/183282970?image=injection_fraction&resolution=100\n", - "2023-01-24 17:52:00,838 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/grid_data/download_file/183282970?image=injection_density&resolution=100\n", - "2023-01-24 17:52:00,935 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/grid_data/download_file/183282970?image=injection_energy&resolution=100\n" + "2023-01-25 20:05:54,816 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/grid_data/download_file/183282970?image=projection_density&resolution=100\n", + "2023-01-25 20:05:54,975 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/grid_data/download_file/183282970?image=projection_energy&resolution=100\n", + "2023-01-25 20:05:55,126 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/grid_data/download_file/183282970?image=injection_fraction&resolution=100\n", + "2023-01-25 20:05:55,202 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/grid_data/download_file/183282970?image=injection_density&resolution=100\n", + "2023-01-25 20:05:55,270 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/grid_data/download_file/183282970?image=injection_energy&resolution=100\n" ] } ], @@ -444,10 +444,10 @@ "id": "96e57a7b", "metadata": { "papermill": { - "duration": 0.005047, - "end_time": "2023-01-24T17:52:01.043992", + "duration": 0.006497, + "end_time": "2023-01-25T20:05:55.384622", "exception": false, - "start_time": "2023-01-24T17:52:01.038945", + "start_time": "2023-01-25T20:05:55.378125", "status": "completed" }, "tags": [] @@ -462,16 +462,16 @@ "id": "d716abf8", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:01.055473Z", - "iopub.status.busy": "2023-01-24T17:52:01.054915Z", - "iopub.status.idle": "2023-01-24T17:52:01.491165Z", - "shell.execute_reply": "2023-01-24T17:52:01.490480Z" + "iopub.execute_input": "2023-01-25T20:05:55.399722Z", + "iopub.status.busy": "2023-01-25T20:05:55.399342Z", + "iopub.status.idle": "2023-01-25T20:05:55.843120Z", + "shell.execute_reply": "2023-01-25T20:05:55.841535Z" }, "papermill": { - "duration": 0.444034, - "end_time": "2023-01-24T17:52:01.492982", + "duration": 0.454507, + "end_time": "2023-01-25T20:05:55.845728", "exception": false, - "start_time": "2023-01-24T17:52:01.048948", + "start_time": "2023-01-25T20:05:55.391221", "status": "completed" }, "tags": [] @@ -481,9 +481,9 @@ "name": "stderr", "output_type": "stream", "text": [ - "/tmp/ipykernel_5183/1972217619.py:1: VisibleDeprecationWarning: Function download_expression_grid_data is deprecated. Use download_gene_expression_grid_data instead\n", + "/tmp/ipykernel_5263/1972217619.py:1: VisibleDeprecationWarning: Function download_expression_grid_data is deprecated. Use download_gene_expression_grid_data instead\n", " gda.download_expression_grid_data(\n", - "2023-01-24 17:52:01,056 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/grid_data/download/183282970?include=projection_density,projection_energy,injection_fraction,injection_density,injection_energy\n" + "2023-01-25 20:05:55,401 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/grid_data/download/183282970?include=projection_density,projection_energy,injection_fraction,injection_density,injection_energy\n" ] } ], @@ -500,10 +500,10 @@ "id": "982f3337", "metadata": { "papermill": { - "duration": 0.005484, - "end_time": "2023-01-24T17:52:01.503928", + "duration": 0.006079, + "end_time": "2023-01-25T20:05:55.859240", "exception": false, - "start_time": "2023-01-24T17:52:01.498444", + "start_time": "2023-01-25T20:05:55.853161", "status": "completed" }, "tags": [] @@ -517,10 +517,10 @@ "id": "a468118f", "metadata": { "papermill": { - "duration": 0.004932, - "end_time": "2023-01-24T17:52:01.513868", + "duration": 0.005901, + "end_time": "2023-01-25T20:05:55.872069", "exception": false, - "start_time": "2023-01-24T17:52:01.508936", + "start_time": "2023-01-25T20:05:55.866168", "status": "completed" }, "tags": [] @@ -536,16 +536,16 @@ "id": "3ffe3c15", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:01.525662Z", - "iopub.status.busy": "2023-01-24T17:52:01.525084Z", - "iopub.status.idle": "2023-01-24T17:52:01.533068Z", - "shell.execute_reply": "2023-01-24T17:52:01.532519Z" + "iopub.execute_input": "2023-01-25T20:05:55.887246Z", + "iopub.status.busy": "2023-01-25T20:05:55.886760Z", + "iopub.status.idle": "2023-01-25T20:05:55.897693Z", + "shell.execute_reply": "2023-01-25T20:05:55.896814Z" }, "papermill": { - "duration": 0.015553, - "end_time": "2023-01-24T17:52:01.534510", + "duration": 0.02168, + "end_time": "2023-01-25T20:05:55.899809", "exception": false, - "start_time": "2023-01-24T17:52:01.518957", + "start_time": "2023-01-25T20:05:55.878129", "status": "completed" }, "tags": [] @@ -620,10 +620,10 @@ "id": "2b058d60", "metadata": { "papermill": { - "duration": 0.005035, - "end_time": "2023-01-24T17:52:01.544673", + "duration": 0.006118, + "end_time": "2023-01-25T20:05:55.912943", "exception": false, - "start_time": "2023-01-24T17:52:01.539638", + "start_time": "2023-01-25T20:05:55.906825", "status": "completed" }, "tags": [] @@ -638,10 +638,10 @@ "id": "74673d44", "metadata": { "papermill": { - "duration": 0.004957, - "end_time": "2023-01-24T17:52:01.554770", + "duration": 0.006112, + "end_time": "2023-01-25T20:05:55.925465", "exception": false, - "start_time": "2023-01-24T17:52:01.549813", + "start_time": "2023-01-25T20:05:55.919353", "status": "completed" }, "tags": [] @@ -655,10 +655,10 @@ "id": "d72ece0f", "metadata": { "papermill": { - "duration": 0.004939, - "end_time": "2023-01-24T17:52:01.564711", + "duration": 0.006069, + "end_time": "2023-01-25T20:05:55.937742", "exception": false, - "start_time": "2023-01-24T17:52:01.559772", + "start_time": "2023-01-25T20:05:55.931673", "status": "completed" }, "tags": [] @@ -672,10 +672,10 @@ "id": "71b03e83", "metadata": { "papermill": { - "duration": 0.00489, - "end_time": "2023-01-24T17:52:01.574689", + "duration": 0.008337, + "end_time": "2023-01-25T20:05:55.952639", "exception": false, - "start_time": "2023-01-24T17:52:01.569799", + "start_time": "2023-01-25T20:05:55.944302", "status": "completed" }, "tags": [] @@ -689,10 +689,10 @@ "id": "9c3216e5", "metadata": { "papermill": { - "duration": 0.004966, - "end_time": "2023-01-24T17:52:01.584823", + "duration": 0.006864, + "end_time": "2023-01-25T20:05:55.965954", "exception": false, - "start_time": "2023-01-24T17:52:01.579857", + "start_time": "2023-01-25T20:05:55.959090", "status": "completed" }, "tags": [] @@ -706,10 +706,10 @@ "id": "42cf8d88", "metadata": { "papermill": { - "duration": 0.004975, - "end_time": "2023-01-24T17:52:01.594911", + "duration": 0.005993, + "end_time": "2023-01-25T20:05:55.977954", "exception": false, - "start_time": "2023-01-24T17:52:01.589936", + "start_time": "2023-01-25T20:05:55.971961", "status": "completed" }, "tags": [] @@ -723,10 +723,10 @@ "id": "fb406063", "metadata": { "papermill": { - "duration": 0.005179, - "end_time": "2023-01-24T17:52:01.605194", + "duration": 0.006973, + "end_time": "2023-01-25T20:05:55.993066", "exception": false, - "start_time": "2023-01-24T17:52:01.600015", + "start_time": "2023-01-25T20:05:55.986093", "status": "completed" }, "tags": [] @@ -740,10 +740,10 @@ "id": "ece0a710", "metadata": { "papermill": { - "duration": 0.00494, - "end_time": "2023-01-24T17:52:01.615210", + "duration": 0.006384, + "end_time": "2023-01-25T20:05:56.006956", "exception": false, - "start_time": "2023-01-24T17:52:01.610270", + "start_time": "2023-01-25T20:05:56.000572", "status": "completed" }, "tags": [] @@ -759,16 +759,16 @@ "id": "0ad6597c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:01.626966Z", - "iopub.status.busy": "2023-01-24T17:52:01.626258Z", - "iopub.status.idle": "2023-01-24T17:52:02.520973Z", - "shell.execute_reply": "2023-01-24T17:52:02.520308Z" + "iopub.execute_input": "2023-01-25T20:05:56.022668Z", + "iopub.status.busy": "2023-01-25T20:05:56.022063Z", + "iopub.status.idle": "2023-01-25T20:05:56.488591Z", + "shell.execute_reply": "2023-01-25T20:05:56.487349Z" }, "papermill": { - "duration": 0.902537, - "end_time": "2023-01-24T17:52:02.522772", + "duration": 0.47713, + "end_time": "2023-01-25T20:05:56.491136", "exception": false, - "start_time": "2023-01-24T17:52:01.620235", + "start_time": "2023-01-25T20:05:56.014006", "status": "completed" }, "tags": [] @@ -778,7 +778,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 17:52:01,628 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://download.alleninstitute.org/informatics-archive/current-release/mouse_ccf/annotation/ccf_2015/annotation_25.nrrd\n" + "2023-01-25 20:05:56,026 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://download.alleninstitute.org/informatics-archive/current-release/mouse_ccf/annotation/ccf_2015/annotation_25.nrrd\n" ] } ], @@ -798,10 +798,10 @@ "metadata": { "collapsed": true, "papermill": { - "duration": 0.005114, - "end_time": "2023-01-24T17:52:02.533373", + "duration": 0.006239, + "end_time": "2023-01-25T20:05:56.506953", "exception": false, - "start_time": "2023-01-24T17:52:02.528259", + "start_time": "2023-01-25T20:05:56.500714", "status": "completed" }, "tags": [] @@ -831,17 +831,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 6.496588, - "end_time": "2023-01-24T17:52:02.857490", + "duration": 7.721185, + "end_time": "2023-01-25T20:05:56.938259", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/download_data_via_api.ipynb", - "output_path": "/tmp/tmpdync67lx/scratch_nb.ipynb", + "output_path": "/tmp/tmp6_ka2_4w/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmpdync67lx", + "output_dir": "/tmp/tmp6_ka2_4w", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T17:51:56.360902", + "start_time": "2023-01-25T20:05:49.217074", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/ecephys_data_access.ipynb b/doc_template/examples_root/examples/nb/ecephys_data_access.ipynb index e834ee169..71fdde622 100644 --- a/doc_template/examples_root/examples/nb/ecephys_data_access.ipynb +++ b/doc_template/examples_root/examples/nb/ecephys_data_access.ipynb @@ -5,10 +5,10 @@ "id": "4af47151", "metadata": { "papermill": { - "duration": 0.009401, - "end_time": "2023-01-24T16:30:45.891156", + "duration": 0.011543, + "end_time": "2023-01-25T18:37:01.935978", "exception": false, - "start_time": "2023-01-24T16:30:45.881755", + "start_time": "2023-01-25T18:37:01.924435", "status": "completed" }, "pycharm": { @@ -41,10 +41,10 @@ "id": "87a7f7a8", "metadata": { "papermill": { - "duration": 0.007807, - "end_time": "2023-01-24T16:30:45.907052", + "duration": 0.009656, + "end_time": "2023-01-25T18:37:01.957313", "exception": false, - "start_time": "2023-01-24T16:30:45.899245", + "start_time": "2023-01-25T18:37:01.947657", "status": "completed" }, "pycharm": { @@ -61,10 +61,10 @@ "id": "fa74e2be", "metadata": { "papermill": { - "duration": 0.007995, - "end_time": "2023-01-24T16:30:45.924047", + "duration": 0.009794, + "end_time": "2023-01-25T18:37:01.976910", "exception": false, - "start_time": "2023-01-24T16:30:45.916052", + "start_time": "2023-01-25T18:37:01.967116", "status": "completed" }, "pycharm": { @@ -96,16 +96,16 @@ "id": "8c3fba2b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:45.941140Z", - "iopub.status.busy": "2023-01-24T16:30:45.940571Z", - "iopub.status.idle": "2023-01-24T16:30:53.009100Z", - "shell.execute_reply": "2023-01-24T16:30:53.008424Z" + "iopub.execute_input": "2023-01-25T18:37:01.998641Z", + "iopub.status.busy": "2023-01-25T18:37:01.997904Z", + "iopub.status.idle": "2023-01-25T18:37:11.498773Z", + "shell.execute_reply": "2023-01-25T18:37:11.497426Z" }, "papermill": { - "duration": 7.079118, - "end_time": "2023-01-24T16:30:53.010966", + "duration": 9.514262, + "end_time": "2023-01-25T18:37:11.501500", "exception": false, - "start_time": "2023-01-24T16:30:45.931848", + "start_time": "2023-01-25T18:37:01.987238", "status": "completed" }, "pycharm": { @@ -138,10 +138,10 @@ "id": "9fe3b5b5", "metadata": { "papermill": { - "duration": 0.008259, - "end_time": "2023-01-24T16:30:53.028089", + "duration": 0.011039, + "end_time": "2023-01-25T18:37:11.522608", "exception": false, - "start_time": "2023-01-24T16:30:53.019830", + "start_time": "2023-01-25T18:37:11.511569", "status": "completed" }, "pycharm": { @@ -159,16 +159,16 @@ "id": "ed4b9fe8", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:53.045602Z", - "iopub.status.busy": "2023-01-24T16:30:53.044871Z", - "iopub.status.idle": "2023-01-24T16:30:53.048515Z", - "shell.execute_reply": "2023-01-24T16:30:53.047886Z" + "iopub.execute_input": "2023-01-25T18:37:11.544060Z", + "iopub.status.busy": "2023-01-25T18:37:11.543238Z", + "iopub.status.idle": "2023-01-25T18:37:11.548065Z", + "shell.execute_reply": "2023-01-25T18:37:11.547251Z" }, "papermill": { - "duration": 0.013947, - "end_time": "2023-01-24T16:30:53.049922", + "duration": 0.017848, + "end_time": "2023-01-25T18:37:11.550121", "exception": false, - "start_time": "2023-01-24T16:30:53.035975", + "start_time": "2023-01-25T18:37:11.532273", "status": "completed" }, "pycharm": { @@ -190,16 +190,16 @@ "id": "00bd7b08", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:53.088867Z", - "iopub.status.busy": "2023-01-24T16:30:53.088381Z", - "iopub.status.idle": "2023-01-24T16:30:53.091751Z", - "shell.execute_reply": "2023-01-24T16:30:53.091128Z" + "iopub.execute_input": "2023-01-25T18:37:11.599026Z", + "iopub.status.busy": "2023-01-25T18:37:11.598251Z", + "iopub.status.idle": "2023-01-25T18:37:11.602953Z", + "shell.execute_reply": "2023-01-25T18:37:11.602048Z" }, "papermill": { - "duration": 0.013792, - "end_time": "2023-01-24T16:30:53.093199", + "duration": 0.017522, + "end_time": "2023-01-25T18:37:11.604997", "exception": false, - "start_time": "2023-01-24T16:30:53.079407", + "start_time": "2023-01-25T18:37:11.587475", "status": "completed" }, "pycharm": { @@ -217,10 +217,10 @@ "id": "805ed1fa", "metadata": { "papermill": { - "duration": 0.007784, - "end_time": "2023-01-24T16:30:53.108835", + "duration": 0.010021, + "end_time": "2023-01-25T18:37:11.624888", "exception": false, - "start_time": "2023-01-24T16:30:53.101051", + "start_time": "2023-01-25T18:37:11.614867", "status": "completed" }, "pycharm": { @@ -238,16 +238,16 @@ "id": "205cd199", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:53.125698Z", - "iopub.status.busy": "2023-01-24T16:30:53.125219Z", - "iopub.status.idle": "2023-01-24T16:30:53.129243Z", - "shell.execute_reply": "2023-01-24T16:30:53.128572Z" + "iopub.execute_input": "2023-01-25T18:37:11.647234Z", + "iopub.status.busy": "2023-01-25T18:37:11.646659Z", + "iopub.status.idle": "2023-01-25T18:37:11.652204Z", + "shell.execute_reply": "2023-01-25T18:37:11.651216Z" }, "papermill": { - "duration": 0.014109, - "end_time": "2023-01-24T16:30:53.130659", + "duration": 0.018804, + "end_time": "2023-01-25T18:37:11.654222", "exception": false, - "start_time": "2023-01-24T16:30:53.116550", + "start_time": "2023-01-25T18:37:11.635418", "status": "completed" }, "pycharm": { @@ -265,10 +265,10 @@ "id": "08bca1f1", "metadata": { "papermill": { - "duration": 0.007744, - "end_time": "2023-01-24T16:30:53.146370", + "duration": 0.009884, + "end_time": "2023-01-25T18:37:11.674180", "exception": false, - "start_time": "2023-01-24T16:30:53.138626", + "start_time": "2023-01-25T18:37:11.664296", "status": "completed" }, "pycharm": { @@ -297,16 +297,16 @@ "id": "51c27283", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:53.163583Z", - "iopub.status.busy": "2023-01-24T16:30:53.163089Z", - "iopub.status.idle": "2023-01-24T16:34:07.952527Z", - "shell.execute_reply": "2023-01-24T16:34:07.951971Z" + "iopub.execute_input": "2023-01-25T18:37:11.695404Z", + "iopub.status.busy": "2023-01-25T18:37:11.694421Z", + "iopub.status.idle": "2023-01-25T18:40:13.230469Z", + "shell.execute_reply": "2023-01-25T18:40:13.229542Z" }, "papermill": { - "duration": 194.80518, - "end_time": "2023-01-24T16:34:07.959491", + "duration": 181.557203, + "end_time": "2023-01-25T18:40:13.240777", "exception": false, - "start_time": "2023-01-24T16:30:53.154311", + "start_time": "2023-01-25T18:37:11.683574", "status": "completed" }, "pycharm": { @@ -490,10 +490,10 @@ "id": "59727a12", "metadata": { "papermill": { - "duration": 0.008309, - "end_time": "2023-01-24T16:34:07.976152", + "duration": 0.011261, + "end_time": "2023-01-25T18:40:13.266166", "exception": false, - "start_time": "2023-01-24T16:34:07.967843", + "start_time": "2023-01-25T18:40:13.254905", "status": "completed" }, "pycharm": { @@ -518,16 +518,16 @@ "id": "5cd29a20", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:34:07.994113Z", - "iopub.status.busy": "2023-01-24T16:34:07.993319Z", - "iopub.status.idle": "2023-01-24T16:34:08.007149Z", - "shell.execute_reply": "2023-01-24T16:34:08.006528Z" + "iopub.execute_input": "2023-01-25T18:40:13.289785Z", + "iopub.status.busy": "2023-01-25T18:40:13.289033Z", + "iopub.status.idle": "2023-01-25T18:40:13.310081Z", + "shell.execute_reply": "2023-01-25T18:40:13.309020Z" }, "papermill": { - "duration": 0.024201, - "end_time": "2023-01-24T16:34:08.008529", + "duration": 0.035487, + "end_time": "2023-01-25T18:40:13.312123", "exception": false, - "start_time": "2023-01-24T16:34:07.984328", + "start_time": "2023-01-25T18:40:13.276636", "status": "completed" }, "pycharm": { @@ -672,10 +672,10 @@ "id": "b3fccb38", "metadata": { "papermill": { - "duration": 0.008248, - "end_time": "2023-01-24T16:34:08.025008", + "duration": 0.010925, + "end_time": "2023-01-25T18:40:13.333984", "exception": false, - "start_time": "2023-01-24T16:34:08.016760", + "start_time": "2023-01-25T18:40:13.323059", "status": "completed" }, "pycharm": { @@ -697,16 +697,16 @@ "id": "ea9c63b2", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:34:08.042914Z", - "iopub.status.busy": "2023-01-24T16:34:08.042419Z", - "iopub.status.idle": "2023-01-24T16:34:08.914480Z", - "shell.execute_reply": "2023-01-24T16:34:08.913820Z" + "iopub.execute_input": "2023-01-25T18:40:13.356503Z", + "iopub.status.busy": "2023-01-25T18:40:13.355889Z", + "iopub.status.idle": "2023-01-25T18:40:14.610263Z", + "shell.execute_reply": "2023-01-25T18:40:14.609383Z" }, "papermill": { - "duration": 0.882797, - "end_time": "2023-01-24T16:34:08.916046", + "duration": 1.268119, + "end_time": "2023-01-25T18:40:14.612282", "exception": false, - "start_time": "2023-01-24T16:34:08.033249", + "start_time": "2023-01-25T18:40:13.344163", "status": "completed" }, "pycharm": { @@ -875,10 +875,10 @@ "id": "aa5218fc", "metadata": { "papermill": { - "duration": 0.008884, - "end_time": "2023-01-24T16:34:08.933921", + "duration": 0.01145, + "end_time": "2023-01-25T18:40:14.634862", "exception": false, - "start_time": "2023-01-24T16:34:08.925037", + "start_time": "2023-01-25T18:40:14.623412", "status": "completed" }, "pycharm": { @@ -905,16 +905,16 @@ "id": "778ca4e5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:34:08.952467Z", - "iopub.status.busy": "2023-01-24T16:34:08.951819Z", - "iopub.status.idle": "2023-01-24T16:34:09.668591Z", - "shell.execute_reply": "2023-01-24T16:34:09.667908Z" + "iopub.execute_input": "2023-01-25T18:40:14.658420Z", + "iopub.status.busy": "2023-01-25T18:40:14.657687Z", + "iopub.status.idle": "2023-01-25T18:40:15.665056Z", + "shell.execute_reply": "2023-01-25T18:40:15.663963Z" }, "papermill": { - "duration": 0.728415, - "end_time": "2023-01-24T16:34:09.670817", + "duration": 1.022649, + "end_time": "2023-01-25T18:40:15.668332", "exception": false, - "start_time": "2023-01-24T16:34:08.942402", + "start_time": "2023-01-25T18:40:14.645683", "status": "completed" }, "pycharm": { @@ -1141,10 +1141,10 @@ "id": "1d1695dd", "metadata": { "papermill": { - "duration": 0.00943, - "end_time": "2023-01-24T16:34:09.690170", + "duration": 0.013449, + "end_time": "2023-01-25T18:40:15.693440", "exception": false, - "start_time": "2023-01-24T16:34:09.680740", + "start_time": "2023-01-25T18:40:15.679991", "status": "completed" }, "pycharm": { @@ -1164,16 +1164,16 @@ "id": "da0f9e7b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:34:09.709486Z", - "iopub.status.busy": "2023-01-24T16:34:09.708768Z", - "iopub.status.idle": "2023-01-24T16:34:10.322324Z", - "shell.execute_reply": "2023-01-24T16:34:10.321749Z" + "iopub.execute_input": "2023-01-25T18:40:15.718741Z", + "iopub.status.busy": "2023-01-25T18:40:15.717820Z", + "iopub.status.idle": "2023-01-25T18:40:16.589322Z", + "shell.execute_reply": "2023-01-25T18:40:16.588402Z" }, "papermill": { - "duration": 0.625058, - "end_time": "2023-01-24T16:34:10.324096", + "duration": 0.886406, + "end_time": "2023-01-25T18:40:16.591536", "exception": false, - "start_time": "2023-01-24T16:34:09.699038", + "start_time": "2023-01-25T18:40:15.705130", "status": "completed" }, "pycharm": { @@ -1201,10 +1201,10 @@ "id": "6b30f0d3", "metadata": { "papermill": { - "duration": 0.008969, - "end_time": "2023-01-24T16:34:10.342431", + "duration": 0.010841, + "end_time": "2023-01-25T18:40:16.613639", "exception": false, - "start_time": "2023-01-24T16:34:10.333462", + "start_time": "2023-01-25T18:40:16.602798", "status": "completed" }, "pycharm": { @@ -1232,16 +1232,16 @@ "id": "298e9bca", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:34:10.361839Z", - "iopub.status.busy": "2023-01-24T16:34:10.361159Z", - "iopub.status.idle": "2023-01-24T16:34:11.065270Z", - "shell.execute_reply": "2023-01-24T16:34:11.064687Z" + "iopub.execute_input": "2023-01-25T18:40:16.638172Z", + "iopub.status.busy": "2023-01-25T18:40:16.637253Z", + "iopub.status.idle": "2023-01-25T18:40:17.702308Z", + "shell.execute_reply": "2023-01-25T18:40:17.701349Z" }, "papermill": { - "duration": 0.71572, - "end_time": "2023-01-24T16:34:11.067075", + "duration": 1.079968, + "end_time": "2023-01-25T18:40:17.704441", "exception": false, - "start_time": "2023-01-24T16:34:10.351355", + "start_time": "2023-01-25T18:40:16.624473", "status": "completed" }, "pycharm": { @@ -1271,10 +1271,10 @@ "id": "500cf35c", "metadata": { "papermill": { - "duration": 0.009013, - "end_time": "2023-01-24T16:34:11.085437", + "duration": 0.010943, + "end_time": "2023-01-25T18:40:17.727106", "exception": false, - "start_time": "2023-01-24T16:34:11.076424", + "start_time": "2023-01-25T18:40:17.716163", "status": "completed" }, "pycharm": { @@ -1294,16 +1294,16 @@ "id": "f2f1e0dc", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:34:11.104712Z", - "iopub.status.busy": "2023-01-24T16:34:11.104210Z", - "iopub.status.idle": "2023-01-24T16:36:51.259401Z", - "shell.execute_reply": "2023-01-24T16:36:51.258820Z" + "iopub.execute_input": "2023-01-25T18:40:17.753779Z", + "iopub.status.busy": "2023-01-25T18:40:17.752952Z", + "iopub.status.idle": "2023-01-25T18:43:22.862036Z", + "shell.execute_reply": "2023-01-25T18:43:22.861122Z" }, "papermill": { - "duration": 160.175528, - "end_time": "2023-01-24T16:36:51.269858", + "duration": 185.133917, + "end_time": "2023-01-25T18:43:22.873252", "exception": false, - "start_time": "2023-01-24T16:34:11.094330", + "start_time": "2023-01-25T18:40:17.739335", "status": "completed" }, "pycharm": { @@ -1335,10 +1335,10 @@ "id": "a1a54275", "metadata": { "papermill": { - "duration": 0.00903, - "end_time": "2023-01-24T16:36:51.288219", + "duration": 0.012483, + "end_time": "2023-01-25T18:43:22.897098", "exception": false, - "start_time": "2023-01-24T16:36:51.279189", + "start_time": "2023-01-25T18:43:22.884615", "status": "completed" }, "pycharm": { @@ -1358,16 +1358,16 @@ "id": "0d1953e2", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:36:51.307843Z", - "iopub.status.busy": "2023-01-24T16:36:51.307296Z", - "iopub.status.idle": "2023-01-24T16:36:55.311509Z", - "shell.execute_reply": "2023-01-24T16:36:55.310944Z" + "iopub.execute_input": "2023-01-25T18:43:22.923155Z", + "iopub.status.busy": "2023-01-25T18:43:22.922575Z", + "iopub.status.idle": "2023-01-25T18:43:28.431885Z", + "shell.execute_reply": "2023-01-25T18:43:28.430896Z" }, "papermill": { - "duration": 4.015871, - "end_time": "2023-01-24T16:36:55.313108", + "duration": 5.525198, + "end_time": "2023-01-25T18:43:28.434146", "exception": false, - "start_time": "2023-01-24T16:36:51.297237", + "start_time": "2023-01-25T18:43:22.908948", "status": "completed" }, "pycharm": { @@ -1403,10 +1403,10 @@ "id": "115b9769", "metadata": { "papermill": { - "duration": 0.009217, - "end_time": "2023-01-24T16:36:55.331813", + "duration": 0.011548, + "end_time": "2023-01-25T18:43:28.458385", "exception": false, - "start_time": "2023-01-24T16:36:55.322596", + "start_time": "2023-01-25T18:43:28.446837", "status": "completed" }, "pycharm": { @@ -1426,10 +1426,10 @@ "id": "d8375233", "metadata": { "papermill": { - "duration": 0.008962, - "end_time": "2023-01-24T16:36:55.349836", + "duration": 0.012093, + "end_time": "2023-01-25T18:43:28.481495", "exception": false, - "start_time": "2023-01-24T16:36:55.340874", + "start_time": "2023-01-25T18:43:28.469402", "status": "completed" }, "pycharm": { @@ -1453,16 +1453,16 @@ "id": "681dff74", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:36:55.369444Z", - "iopub.status.busy": "2023-01-24T16:36:55.368906Z", - "iopub.status.idle": "2023-01-24T16:38:44.445151Z", - "shell.execute_reply": "2023-01-24T16:38:44.444185Z" + "iopub.execute_input": "2023-01-25T18:43:28.506772Z", + "iopub.status.busy": "2023-01-25T18:43:28.506169Z", + "iopub.status.idle": "2023-01-25T18:44:32.853289Z", + "shell.execute_reply": "2023-01-25T18:44:32.851960Z" }, "papermill": { - "duration": 109.088282, - "end_time": "2023-01-24T16:38:44.447114", + "duration": 64.362672, + "end_time": "2023-01-25T18:44:32.855320", "exception": false, - "start_time": "2023-01-24T16:36:55.358832", + "start_time": "2023-01-25T18:43:28.492648", "status": "completed" }, "pycharm": { @@ -1476,7 +1476,7 @@ "output_type": "stream", "text": [ "WARNING:root:downloading a 2723.916MiB file from http://api.brain-map.org//api/v2/well_known_file_download/1026124469\n", - "Downloading: 100%|██████████| 2.86G/2.86G [01:46<00:00, 26.8MB/s]\n" + "Downloading: 100%|██████████| 2.86G/2.86G [01:01<00:00, 46.6MB/s]\n" ] }, { @@ -1502,10 +1502,10 @@ "id": "7f7a129c", "metadata": { "papermill": { - "duration": 0.058769, - "end_time": "2023-01-24T16:38:44.565083", + "duration": 0.046001, + "end_time": "2023-01-25T18:44:32.948677", "exception": false, - "start_time": "2023-01-24T16:38:44.506314", + "start_time": "2023-01-25T18:44:32.902676", "status": "completed" }, "pycharm": { @@ -1527,16 +1527,16 @@ "id": "6fd47ae4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:38:44.684018Z", - "iopub.status.busy": "2023-01-24T16:38:44.683743Z", - "iopub.status.idle": "2023-01-24T16:40:52.589226Z", - "shell.execute_reply": "2023-01-24T16:40:52.541993Z" + "iopub.execute_input": "2023-01-25T18:44:33.042724Z", + "iopub.status.busy": "2023-01-25T18:44:33.042095Z", + "iopub.status.idle": "2023-01-25T18:46:27.085678Z", + "shell.execute_reply": "2023-01-25T18:46:27.001982Z" }, "papermill": { - "duration": 127.99948, - "end_time": "2023-01-24T16:40:52.623112", + "duration": 114.128688, + "end_time": "2023-01-25T18:46:27.122556", "exception": false, - "start_time": "2023-01-24T16:38:44.623632", + "start_time": "2023-01-25T18:44:32.993868", "status": "completed" }, "pycharm": { @@ -1550,7 +1550,7 @@ "output_type": "stream", "text": [ "WARNING:root:downloading a 1967.383MiB file from http://api.brain-map.org//api/v2/well_known_file_download/1026124481\n", - "Downloading: 100%|██████████| 2.06G/2.06G [01:20<00:00, 25.5MB/s]\n" + "Downloading: 100%|██████████| 2.06G/2.06G [00:44<00:00, 46.7MB/s]\n" ] } ], @@ -1565,10 +1565,10 @@ "id": "adfd255a", "metadata": { "papermill": { - "duration": 0.103422, - "end_time": "2023-01-24T16:40:52.909196", + "duration": 0.08849, + "end_time": "2023-01-25T18:46:27.393255", "exception": false, - "start_time": "2023-01-24T16:40:52.805774", + "start_time": "2023-01-25T18:46:27.304765", "status": "completed" }, "pycharm": { @@ -1585,10 +1585,10 @@ "id": "9b0aeb80", "metadata": { "papermill": { - "duration": 0.098359, - "end_time": "2023-01-24T16:40:53.105070", + "duration": 0.073426, + "end_time": "2023-01-25T18:46:27.543465", "exception": false, - "start_time": "2023-01-24T16:40:53.006711", + "start_time": "2023-01-25T18:46:27.470039", "status": "completed" }, "pycharm": { @@ -1610,16 +1610,16 @@ "id": "edc422b4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:40:53.377428Z", - "iopub.status.busy": "2023-01-24T16:40:53.374798Z", - "iopub.status.idle": "2023-01-24T16:40:53.519261Z", - "shell.execute_reply": "2023-01-24T16:40:53.516177Z" + "iopub.execute_input": "2023-01-25T18:46:27.796965Z", + "iopub.status.busy": "2023-01-25T18:46:27.790145Z", + "iopub.status.idle": "2023-01-25T18:46:27.972593Z", + "shell.execute_reply": "2023-01-25T18:46:27.971594Z" }, "papermill": { - "duration": 0.322229, - "end_time": "2023-01-24T16:40:53.524711", + "duration": 0.357669, + "end_time": "2023-01-25T18:46:27.977902", "exception": false, - "start_time": "2023-01-24T16:40:53.202482", + "start_time": "2023-01-25T18:46:27.620233", "status": "completed" }, "pycharm": { @@ -1667,10 +1667,10 @@ "id": "58e81eff", "metadata": { "papermill": { - "duration": 0.096707, - "end_time": "2023-01-24T16:40:53.747833", + "duration": 0.115141, + "end_time": "2023-01-25T18:46:28.183243", "exception": false, - "start_time": "2023-01-24T16:40:53.651126", + "start_time": "2023-01-25T18:46:28.068102", "status": "completed" }, "pycharm": { @@ -1687,10 +1687,10 @@ "id": "53339a6d", "metadata": { "papermill": { - "duration": 0.097024, - "end_time": "2023-01-24T16:40:54.390478", + "duration": 0.081206, + "end_time": "2023-01-25T18:46:28.352825", "exception": false, - "start_time": "2023-01-24T16:40:54.293454", + "start_time": "2023-01-25T18:46:28.271619", "status": "completed" }, "pycharm": { @@ -1710,16 +1710,16 @@ "id": "d4ae45de", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:40:54.587406Z", - "iopub.status.busy": "2023-01-24T16:40:54.586675Z", - "iopub.status.idle": "2023-01-24T16:40:54.626412Z", - "shell.execute_reply": "2023-01-24T16:40:54.625757Z" + "iopub.execute_input": "2023-01-25T18:46:28.544925Z", + "iopub.status.busy": "2023-01-25T18:46:28.544069Z", + "iopub.status.idle": "2023-01-25T18:46:28.624562Z", + "shell.execute_reply": "2023-01-25T18:46:28.623160Z" }, "papermill": { - "duration": 0.140627, - "end_time": "2023-01-24T16:40:54.628633", + "duration": 0.178613, + "end_time": "2023-01-25T18:46:28.628663", "exception": false, - "start_time": "2023-01-24T16:40:54.488006", + "start_time": "2023-01-25T18:46:28.450050", "status": "completed" }, "pycharm": { @@ -1737,10 +1737,10 @@ "id": "33b55412", "metadata": { "papermill": { - "duration": 0.096144, - "end_time": "2023-01-24T16:40:54.821578", + "duration": 0.074797, + "end_time": "2023-01-25T18:46:28.786116", "exception": false, - "start_time": "2023-01-24T16:40:54.725434", + "start_time": "2023-01-25T18:46:28.711319", "status": "completed" }, "pycharm": { @@ -1759,10 +1759,10 @@ "id": "bbf77a21", "metadata": { "papermill": { - "duration": 0.096566, - "end_time": "2023-01-24T16:40:55.014917", + "duration": 0.076034, + "end_time": "2023-01-25T18:46:28.938444", "exception": false, - "start_time": "2023-01-24T16:40:54.918351", + "start_time": "2023-01-25T18:46:28.862410", "status": "completed" }, "pycharm": { @@ -1779,10 +1779,10 @@ "id": "434220ac", "metadata": { "papermill": { - "duration": 0.09701, - "end_time": "2023-01-24T16:40:55.209101", + "duration": 0.078023, + "end_time": "2023-01-25T18:46:29.088482", "exception": false, - "start_time": "2023-01-24T16:40:55.112091", + "start_time": "2023-01-25T18:46:29.010459", "status": "completed" }, "pycharm": { @@ -1802,16 +1802,16 @@ "id": "51c15b73", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:40:55.404468Z", - "iopub.status.busy": "2023-01-24T16:40:55.403910Z", - "iopub.status.idle": "2023-01-24T16:40:55.416215Z", - "shell.execute_reply": "2023-01-24T16:40:55.415552Z" + "iopub.execute_input": "2023-01-25T18:46:29.253298Z", + "iopub.status.busy": "2023-01-25T18:46:29.252478Z", + "iopub.status.idle": "2023-01-25T18:46:29.275865Z", + "shell.execute_reply": "2023-01-25T18:46:29.274880Z" }, "papermill": { - "duration": 0.114213, - "end_time": "2023-01-24T16:40:55.419524", + "duration": 0.114158, + "end_time": "2023-01-25T18:46:29.280104", "exception": false, - "start_time": "2023-01-24T16:40:55.305311", + "start_time": "2023-01-25T18:46:29.165946", "status": "completed" }, "pycharm": { @@ -1834,16 +1834,16 @@ "id": "49fdecb5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:40:55.614982Z", - "iopub.status.busy": "2023-01-24T16:40:55.614510Z", - "iopub.status.idle": "2023-01-24T16:40:57.734497Z", - "shell.execute_reply": "2023-01-24T16:40:57.733815Z" + "iopub.execute_input": "2023-01-25T18:46:29.430814Z", + "iopub.status.busy": "2023-01-25T18:46:29.430298Z", + "iopub.status.idle": "2023-01-25T18:46:32.865752Z", + "shell.execute_reply": "2023-01-25T18:46:32.864610Z" }, "papermill": { - "duration": 2.220208, - "end_time": "2023-01-24T16:40:57.736767", + "duration": 3.515725, + "end_time": "2023-01-25T18:46:32.869219", "exception": false, - "start_time": "2023-01-24T16:40:55.516559", + "start_time": "2023-01-25T18:46:29.353494", "status": "completed" }, "pycharm": { @@ -1864,16 +1864,16 @@ "id": "71ed43a0", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:40:57.931950Z", - "iopub.status.busy": "2023-01-24T16:40:57.931410Z", - "iopub.status.idle": "2023-01-24T16:41:04.397978Z", - "shell.execute_reply": "2023-01-24T16:41:04.397363Z" + "iopub.execute_input": "2023-01-25T18:46:33.021962Z", + "iopub.status.busy": "2023-01-25T18:46:33.021548Z", + "iopub.status.idle": "2023-01-25T18:46:37.488714Z", + "shell.execute_reply": "2023-01-25T18:46:37.487511Z" }, "papermill": { - "duration": 6.566046, - "end_time": "2023-01-24T16:41:04.399562", + "duration": 4.544779, + "end_time": "2023-01-25T18:46:37.491671", "exception": false, - "start_time": "2023-01-24T16:40:57.833516", + "start_time": "2023-01-25T18:46:32.946892", "status": "completed" }, "pycharm": { @@ -1973,10 +1973,10 @@ "id": "48f4fbba", "metadata": { "papermill": { - "duration": 0.096351, - "end_time": "2023-01-24T16:41:04.592960", + "duration": 0.07622, + "end_time": "2023-01-25T18:46:37.641917", "exception": false, - "start_time": "2023-01-24T16:41:04.496609", + "start_time": "2023-01-25T18:46:37.565697", "status": "completed" }, "pycharm": { @@ -2010,16 +2010,16 @@ "id": "19129285", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:04.787753Z", - "iopub.status.busy": "2023-01-24T16:41:04.787197Z", - "iopub.status.idle": "2023-01-24T16:41:04.791182Z", - "shell.execute_reply": "2023-01-24T16:41:04.790499Z" + "iopub.execute_input": "2023-01-25T18:46:37.796612Z", + "iopub.status.busy": "2023-01-25T18:46:37.794022Z", + "iopub.status.idle": "2023-01-25T18:46:37.803497Z", + "shell.execute_reply": "2023-01-25T18:46:37.802340Z" }, "papermill": { - "duration": 0.103631, - "end_time": "2023-01-24T16:41:04.792883", + "duration": 0.088486, + "end_time": "2023-01-25T18:46:37.806139", "exception": false, - "start_time": "2023-01-24T16:41:04.689252", + "start_time": "2023-01-25T18:46:37.717653", "status": "completed" }, "pycharm": { @@ -2045,10 +2045,10 @@ "id": "c99ad34f", "metadata": { "papermill": { - "duration": 0.096292, - "end_time": "2023-01-24T16:41:04.985282", + "duration": 0.073616, + "end_time": "2023-01-25T18:46:37.952383", "exception": false, - "start_time": "2023-01-24T16:41:04.888990", + "start_time": "2023-01-25T18:46:37.878767", "status": "completed" }, "pycharm": { @@ -2068,16 +2068,16 @@ "id": "28a3b1de", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:05.212186Z", - "iopub.status.busy": "2023-01-24T16:41:05.211458Z", - "iopub.status.idle": "2023-01-24T16:41:34.356789Z", - "shell.execute_reply": "2023-01-24T16:41:34.355507Z" + "iopub.execute_input": "2023-01-25T18:46:38.112640Z", + "iopub.status.busy": "2023-01-25T18:46:38.111976Z", + "iopub.status.idle": "2023-01-25T18:46:58.801551Z", + "shell.execute_reply": "2023-01-25T18:46:58.800347Z" }, "papermill": { - "duration": 29.244416, - "end_time": "2023-01-24T16:41:34.358427", + "duration": 20.779556, + "end_time": "2023-01-25T18:46:58.805861", "exception": false, - "start_time": "2023-01-24T16:41:05.114011", + "start_time": "2023-01-25T18:46:38.026305", "status": "completed" }, "pycharm": { @@ -2473,18 +2473,18 @@ }, "papermill": { "default_parameters": {}, - "duration": 652.194146, - "end_time": "2023-01-24T16:41:37.084954", + "duration": 600.901616, + "end_time": "2023-01-25T18:47:01.790497", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/ecephys_data_access.ipynb", - "output_path": "/tmp/tmpnmiov0xg/scratch_nb.ipynb", + "output_path": "/tmp/tmp3p54em6p/scratch_nb.ipynb", "parameters": { "DOWNLOAD_COMPLETE_DATASET": false, - "output_dir": "/tmp/tmpnmiov0xg", + "output_dir": "/tmp/tmp3p54em6p", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T16:30:44.890808", + "start_time": "2023-01-25T18:37:00.888881", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/ecephys_lfp_analysis.ipynb b/doc_template/examples_root/examples/nb/ecephys_lfp_analysis.ipynb index 29bda19bd..d57788b10 100644 --- a/doc_template/examples_root/examples/nb/ecephys_lfp_analysis.ipynb +++ b/doc_template/examples_root/examples/nb/ecephys_lfp_analysis.ipynb @@ -5,10 +5,10 @@ "id": "ae902862", "metadata": { "papermill": { - "duration": 0.010296, - "end_time": "2023-01-24T17:40:22.683612", + "duration": 0.013087, + "end_time": "2023-01-25T19:55:06.021959", "exception": false, - "start_time": "2023-01-24T17:40:22.673316", + "start_time": "2023-01-25T19:55:06.008872", "status": "completed" }, "tags": [] @@ -38,10 +38,10 @@ "id": "4822c3c2", "metadata": { "papermill": { - "duration": 0.008929, - "end_time": "2023-01-24T17:40:22.701819", + "duration": 0.011406, + "end_time": "2023-01-25T19:55:06.044519", "exception": false, - "start_time": "2023-01-24T17:40:22.692890", + "start_time": "2023-01-25T19:55:06.033113", "status": "completed" }, "tags": [] @@ -56,16 +56,16 @@ "id": "fad704f4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:40:22.721286Z", - "iopub.status.busy": "2023-01-24T17:40:22.720722Z", - "iopub.status.idle": "2023-01-24T17:40:30.566722Z", - "shell.execute_reply": "2023-01-24T17:40:30.566042Z" + "iopub.execute_input": "2023-01-25T19:55:06.070264Z", + "iopub.status.busy": "2023-01-25T19:55:06.069907Z", + "iopub.status.idle": "2023-01-25T19:55:16.659985Z", + "shell.execute_reply": "2023-01-25T19:55:16.658571Z" }, "papermill": { - "duration": 7.858218, - "end_time": "2023-01-24T17:40:30.568917", + "duration": 10.606141, + "end_time": "2023-01-25T19:55:16.662859", "exception": false, - "start_time": "2023-01-24T17:40:22.710699", + "start_time": "2023-01-25T19:55:06.056718", "status": "completed" }, "tags": [] @@ -98,16 +98,16 @@ "id": "5d62bae9", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:40:30.589170Z", - "iopub.status.busy": "2023-01-24T17:40:30.588462Z", - "iopub.status.idle": "2023-01-24T17:40:30.591993Z", - "shell.execute_reply": "2023-01-24T17:40:30.591361Z" + "iopub.execute_input": "2023-01-25T19:55:16.689497Z", + "iopub.status.busy": "2023-01-25T19:55:16.688611Z", + "iopub.status.idle": "2023-01-25T19:55:16.693769Z", + "shell.execute_reply": "2023-01-25T19:55:16.692921Z" }, "papermill": { - "duration": 0.015201, - "end_time": "2023-01-24T17:40:30.593615", + "duration": 0.021074, + "end_time": "2023-01-25T19:55:16.696095", "exception": false, - "start_time": "2023-01-24T17:40:30.578414", + "start_time": "2023-01-25T19:55:16.675021", "status": "completed" }, "tags": [ @@ -125,10 +125,10 @@ "id": "7c1d5693", "metadata": { "papermill": { - "duration": 0.009126, - "end_time": "2023-01-24T17:40:30.635327", + "duration": 0.010967, + "end_time": "2023-01-25T19:55:16.750437", "exception": false, - "start_time": "2023-01-24T17:40:30.626201", + "start_time": "2023-01-25T19:55:16.739470", "status": "completed" }, "tags": [] @@ -143,16 +143,16 @@ "id": "aaa3c0d1", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:40:30.654417Z", - "iopub.status.busy": "2023-01-24T17:40:30.653969Z", - "iopub.status.idle": "2023-01-24T17:40:30.658113Z", - "shell.execute_reply": "2023-01-24T17:40:30.657470Z" + "iopub.execute_input": "2023-01-25T19:55:16.775626Z", + "iopub.status.busy": "2023-01-25T19:55:16.774927Z", + "iopub.status.idle": "2023-01-25T19:55:16.785750Z", + "shell.execute_reply": "2023-01-25T19:55:16.784818Z" }, "papermill": { - "duration": 0.015274, - "end_time": "2023-01-24T17:40:30.659584", + "duration": 0.026734, + "end_time": "2023-01-25T19:55:16.789084", "exception": false, - "start_time": "2023-01-24T17:40:30.644310", + "start_time": "2023-01-25T19:55:16.762350", "status": "completed" }, "tags": [] @@ -169,10 +169,10 @@ "id": "e6a6a94a", "metadata": { "papermill": { - "duration": 0.008922, - "end_time": "2023-01-24T17:40:30.677392", + "duration": 0.011717, + "end_time": "2023-01-25T19:55:16.813287", "exception": false, - "start_time": "2023-01-24T17:40:30.668470", + "start_time": "2023-01-25T19:55:16.801570", "status": "completed" }, "tags": [] @@ -187,16 +187,16 @@ "id": "9e4d037d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:40:30.696762Z", - "iopub.status.busy": "2023-01-24T17:40:30.696202Z", - "iopub.status.idle": "2023-01-24T17:45:33.558011Z", - "shell.execute_reply": "2023-01-24T17:45:33.557355Z" + "iopub.execute_input": "2023-01-25T19:55:16.837504Z", + "iopub.status.busy": "2023-01-25T19:55:16.836837Z", + "iopub.status.idle": "2023-01-25T19:59:22.590625Z", + "shell.execute_reply": "2023-01-25T19:59:22.589057Z" }, "papermill": { - "duration": 302.873476, - "end_time": "2023-01-24T17:45:33.559907", + "duration": 245.768849, + "end_time": "2023-01-25T19:59:22.593144", "exception": false, - "start_time": "2023-01-24T17:40:30.686431", + "start_time": "2023-01-25T19:55:16.824295", "status": "completed" }, "tags": [] @@ -207,7 +207,7 @@ "output_type": "stream", "text": [ "WARNING:root:downloading a 2723.916MiB file from http://api.brain-map.org//api/v2/well_known_file_download/1026124469\n", - "Downloading: 100%|██████████| 2.86G/2.86G [01:49<00:00, 26.1MB/s]\n" + "Downloading: 100%|██████████| 2.86G/2.86G [01:02<00:00, 45.8MB/s]\n" ] } ], @@ -222,10 +222,10 @@ "id": "3d6bcde9", "metadata": { "papermill": { - "duration": 0.059211, - "end_time": "2023-01-24T17:45:33.681390", + "duration": 0.043893, + "end_time": "2023-01-25T19:59:22.681981", "exception": false, - "start_time": "2023-01-24T17:45:33.622179", + "start_time": "2023-01-25T19:59:22.638088", "status": "completed" }, "tags": [] @@ -239,10 +239,10 @@ "id": "f6b8a2c2", "metadata": { "papermill": { - "duration": 0.063368, - "end_time": "2023-01-24T17:45:33.804128", + "duration": 0.042515, + "end_time": "2023-01-25T19:59:22.770125", "exception": false, - "start_time": "2023-01-24T17:45:33.740760", + "start_time": "2023-01-25T19:59:22.727610", "status": "completed" }, "tags": [] @@ -257,16 +257,16 @@ "id": "156bc137", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:45:33.924442Z", - "iopub.status.busy": "2023-01-24T17:45:33.923733Z", - "iopub.status.idle": "2023-01-24T17:45:34.274741Z", - "shell.execute_reply": "2023-01-24T17:45:34.274119Z" + "iopub.execute_input": "2023-01-25T19:59:22.872539Z", + "iopub.status.busy": "2023-01-25T19:59:22.871757Z", + "iopub.status.idle": "2023-01-25T19:59:23.418693Z", + "shell.execute_reply": "2023-01-25T19:59:23.416920Z" }, "papermill": { - "duration": 0.413316, - "end_time": "2023-01-24T17:45:34.276665", + "duration": 0.600558, + "end_time": "2023-01-25T19:59:23.420938", "exception": false, - "start_time": "2023-01-24T17:45:33.863349", + "start_time": "2023-01-25T19:59:22.820380", "status": "completed" }, "tags": [] @@ -395,10 +395,10 @@ "id": "1e9f2502", "metadata": { "papermill": { - "duration": 0.059804, - "end_time": "2023-01-24T17:45:34.397121", + "duration": 0.045857, + "end_time": "2023-01-25T19:59:23.515261", "exception": false, - "start_time": "2023-01-24T17:45:34.337317", + "start_time": "2023-01-25T19:59:23.469404", "status": "completed" }, "tags": [] @@ -413,16 +413,16 @@ "id": "76c7a102", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:45:34.517933Z", - "iopub.status.busy": "2023-01-24T17:45:34.517212Z", - "iopub.status.idle": "2023-01-24T17:45:35.391180Z", - "shell.execute_reply": "2023-01-24T17:45:35.390537Z" + "iopub.execute_input": "2023-01-25T19:59:23.614784Z", + "iopub.status.busy": "2023-01-25T19:59:23.614375Z", + "iopub.status.idle": "2023-01-25T19:59:24.766820Z", + "shell.execute_reply": "2023-01-25T19:59:24.765836Z" }, "papermill": { - "duration": 0.935957, - "end_time": "2023-01-24T17:45:35.392670", + "duration": 1.203695, + "end_time": "2023-01-25T19:59:24.769034", "exception": false, - "start_time": "2023-01-24T17:45:34.456713", + "start_time": "2023-01-25T19:59:23.565339", "status": "completed" }, "tags": [] @@ -451,10 +451,10 @@ "id": "20ad026c", "metadata": { "papermill": { - "duration": 0.059668, - "end_time": "2023-01-24T17:45:35.513007", + "duration": 0.044781, + "end_time": "2023-01-25T19:59:24.860257", "exception": false, - "start_time": "2023-01-24T17:45:35.453339", + "start_time": "2023-01-25T19:59:24.815476", "status": "completed" }, "tags": [] @@ -473,16 +473,16 @@ "id": "a1c4ac35", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:45:35.634524Z", - "iopub.status.busy": "2023-01-24T17:45:35.633961Z", - "iopub.status.idle": "2023-01-24T17:45:37.242045Z", - "shell.execute_reply": "2023-01-24T17:45:37.241340Z" + "iopub.execute_input": "2023-01-25T19:59:24.955087Z", + "iopub.status.busy": "2023-01-25T19:59:24.954274Z", + "iopub.status.idle": "2023-01-25T19:59:27.253520Z", + "shell.execute_reply": "2023-01-25T19:59:27.252269Z" }, "papermill": { - "duration": 1.67078, - "end_time": "2023-01-24T17:45:37.243884", + "duration": 2.350562, + "end_time": "2023-01-25T19:59:27.255749", "exception": false, - "start_time": "2023-01-24T17:45:35.573104", + "start_time": "2023-01-25T19:59:24.905187", "status": "completed" }, "tags": [] @@ -513,10 +513,10 @@ "id": "ebbf6a6d", "metadata": { "papermill": { - "duration": 0.059932, - "end_time": "2023-01-24T17:45:37.364231", + "duration": 0.043112, + "end_time": "2023-01-25T19:59:27.345122", "exception": false, - "start_time": "2023-01-24T17:45:37.304299", + "start_time": "2023-01-25T19:59:27.302010", "status": "completed" }, "tags": [] @@ -531,16 +531,16 @@ "id": "8cc7d906", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:45:37.485153Z", - "iopub.status.busy": "2023-01-24T17:45:37.484592Z", - "iopub.status.idle": "2023-01-24T17:45:37.655048Z", - "shell.execute_reply": "2023-01-24T17:45:37.653356Z" + "iopub.execute_input": "2023-01-25T19:59:27.438335Z", + "iopub.status.busy": "2023-01-25T19:59:27.437768Z", + "iopub.status.idle": "2023-01-25T19:59:27.675364Z", + "shell.execute_reply": "2023-01-25T19:59:27.674170Z" }, "papermill": { - "duration": 0.232902, - "end_time": "2023-01-24T17:45:37.656808", + "duration": 0.290745, + "end_time": "2023-01-25T19:59:27.680953", "exception": false, - "start_time": "2023-01-24T17:45:37.423906", + "start_time": "2023-01-25T19:59:27.390208", "status": "completed" }, "tags": [] @@ -575,10 +575,10 @@ "id": "a5606db5", "metadata": { "papermill": { - "duration": 0.064182, - "end_time": "2023-01-24T17:45:37.784881", + "duration": 0.053598, + "end_time": "2023-01-25T19:59:27.788784", "exception": false, - "start_time": "2023-01-24T17:45:37.720699", + "start_time": "2023-01-25T19:59:27.735186", "status": "completed" }, "tags": [] @@ -599,16 +599,16 @@ "id": "060011aa", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:45:37.909404Z", - "iopub.status.busy": "2023-01-24T17:45:37.908690Z", - "iopub.status.idle": "2023-01-24T17:45:37.915172Z", - "shell.execute_reply": "2023-01-24T17:45:37.914525Z" + "iopub.execute_input": "2023-01-25T19:59:27.887329Z", + "iopub.status.busy": "2023-01-25T19:59:27.886496Z", + "iopub.status.idle": "2023-01-25T19:59:27.895210Z", + "shell.execute_reply": "2023-01-25T19:59:27.894284Z" }, "papermill": { - "duration": 0.070401, - "end_time": "2023-01-24T17:45:37.916583", + "duration": 0.058023, + "end_time": "2023-01-25T19:59:27.897110", "exception": false, - "start_time": "2023-01-24T17:45:37.846182", + "start_time": "2023-01-25T19:59:27.839087", "status": "completed" }, "tags": [] @@ -634,10 +634,10 @@ "id": "c23c80a5", "metadata": { "papermill": { - "duration": 0.06119, - "end_time": "2023-01-24T17:45:38.039391", + "duration": 0.04491, + "end_time": "2023-01-25T19:59:27.988074", "exception": false, - "start_time": "2023-01-24T17:45:37.978201", + "start_time": "2023-01-25T19:59:27.943164", "status": "completed" }, "tags": [] @@ -654,16 +654,16 @@ "id": "74df4328", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:45:38.163613Z", - "iopub.status.busy": "2023-01-24T17:45:38.163049Z", - "iopub.status.idle": "2023-01-24T17:45:38.172604Z", - "shell.execute_reply": "2023-01-24T17:45:38.171960Z" + "iopub.execute_input": "2023-01-25T19:59:28.089032Z", + "iopub.status.busy": "2023-01-25T19:59:28.087996Z", + "iopub.status.idle": "2023-01-25T19:59:28.101472Z", + "shell.execute_reply": "2023-01-25T19:59:28.100625Z" }, "papermill": { - "duration": 0.073453, - "end_time": "2023-01-24T17:45:38.174036", + "duration": 0.070375, + "end_time": "2023-01-25T19:59:28.103400", "exception": false, - "start_time": "2023-01-24T17:45:38.100583", + "start_time": "2023-01-25T19:59:28.033025", "status": "completed" }, "tags": [] @@ -696,10 +696,10 @@ "id": "11de0c24", "metadata": { "papermill": { - "duration": 0.060979, - "end_time": "2023-01-24T17:45:38.296467", + "duration": 0.046735, + "end_time": "2023-01-25T19:59:28.199802", "exception": false, - "start_time": "2023-01-24T17:45:38.235488", + "start_time": "2023-01-25T19:59:28.153067", "status": "completed" }, "tags": [] @@ -713,10 +713,10 @@ "id": "893b8f42", "metadata": { "papermill": { - "duration": 0.060887, - "end_time": "2023-01-24T17:45:38.418607", + "duration": 0.046971, + "end_time": "2023-01-25T19:59:28.293646", "exception": false, - "start_time": "2023-01-24T17:45:38.357720", + "start_time": "2023-01-25T19:59:28.246675", "status": "completed" }, "tags": [] @@ -730,10 +730,10 @@ "id": "3e91f67e", "metadata": { "papermill": { - "duration": 0.061058, - "end_time": "2023-01-24T17:45:38.541156", + "duration": 0.045728, + "end_time": "2023-01-25T19:59:28.384438", "exception": false, - "start_time": "2023-01-24T17:45:38.480098", + "start_time": "2023-01-25T19:59:28.338710", "status": "completed" }, "tags": [] @@ -748,16 +748,16 @@ "id": "9c219095", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:45:38.665274Z", - "iopub.status.busy": "2023-01-24T17:45:38.664714Z", - "iopub.status.idle": "2023-01-24T17:48:21.450017Z", - "shell.execute_reply": "2023-01-24T17:48:21.395194Z" + "iopub.execute_input": "2023-01-25T19:59:28.529848Z", + "iopub.status.busy": "2023-01-25T19:59:28.528947Z", + "iopub.status.idle": "2023-01-25T20:01:54.385008Z", + "shell.execute_reply": "2023-01-25T20:01:54.293169Z" }, "papermill": { - "duration": 162.90443, - "end_time": "2023-01-24T17:48:21.507034", + "duration": 145.966448, + "end_time": "2023-01-25T20:01:54.447436", "exception": false, - "start_time": "2023-01-24T17:45:38.602604", + "start_time": "2023-01-25T19:59:28.480988", "status": "completed" }, "tags": [] @@ -768,7 +768,7 @@ "output_type": "stream", "text": [ "WARNING:root:downloading a 2345.194MiB file from http://api.brain-map.org//api/v2/well_known_file_download/1026124475\n", - "Downloading: 100%|██████████| 2.46G/2.46G [01:39<00:00, 24.8MB/s]\n" + "Downloading: 100%|██████████| 2.46G/2.46G [00:55<00:00, 44.1MB/s]\n" ] } ], @@ -783,10 +783,10 @@ "id": "935d912a", "metadata": { "papermill": { - "duration": 0.113467, - "end_time": "2023-01-24T17:48:21.849209", + "duration": 0.080336, + "end_time": "2023-01-25T20:01:54.820878", "exception": false, - "start_time": "2023-01-24T17:48:21.735742", + "start_time": "2023-01-25T20:01:54.740542", "status": "completed" }, "tags": [] @@ -803,16 +803,16 @@ "id": "33b6e797", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:48:22.106665Z", - "iopub.status.busy": "2023-01-24T17:48:22.104043Z", - "iopub.status.idle": "2023-01-24T17:48:22.512089Z", - "shell.execute_reply": "2023-01-24T17:48:22.511475Z" + "iopub.execute_input": "2023-01-25T20:01:55.068201Z", + "iopub.status.busy": "2023-01-25T20:01:55.056763Z", + "iopub.status.idle": "2023-01-25T20:01:55.588743Z", + "shell.execute_reply": "2023-01-25T20:01:55.586537Z" }, "papermill": { - "duration": 0.564416, - "end_time": "2023-01-24T17:48:22.522628", + "duration": 0.694967, + "end_time": "2023-01-25T20:01:55.595550", "exception": false, - "start_time": "2023-01-24T17:48:21.958212", + "start_time": "2023-01-25T20:01:54.900583", "status": "completed" }, "tags": [] @@ -1200,7 +1200,7 @@ " -1.95000e-06, -1.95000e-07]], dtype=float32)\n", "Coordinates:\n", " * time (time) float64 13.58 13.58 13.58 ... 9.637e+03 9.637e+03 9.637e+03\n", - " * channel (channel) int64 850258492 850258500 ... 850259236 850259244
  • " ], "text/plain": [ "\n", @@ -1289,10 +1289,10 @@ "id": "2124cd0c", "metadata": { "papermill": { - "duration": 0.109284, - "end_time": "2023-01-24T17:48:22.740784", + "duration": 0.078357, + "end_time": "2023-01-25T20:01:55.758626", "exception": false, - "start_time": "2023-01-24T17:48:22.631500", + "start_time": "2023-01-25T20:01:55.680269", "status": "completed" }, "tags": [] @@ -1311,16 +1311,16 @@ "id": "78adcd35", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:48:22.958450Z", - "iopub.status.busy": "2023-01-24T17:48:22.957891Z", - "iopub.status.idle": "2023-01-24T17:48:23.736173Z", - "shell.execute_reply": "2023-01-24T17:48:23.735466Z" + "iopub.execute_input": "2023-01-25T20:01:55.930021Z", + "iopub.status.busy": "2023-01-25T20:01:55.929631Z", + "iopub.status.idle": "2023-01-25T20:01:57.604598Z", + "shell.execute_reply": "2023-01-25T20:01:57.603550Z" }, "papermill": { - "duration": 0.889486, - "end_time": "2023-01-24T17:48:23.738193", + "duration": 1.763291, + "end_time": "2023-01-25T20:01:57.609415", "exception": false, - "start_time": "2023-01-24T17:48:22.848707", + "start_time": "2023-01-25T20:01:55.846124", "status": "completed" }, "tags": [] @@ -1708,7 +1708,7 @@ " 2.14500005e-06, -1.67700000e-05, -2.73000001e-06]], dtype=float32)\n", "Coordinates:\n", " * time (time) float64 100.0 100.0 100.0 100.0 ... 101.0 101.0 101.0 101.0\n", - " * channel (channel) int64 850258492 850258500 ... 850259236 850259244
  • " ], "text/plain": [ "\n", @@ -1799,10 +1799,10 @@ "id": "e659b5c2", "metadata": { "papermill": { - "duration": 0.107737, - "end_time": "2023-01-24T17:48:23.958254", + "duration": 0.079524, + "end_time": "2023-01-25T20:01:57.770684", "exception": false, - "start_time": "2023-01-24T17:48:23.850517", + "start_time": "2023-01-25T20:01:57.691160", "status": "completed" }, "tags": [] @@ -1819,16 +1819,16 @@ "id": "4b201aed", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:48:24.177648Z", - "iopub.status.busy": "2023-01-24T17:48:24.177356Z", - "iopub.status.idle": "2023-01-24T17:48:24.987740Z", - "shell.execute_reply": "2023-01-24T17:48:24.986904Z" + "iopub.execute_input": "2023-01-25T20:01:57.922644Z", + "iopub.status.busy": "2023-01-25T20:01:57.922245Z", + "iopub.status.idle": "2023-01-25T20:01:59.268105Z", + "shell.execute_reply": "2023-01-25T20:01:59.267060Z" }, "papermill": { - "duration": 0.922386, - "end_time": "2023-01-24T17:48:24.989405", + "duration": 1.426496, + "end_time": "2023-01-25T20:01:59.272228", "exception": false, - "start_time": "2023-01-24T17:48:24.067019", + "start_time": "2023-01-25T20:01:57.845732", "status": "completed" }, "tags": [] @@ -1867,10 +1867,10 @@ "id": "2c78a1ab", "metadata": { "papermill": { - "duration": 0.24388, - "end_time": "2023-01-24T17:48:25.345502", + "duration": 0.07576, + "end_time": "2023-01-25T20:01:59.430762", "exception": false, - "start_time": "2023-01-24T17:48:25.101622", + "start_time": "2023-01-25T20:01:59.355002", "status": "completed" }, "tags": [] @@ -1885,16 +1885,16 @@ "id": "4406d13d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:48:25.569908Z", - "iopub.status.busy": "2023-01-24T17:48:25.569324Z", - "iopub.status.idle": "2023-01-24T17:48:29.867996Z", - "shell.execute_reply": "2023-01-24T17:48:29.867276Z" + "iopub.execute_input": "2023-01-25T20:01:59.600870Z", + "iopub.status.busy": "2023-01-25T20:01:59.600303Z", + "iopub.status.idle": "2023-01-25T20:02:07.154527Z", + "shell.execute_reply": "2023-01-25T20:02:07.153118Z" }, "papermill": { - "duration": 4.416828, - "end_time": "2023-01-24T17:48:29.874076", + "duration": 7.649473, + "end_time": "2023-01-25T20:02:07.164762", "exception": false, - "start_time": "2023-01-24T17:48:25.457248", + "start_time": "2023-01-25T20:01:59.515289", "status": "completed" }, "tags": [] @@ -1924,10 +1924,10 @@ "id": "2aee4be5", "metadata": { "papermill": { - "duration": 0.111933, - "end_time": "2023-01-24T17:48:30.109237", + "duration": 0.088669, + "end_time": "2023-01-25T20:02:07.377799", "exception": false, - "start_time": "2023-01-24T17:48:29.997304", + "start_time": "2023-01-25T20:02:07.289130", "status": "completed" }, "tags": [] @@ -1951,16 +1951,16 @@ "id": "e96de66d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:48:30.337952Z", - "iopub.status.busy": "2023-01-24T17:48:30.337407Z", - "iopub.status.idle": "2023-01-24T17:48:30.780025Z", - "shell.execute_reply": "2023-01-24T17:48:30.779458Z" + "iopub.execute_input": "2023-01-25T20:02:07.559593Z", + "iopub.status.busy": "2023-01-25T20:02:07.559086Z", + "iopub.status.idle": "2023-01-25T20:02:08.253783Z", + "shell.execute_reply": "2023-01-25T20:02:08.252920Z" }, "papermill": { - "duration": 0.559819, - "end_time": "2023-01-24T17:48:30.782078", + "duration": 0.791476, + "end_time": "2023-01-25T20:02:08.255759", "exception": false, - "start_time": "2023-01-24T17:48:30.222259", + "start_time": "2023-01-25T20:02:07.464283", "status": "completed" }, "tags": [] @@ -1995,10 +1995,10 @@ "id": "ca16a93f", "metadata": { "papermill": { - "duration": 0.114797, - "end_time": "2023-01-24T17:48:31.017775", + "duration": 0.09027, + "end_time": "2023-01-25T20:02:08.460961", "exception": false, - "start_time": "2023-01-24T17:48:30.902978", + "start_time": "2023-01-25T20:02:08.370691", "status": "completed" }, "tags": [] @@ -2018,10 +2018,10 @@ "id": "37ef8440", "metadata": { "papermill": { - "duration": 0.115997, - "end_time": "2023-01-24T17:48:31.249441", + "duration": 0.087955, + "end_time": "2023-01-25T20:02:08.635546", "exception": false, - "start_time": "2023-01-24T17:48:31.133444", + "start_time": "2023-01-25T20:02:08.547591", "status": "completed" }, "tags": [] @@ -2035,10 +2035,10 @@ "id": "dd96a7b8", "metadata": { "papermill": { - "duration": 0.11409, - "end_time": "2023-01-24T17:48:31.479685", + "duration": 0.087556, + "end_time": "2023-01-25T20:02:08.811796", "exception": false, - "start_time": "2023-01-24T17:48:31.365595", + "start_time": "2023-01-25T20:02:08.724240", "status": "completed" }, "tags": [] @@ -2057,16 +2057,16 @@ "id": "60226c5f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:48:31.711891Z", - "iopub.status.busy": "2023-01-24T17:48:31.711496Z", - "iopub.status.idle": "2023-01-24T17:48:41.432229Z", - "shell.execute_reply": "2023-01-24T17:48:41.431547Z" + "iopub.execute_input": "2023-01-25T20:02:08.990490Z", + "iopub.status.busy": "2023-01-25T20:02:08.989670Z", + "iopub.status.idle": "2023-01-25T20:02:25.614808Z", + "shell.execute_reply": "2023-01-25T20:02:25.613739Z" }, "papermill": { - "duration": 9.839394, - "end_time": "2023-01-24T17:48:41.433999", + "duration": 16.716112, + "end_time": "2023-01-25T20:02:25.617512", "exception": false, - "start_time": "2023-01-24T17:48:31.594605", + "start_time": "2023-01-25T20:02:08.901400", "status": "completed" }, "scrolled": true, @@ -2085,10 +2085,10 @@ "id": "b63f9c4c", "metadata": { "papermill": { - "duration": 0.115131, - "end_time": "2023-01-24T17:48:41.664630", + "duration": 0.087693, + "end_time": "2023-01-25T20:02:25.800428", "exception": false, - "start_time": "2023-01-24T17:48:41.549499", + "start_time": "2023-01-25T20:02:25.712735", "status": "completed" }, "tags": [] @@ -2103,16 +2103,16 @@ "id": "c6c4550c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:48:41.897884Z", - "iopub.status.busy": "2023-01-24T17:48:41.897391Z", - "iopub.status.idle": "2023-01-24T17:48:42.592486Z", - "shell.execute_reply": "2023-01-24T17:48:42.591823Z" + "iopub.execute_input": "2023-01-25T20:02:25.988245Z", + "iopub.status.busy": "2023-01-25T20:02:25.987655Z", + "iopub.status.idle": "2023-01-25T20:02:27.294489Z", + "shell.execute_reply": "2023-01-25T20:02:27.293420Z" }, "papermill": { - "duration": 0.813559, - "end_time": "2023-01-24T17:48:42.594365", + "duration": 1.412565, + "end_time": "2023-01-25T20:02:27.300628", "exception": false, - "start_time": "2023-01-24T17:48:41.780806", + "start_time": "2023-01-25T20:02:25.888063", "status": "completed" }, "tags": [] @@ -2136,10 +2136,10 @@ "id": "28517a08", "metadata": { "papermill": { - "duration": 0.115051, - "end_time": "2023-01-24T17:48:42.856279", + "duration": 0.09086, + "end_time": "2023-01-25T20:02:27.480101", "exception": false, - "start_time": "2023-01-24T17:48:42.741228", + "start_time": "2023-01-25T20:02:27.389241", "status": "completed" }, "tags": [] @@ -2158,16 +2158,16 @@ "id": "93fc28c9", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:48:43.087264Z", - "iopub.status.busy": "2023-01-24T17:48:43.086690Z", - "iopub.status.idle": "2023-01-24T17:48:43.435019Z", - "shell.execute_reply": "2023-01-24T17:48:43.434407Z" + "iopub.execute_input": "2023-01-25T20:02:27.664468Z", + "iopub.status.busy": "2023-01-25T20:02:27.663734Z", + "iopub.status.idle": "2023-01-25T20:02:28.157847Z", + "shell.execute_reply": "2023-01-25T20:02:28.156899Z" }, "papermill": { - "duration": 0.46744, - "end_time": "2023-01-24T17:48:43.438231", + "duration": 0.589058, + "end_time": "2023-01-25T20:02:28.161828", "exception": false, - "start_time": "2023-01-24T17:48:42.970791", + "start_time": "2023-01-25T20:02:27.572770", "status": "completed" }, "tags": [] @@ -2197,10 +2197,10 @@ "id": "48596883", "metadata": { "papermill": { - "duration": 0.119121, - "end_time": "2023-01-24T17:48:43.695883", + "duration": 0.096758, + "end_time": "2023-01-25T20:02:28.356719", "exception": false, - "start_time": "2023-01-24T17:48:43.576762", + "start_time": "2023-01-25T20:02:28.259961", "status": "completed" }, "tags": [] @@ -2218,10 +2218,10 @@ "id": "f1c46f24", "metadata": { "papermill": { - "duration": 0.117822, - "end_time": "2023-01-24T17:48:43.931979", + "duration": 0.095055, + "end_time": "2023-01-25T20:02:28.553448", "exception": false, - "start_time": "2023-01-24T17:48:43.814157", + "start_time": "2023-01-25T20:02:28.458393", "status": "completed" }, "tags": [] @@ -2243,10 +2243,10 @@ "id": "84b9a411", "metadata": { "papermill": { - "duration": 0.119595, - "end_time": "2023-01-24T17:48:44.169765", + "duration": 0.091499, + "end_time": "2023-01-25T20:02:28.741932", "exception": false, - "start_time": "2023-01-24T17:48:44.050170", + "start_time": "2023-01-25T20:02:28.650433", "status": "completed" }, "tags": [] @@ -2260,10 +2260,10 @@ "id": "0ddba938", "metadata": { "papermill": { - "duration": 0.119347, - "end_time": "2023-01-24T17:48:44.408255", + "duration": 0.095341, + "end_time": "2023-01-25T20:02:28.933558", "exception": false, - "start_time": "2023-01-24T17:48:44.288908", + "start_time": "2023-01-25T20:02:28.838217", "status": "completed" }, "tags": [] @@ -2282,16 +2282,16 @@ "id": "3d8317ef", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:48:44.648624Z", - "iopub.status.busy": "2023-01-24T17:48:44.648213Z", - "iopub.status.idle": "2023-01-24T17:50:19.759512Z", - "shell.execute_reply": "2023-01-24T17:50:19.758417Z" + "iopub.execute_input": "2023-01-25T20:02:29.378925Z", + "iopub.status.busy": "2023-01-25T20:02:29.377793Z", + "iopub.status.idle": "2023-01-25T20:04:09.995710Z", + "shell.execute_reply": "2023-01-25T20:04:09.991519Z" }, "papermill": { - "duration": 95.58409, - "end_time": "2023-01-24T17:50:20.112253", + "duration": 100.853779, + "end_time": "2023-01-25T20:04:10.135178", "exception": false, - "start_time": "2023-01-24T17:48:44.528163", + "start_time": "2023-01-25T20:02:29.281399", "status": "completed" }, "tags": [] @@ -2322,10 +2322,10 @@ "id": "925a36f4", "metadata": { "papermill": { - "duration": 0.118811, - "end_time": "2023-01-24T17:50:20.354224", + "duration": 0.095151, + "end_time": "2023-01-25T20:04:10.324882", "exception": false, - "start_time": "2023-01-24T17:50:20.235413", + "start_time": "2023-01-25T20:04:10.229731", "status": "completed" }, "tags": [] @@ -2340,16 +2340,16 @@ "id": "841c2a8a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:50:20.593901Z", - "iopub.status.busy": "2023-01-24T17:50:20.593246Z", - "iopub.status.idle": "2023-01-24T17:50:20.601493Z", - "shell.execute_reply": "2023-01-24T17:50:20.600848Z" + "iopub.execute_input": "2023-01-25T20:04:10.520458Z", + "iopub.status.busy": "2023-01-25T20:04:10.519754Z", + "iopub.status.idle": "2023-01-25T20:04:10.530798Z", + "shell.execute_reply": "2023-01-25T20:04:10.529793Z" }, "papermill": { - "duration": 0.1302, - "end_time": "2023-01-24T17:50:20.603096", + "duration": 0.111507, + "end_time": "2023-01-25T20:04:10.534705", "exception": false, - "start_time": "2023-01-24T17:50:20.472896", + "start_time": "2023-01-25T20:04:10.423198", "status": "completed" }, "tags": [] @@ -2379,10 +2379,10 @@ "id": "ceb4ab45", "metadata": { "papermill": { - "duration": 0.119708, - "end_time": "2023-01-24T17:50:20.849658", + "duration": 0.103431, + "end_time": "2023-01-25T20:04:10.739836", "exception": false, - "start_time": "2023-01-24T17:50:20.729950", + "start_time": "2023-01-25T20:04:10.636405", "status": "completed" }, "tags": [] @@ -2399,16 +2399,16 @@ "id": "c5e46617", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:50:21.090735Z", - "iopub.status.busy": "2023-01-24T17:50:21.090137Z", - "iopub.status.idle": "2023-01-24T17:50:21.096759Z", - "shell.execute_reply": "2023-01-24T17:50:21.096243Z" + "iopub.execute_input": "2023-01-25T20:04:10.958906Z", + "iopub.status.busy": "2023-01-25T20:04:10.957991Z", + "iopub.status.idle": "2023-01-25T20:04:10.968216Z", + "shell.execute_reply": "2023-01-25T20:04:10.966259Z" }, "papermill": { - "duration": 0.128889, - "end_time": "2023-01-24T17:50:21.098200", + "duration": 0.125557, + "end_time": "2023-01-25T20:04:10.971031", "exception": false, - "start_time": "2023-01-24T17:50:20.969311", + "start_time": "2023-01-25T20:04:10.845474", "status": "completed" }, "tags": [] @@ -2437,10 +2437,10 @@ "id": "65aaae41", "metadata": { "papermill": { - "duration": 0.119818, - "end_time": "2023-01-24T17:50:21.337743", + "duration": 0.097918, + "end_time": "2023-01-25T20:04:11.174172", "exception": false, - "start_time": "2023-01-24T17:50:21.217925", + "start_time": "2023-01-25T20:04:11.076254", "status": "completed" }, "tags": [] @@ -2455,16 +2455,16 @@ "id": "9e414a5b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:50:21.578152Z", - "iopub.status.busy": "2023-01-24T17:50:21.577560Z", - "iopub.status.idle": "2023-01-24T17:51:45.364449Z", - "shell.execute_reply": "2023-01-24T17:51:45.362145Z" + "iopub.execute_input": "2023-01-25T20:04:11.387202Z", + "iopub.status.busy": "2023-01-25T20:04:11.386834Z", + "iopub.status.idle": "2023-01-25T20:05:36.758889Z", + "shell.execute_reply": "2023-01-25T20:05:36.755458Z" }, "papermill": { - "duration": 83.910484, - "end_time": "2023-01-24T17:51:45.368011", + "duration": 85.486499, + "end_time": "2023-01-25T20:05:36.764932", "exception": false, - "start_time": "2023-01-24T17:50:21.457527", + "start_time": "2023-01-25T20:04:11.278433", "status": "completed" }, "tags": [] @@ -2487,10 +2487,10 @@ "id": "f1649d08", "metadata": { "papermill": { - "duration": 0.121652, - "end_time": "2023-01-24T17:51:45.614744", + "duration": 0.102995, + "end_time": "2023-01-25T20:05:36.970706", "exception": false, - "start_time": "2023-01-24T17:51:45.493092", + "start_time": "2023-01-25T20:05:36.867711", "status": "completed" }, "tags": [] @@ -2505,16 +2505,16 @@ "id": "d4e2f340", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:51:45.855393Z", - "iopub.status.busy": "2023-01-24T17:51:45.854667Z", - "iopub.status.idle": "2023-01-24T17:51:46.047294Z", - "shell.execute_reply": "2023-01-24T17:51:46.046625Z" + "iopub.execute_input": "2023-01-25T20:05:37.185556Z", + "iopub.status.busy": "2023-01-25T20:05:37.185187Z", + "iopub.status.idle": "2023-01-25T20:05:37.510259Z", + "shell.execute_reply": "2023-01-25T20:05:37.509121Z" }, "papermill": { - "duration": 0.314909, - "end_time": "2023-01-24T17:51:46.049107", + "duration": 0.435929, + "end_time": "2023-01-25T20:05:37.514255", "exception": false, - "start_time": "2023-01-24T17:51:45.734198", + "start_time": "2023-01-25T20:05:37.078326", "status": "completed" }, "tags": [] @@ -2543,10 +2543,10 @@ "id": "b0d44d21", "metadata": { "papermill": { - "duration": 0.121066, - "end_time": "2023-01-24T17:51:46.334894", + "duration": 0.105347, + "end_time": "2023-01-25T20:05:37.730441", "exception": false, - "start_time": "2023-01-24T17:51:46.213828", + "start_time": "2023-01-25T20:05:37.625094", "status": "completed" }, "tags": [] @@ -2568,10 +2568,10 @@ "id": "5d21ccc7", "metadata": { "papermill": { - "duration": 0.120509, - "end_time": "2023-01-24T17:51:46.576836", + "duration": 0.092248, + "end_time": "2023-01-25T20:05:37.913687", "exception": false, - "start_time": "2023-01-24T17:51:46.456327", + "start_time": "2023-01-25T20:05:37.821439", "status": "completed" }, "tags": [] @@ -2585,10 +2585,10 @@ "id": "e3733ad8", "metadata": { "papermill": { - "duration": 0.120629, - "end_time": "2023-01-24T17:51:46.818720", + "duration": 0.096341, + "end_time": "2023-01-25T20:05:38.104232", "exception": false, - "start_time": "2023-01-24T17:51:46.698091", + "start_time": "2023-01-25T20:05:38.007891", "status": "completed" }, "tags": [] @@ -2605,16 +2605,16 @@ "id": "cda6bb92", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:51:47.061883Z", - "iopub.status.busy": "2023-01-24T17:51:47.061439Z", - "iopub.status.idle": "2023-01-24T17:51:47.166739Z", - "shell.execute_reply": "2023-01-24T17:51:47.166152Z" + "iopub.execute_input": "2023-01-25T20:05:38.314022Z", + "iopub.status.busy": "2023-01-25T20:05:38.313337Z", + "iopub.status.idle": "2023-01-25T20:05:38.479163Z", + "shell.execute_reply": "2023-01-25T20:05:38.478012Z" }, "papermill": { - "duration": 0.228127, - "end_time": "2023-01-24T17:51:47.168410", + "duration": 0.26935, + "end_time": "2023-01-25T20:05:38.482777", "exception": false, - "start_time": "2023-01-24T17:51:46.940283", + "start_time": "2023-01-25T20:05:38.213427", "status": "completed" }, "tags": [] @@ -3004,7 +3004,7 @@ " * virtual_channel_index (virtual_channel_index) int64 0 1 2 3 ... 381 382 383\n", " * time (time) float64 -0.1 -0.0996 -0.0992 ... 0.2492 0.2496\n", " vertical_position (virtual_channel_index) float64 0.0 10.0 ... 3.83e+03\n", - " horizontal_position (virtual_channel_index) float64 24.0 24.0 ... 24.0
  • " ], "text/plain": [ "\n", @@ -3136,10 +3136,10 @@ "id": "1a2f58ea", "metadata": { "papermill": { - "duration": 0.122136, - "end_time": "2023-01-24T17:51:47.416484", + "duration": 0.106189, + "end_time": "2023-01-25T20:05:38.695503", "exception": false, - "start_time": "2023-01-24T17:51:47.294348", + "start_time": "2023-01-25T20:05:38.589314", "status": "completed" }, "tags": [] @@ -3154,16 +3154,16 @@ "id": "1efaa3bb", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:51:47.662172Z", - "iopub.status.busy": "2023-01-24T17:51:47.661664Z", - "iopub.status.idle": "2023-01-24T17:51:50.612731Z", - "shell.execute_reply": "2023-01-24T17:51:50.612144Z" + "iopub.execute_input": "2023-01-25T20:05:38.891042Z", + "iopub.status.busy": "2023-01-25T20:05:38.890524Z", + "iopub.status.idle": "2023-01-25T20:05:43.028152Z", + "shell.execute_reply": "2023-01-25T20:05:43.027179Z" }, "papermill": { - "duration": 3.077417, - "end_time": "2023-01-24T17:51:50.615775", + "duration": 4.243148, + "end_time": "2023-01-25T20:05:43.032362", "exception": false, - "start_time": "2023-01-24T17:51:47.538358", + "start_time": "2023-01-25T20:05:38.789214", "status": "completed" }, "tags": [] @@ -3173,7 +3173,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/tmp/ipykernel_4889/3702729921.py:1: DeprecationWarning: Please use `gaussian_filter` from the `scipy.ndimage` namespace, the `scipy.ndimage.filters` namespace is deprecated.\n", + "/tmp/ipykernel_5009/3702729921.py:1: DeprecationWarning: Please use `gaussian_filter` from the `scipy.ndimage` namespace, the `scipy.ndimage.filters` namespace is deprecated.\n", " from scipy.ndimage.filters import gaussian_filter\n" ] }, @@ -3217,10 +3217,10 @@ "id": "a6c523bd", "metadata": { "papermill": { - "duration": 0.123845, - "end_time": "2023-01-24T17:51:50.875491", + "duration": 0.102451, + "end_time": "2023-01-25T20:05:43.252640", "exception": false, - "start_time": "2023-01-24T17:51:50.751646", + "start_time": "2023-01-25T20:05:43.150189", "status": "completed" }, "tags": [] @@ -3237,16 +3237,16 @@ "id": "ae3e5e4f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:51:51.159120Z", - "iopub.status.busy": "2023-01-24T17:51:51.158548Z", - "iopub.status.idle": "2023-01-24T17:51:51.165969Z", - "shell.execute_reply": "2023-01-24T17:51:51.165175Z" + "iopub.execute_input": "2023-01-25T20:05:43.459039Z", + "iopub.status.busy": "2023-01-25T20:05:43.457856Z", + "iopub.status.idle": "2023-01-25T20:05:43.467683Z", + "shell.execute_reply": "2023-01-25T20:05:43.466876Z" }, "papermill": { - "duration": 0.13468, - "end_time": "2023-01-24T17:51:51.167331", + "duration": 0.113618, + "end_time": "2023-01-25T20:05:43.469879", "exception": false, - "start_time": "2023-01-24T17:51:51.032651", + "start_time": "2023-01-25T20:05:43.356261", "status": "completed" }, "tags": [] @@ -3274,10 +3274,10 @@ "id": "fedc308e", "metadata": { "papermill": { - "duration": 0.124088, - "end_time": "2023-01-24T17:51:51.415676", + "duration": 0.099546, + "end_time": "2023-01-25T20:05:43.669762", "exception": false, - "start_time": "2023-01-24T17:51:51.291588", + "start_time": "2023-01-25T20:05:43.570216", "status": "completed" }, "tags": [] @@ -3291,10 +3291,10 @@ "id": "610efa53", "metadata": { "papermill": { - "duration": 0.124382, - "end_time": "2023-01-24T17:51:51.664341", + "duration": 0.100157, + "end_time": "2023-01-25T20:05:43.868403", "exception": false, - "start_time": "2023-01-24T17:51:51.539959", + "start_time": "2023-01-25T20:05:43.768246", "status": "completed" }, "tags": [] @@ -3333,17 +3333,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 693.720748, - "end_time": "2023-01-24T17:51:55.157287", + "duration": 642.601937, + "end_time": "2023-01-25T20:05:47.138423", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/ecephys_lfp_analysis.ipynb", - "output_path": "/tmp/tmpav6hwcei/scratch_nb.ipynb", + "output_path": "/tmp/tmpnzbf6ab5/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmpav6hwcei", + "output_dir": "/tmp/tmpnzbf6ab5", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T17:40:21.436539", + "start_time": "2023-01-25T19:55:04.536486", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/ecephys_optotagging.ipynb b/doc_template/examples_root/examples/nb/ecephys_optotagging.ipynb index f199846f4..62e775f7e 100644 --- a/doc_template/examples_root/examples/nb/ecephys_optotagging.ipynb +++ b/doc_template/examples_root/examples/nb/ecephys_optotagging.ipynb @@ -5,10 +5,10 @@ "id": "363aa1ec", "metadata": { "papermill": { - "duration": 0.01043, - "end_time": "2023-01-24T18:12:45.067926", + "duration": 0.01456, + "end_time": "2023-01-25T20:27:10.973181", "exception": false, - "start_time": "2023-01-24T18:12:45.057496", + "start_time": "2023-01-25T20:27:10.958621", "status": "completed" }, "pycharm": { @@ -43,10 +43,10 @@ "id": "96f2dd54", "metadata": { "papermill": { - "duration": 0.008761, - "end_time": "2023-01-24T18:12:45.085886", + "duration": 0.011134, + "end_time": "2023-01-25T20:27:10.995811", "exception": false, - "start_time": "2023-01-24T18:12:45.077125", + "start_time": "2023-01-25T20:27:10.984677", "status": "completed" }, "pycharm": { @@ -64,16 +64,16 @@ "id": "acff83e9", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:12:45.105165Z", - "iopub.status.busy": "2023-01-24T18:12:45.104606Z", - "iopub.status.idle": "2023-01-24T18:12:52.973979Z", - "shell.execute_reply": "2023-01-24T18:12:52.973288Z" + "iopub.execute_input": "2023-01-25T20:27:11.022808Z", + "iopub.status.busy": "2023-01-25T20:27:11.022301Z", + "iopub.status.idle": "2023-01-25T20:27:22.083923Z", + "shell.execute_reply": "2023-01-25T20:27:22.082886Z" }, "papermill": { - "duration": 7.881474, - "end_time": "2023-01-24T18:12:52.976133", + "duration": 11.077672, + "end_time": "2023-01-25T20:27:22.086755", "exception": false, - "start_time": "2023-01-24T18:12:45.094659", + "start_time": "2023-01-25T20:27:11.009083", "status": "completed" }, "pycharm": { @@ -109,10 +109,10 @@ "id": "10fbae62", "metadata": { "papermill": { - "duration": 0.00894, - "end_time": "2023-01-24T18:12:52.995839", + "duration": 0.012021, + "end_time": "2023-01-25T20:27:22.110606", "exception": false, - "start_time": "2023-01-24T18:12:52.986899", + "start_time": "2023-01-25T20:27:22.098585", "status": "completed" }, "pycharm": { @@ -132,16 +132,16 @@ "id": "f3966f1b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:12:53.015569Z", - "iopub.status.busy": "2023-01-24T18:12:53.014678Z", - "iopub.status.idle": "2023-01-24T18:12:53.018618Z", - "shell.execute_reply": "2023-01-24T18:12:53.017946Z" + "iopub.execute_input": "2023-01-25T20:27:22.139674Z", + "iopub.status.busy": "2023-01-25T20:27:22.138547Z", + "iopub.status.idle": "2023-01-25T20:27:22.144083Z", + "shell.execute_reply": "2023-01-25T20:27:22.142968Z" }, "papermill": { - "duration": 0.015382, - "end_time": "2023-01-24T18:12:53.020130", + "duration": 0.023851, + "end_time": "2023-01-25T20:27:22.146217", "exception": false, - "start_time": "2023-01-24T18:12:53.004748", + "start_time": "2023-01-25T20:27:22.122366", "status": "completed" }, "pycharm": { @@ -163,16 +163,16 @@ "id": "54318e40", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:12:53.062609Z", - "iopub.status.busy": "2023-01-24T18:12:53.062160Z", - "iopub.status.idle": "2023-01-24T18:12:53.066392Z", - "shell.execute_reply": "2023-01-24T18:12:53.065733Z" + "iopub.execute_input": "2023-01-25T20:27:22.201325Z", + "iopub.status.busy": "2023-01-25T20:27:22.200785Z", + "iopub.status.idle": "2023-01-25T20:27:22.206103Z", + "shell.execute_reply": "2023-01-25T20:27:22.205259Z" }, "papermill": { - "duration": 0.015476, - "end_time": "2023-01-24T18:12:53.067866", + "duration": 0.018652, + "end_time": "2023-01-25T20:27:22.208112", "exception": false, - "start_time": "2023-01-24T18:12:53.052390", + "start_time": "2023-01-25T20:27:22.189460", "status": "completed" }, "pycharm": { @@ -193,16 +193,16 @@ "id": "41e0ebee", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:12:53.086965Z", - "iopub.status.busy": "2023-01-24T18:12:53.086518Z", - "iopub.status.idle": "2023-01-24T18:12:53.090145Z", - "shell.execute_reply": "2023-01-24T18:12:53.089514Z" + "iopub.execute_input": "2023-01-25T20:27:22.231480Z", + "iopub.status.busy": "2023-01-25T20:27:22.230882Z", + "iopub.status.idle": "2023-01-25T20:27:22.235723Z", + "shell.execute_reply": "2023-01-25T20:27:22.234765Z" }, "papermill": { - "duration": 0.014816, - "end_time": "2023-01-24T18:12:53.091626", + "duration": 0.01885, + "end_time": "2023-01-25T20:27:22.237664", "exception": false, - "start_time": "2023-01-24T18:12:53.076810", + "start_time": "2023-01-25T20:27:22.218814", "status": "completed" }, "pycharm": { @@ -222,10 +222,10 @@ "id": "bce822e3", "metadata": { "papermill": { - "duration": 0.00882, - "end_time": "2023-01-24T18:12:53.109426", + "duration": 0.010755, + "end_time": "2023-01-25T20:27:22.258776", "exception": false, - "start_time": "2023-01-24T18:12:53.100606", + "start_time": "2023-01-25T20:27:22.248021", "status": "completed" }, "pycharm": { @@ -242,10 +242,10 @@ "id": "0515f3ea", "metadata": { "papermill": { - "duration": 0.008827, - "end_time": "2023-01-24T18:12:53.127116", + "duration": 0.011029, + "end_time": "2023-01-25T20:27:22.281183", "exception": false, - "start_time": "2023-01-24T18:12:53.118289", + "start_time": "2023-01-25T20:27:22.270154", "status": "completed" }, "pycharm": { @@ -263,16 +263,16 @@ "id": "7fe205b7", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:12:53.146044Z", - "iopub.status.busy": "2023-01-24T18:12:53.145589Z", - "iopub.status.idle": "2023-01-24T18:16:09.400209Z", - "shell.execute_reply": "2023-01-24T18:16:09.399653Z" + "iopub.execute_input": "2023-01-25T20:27:22.304097Z", + "iopub.status.busy": "2023-01-25T20:27:22.303371Z", + "iopub.status.idle": "2023-01-25T20:30:20.497741Z", + "shell.execute_reply": "2023-01-25T20:30:20.496916Z" }, "papermill": { - "duration": 196.271941, - "end_time": "2023-01-24T18:16:09.407810", + "duration": 178.214616, + "end_time": "2023-01-25T20:30:20.506637", "exception": false, - "start_time": "2023-01-24T18:12:53.135869", + "start_time": "2023-01-25T20:27:22.292021", "status": "completed" }, "pycharm": { @@ -307,10 +307,10 @@ "id": "93790d34", "metadata": { "papermill": { - "duration": 0.009183, - "end_time": "2023-01-24T18:16:09.426140", + "duration": 0.011182, + "end_time": "2023-01-25T20:30:20.528896", "exception": false, - "start_time": "2023-01-24T18:16:09.416957", + "start_time": "2023-01-25T20:30:20.517714", "status": "completed" }, "pycharm": { @@ -330,16 +330,16 @@ "id": "a59944c0", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:16:09.445780Z", - "iopub.status.busy": "2023-01-24T18:16:09.445024Z", - "iopub.status.idle": "2023-01-24T18:16:09.461311Z", - "shell.execute_reply": "2023-01-24T18:16:09.460743Z" + "iopub.execute_input": "2023-01-25T20:30:20.553160Z", + "iopub.status.busy": "2023-01-25T20:30:20.552628Z", + "iopub.status.idle": "2023-01-25T20:30:20.574473Z", + "shell.execute_reply": "2023-01-25T20:30:20.573379Z" }, "papermill": { - "duration": 0.027975, - "end_time": "2023-01-24T18:16:09.463126", + "duration": 0.036586, + "end_time": "2023-01-25T20:30:20.576929", "exception": false, - "start_time": "2023-01-24T18:16:09.435151", + "start_time": "2023-01-25T20:30:20.540343", "status": "completed" }, "pycharm": { @@ -565,10 +565,10 @@ "id": "d726d1b5", "metadata": { "papermill": { - "duration": 0.009255, - "end_time": "2023-01-24T18:16:09.481833", + "duration": 0.010895, + "end_time": "2023-01-25T20:30:20.599778", "exception": false, - "start_time": "2023-01-24T18:16:09.472578", + "start_time": "2023-01-25T20:30:20.588883", "status": "completed" }, "pycharm": { @@ -585,10 +585,10 @@ "id": "7387d778", "metadata": { "papermill": { - "duration": 0.009194, - "end_time": "2023-01-24T18:16:09.500426", + "duration": 0.010695, + "end_time": "2023-01-25T20:30:20.621461", "exception": false, - "start_time": "2023-01-24T18:16:09.491232", + "start_time": "2023-01-25T20:30:20.610766", "status": "completed" }, "pycharm": { @@ -605,10 +605,10 @@ "id": "bfd67a28", "metadata": { "papermill": { - "duration": 0.00949, - "end_time": "2023-01-24T18:16:09.519068", + "duration": 0.01154, + "end_time": "2023-01-25T20:30:20.644258", "exception": false, - "start_time": "2023-01-24T18:16:09.509578", + "start_time": "2023-01-25T20:30:20.632718", "status": "completed" }, "pycharm": { @@ -626,16 +626,16 @@ "id": "3e811370", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:16:09.538986Z", - "iopub.status.busy": "2023-01-24T18:16:09.538502Z", - "iopub.status.idle": "2023-01-24T18:17:16.821974Z", - "shell.execute_reply": "2023-01-24T18:17:16.821324Z" + "iopub.execute_input": "2023-01-25T20:30:20.668539Z", + "iopub.status.busy": "2023-01-25T20:30:20.667990Z", + "iopub.status.idle": "2023-01-25T20:30:58.985604Z", + "shell.execute_reply": "2023-01-25T20:30:58.984626Z" }, "papermill": { - "duration": 67.295541, - "end_time": "2023-01-24T18:17:16.823951", + "duration": 38.333092, + "end_time": "2023-01-25T20:30:58.988918", "exception": false, - "start_time": "2023-01-24T18:16:09.528410", + "start_time": "2023-01-25T20:30:20.655826", "status": "completed" }, "pycharm": { @@ -649,7 +649,7 @@ "output_type": "stream", "text": [ "WARNING:root:downloading a 1601.838MiB file from http://api.brain-map.org//api/v2/well_known_file_download/1026123625\n", - "Downloading: 100%|██████████| 1.68G/1.68G [01:04<00:00, 25.9MB/s]\n" + "Downloading: 100%|██████████| 1.68G/1.68G [00:35<00:00, 47.5MB/s]\n" ] } ], @@ -662,10 +662,10 @@ "id": "93c026f1", "metadata": { "papermill": { - "duration": 0.039378, - "end_time": "2023-01-24T18:17:16.903404", + "duration": 0.031119, + "end_time": "2023-01-25T20:30:59.052019", "exception": false, - "start_time": "2023-01-24T18:17:16.864026", + "start_time": "2023-01-25T20:30:59.020900", "status": "completed" }, "pycharm": { @@ -683,16 +683,16 @@ "id": "03635a37", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:17:16.984949Z", - "iopub.status.busy": "2023-01-24T18:17:16.984376Z", - "iopub.status.idle": "2023-01-24T18:17:17.535361Z", - "shell.execute_reply": "2023-01-24T18:17:17.534702Z" + "iopub.execute_input": "2023-01-25T20:30:59.121753Z", + "iopub.status.busy": "2023-01-25T20:30:59.121360Z", + "iopub.status.idle": "2023-01-25T20:30:59.950352Z", + "shell.execute_reply": "2023-01-25T20:30:59.948884Z" }, "papermill": { - "duration": 0.593605, - "end_time": "2023-01-24T18:17:17.536967", + "duration": 0.863202, + "end_time": "2023-01-25T20:30:59.952401", "exception": false, - "start_time": "2023-01-24T18:17:16.943362", + "start_time": "2023-01-25T20:30:59.089199", "status": "completed" }, "pycharm": { @@ -890,10 +890,10 @@ "id": "a9baa439", "metadata": { "papermill": { - "duration": 0.039436, - "end_time": "2023-01-24T18:17:17.616658", + "duration": 0.034323, + "end_time": "2023-01-25T20:31:00.019967", "exception": false, - "start_time": "2023-01-24T18:17:17.577222", + "start_time": "2023-01-25T20:30:59.985644", "status": "completed" }, "pycharm": { @@ -911,16 +911,16 @@ "id": "dbdbaadd", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:17:17.697685Z", - "iopub.status.busy": "2023-01-24T18:17:17.697146Z", - "iopub.status.idle": "2023-01-24T18:17:17.710424Z", - "shell.execute_reply": "2023-01-24T18:17:17.709897Z" + "iopub.execute_input": "2023-01-25T20:31:00.089216Z", + "iopub.status.busy": "2023-01-25T20:31:00.088640Z", + "iopub.status.idle": "2023-01-25T20:31:00.106267Z", + "shell.execute_reply": "2023-01-25T20:31:00.105394Z" }, "papermill": { - "duration": 0.055531, - "end_time": "2023-01-24T18:17:17.711881", + "duration": 0.054683, + "end_time": "2023-01-25T20:31:00.108099", "exception": false, - "start_time": "2023-01-24T18:17:17.656350", + "start_time": "2023-01-25T20:31:00.053416", "status": "completed" }, "pycharm": { @@ -1085,10 +1085,10 @@ "id": "5fd8bb42", "metadata": { "papermill": { - "duration": 0.040079, - "end_time": "2023-01-24T18:17:17.792274", + "duration": 0.030606, + "end_time": "2023-01-25T20:31:00.171702", "exception": false, - "start_time": "2023-01-24T18:17:17.752195", + "start_time": "2023-01-25T20:31:00.141096", "status": "completed" }, "pycharm": { @@ -1108,16 +1108,16 @@ "id": "9c2c7448", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:17:17.873931Z", - "iopub.status.busy": "2023-01-24T18:17:17.873373Z", - "iopub.status.idle": "2023-01-24T18:17:17.879504Z", - "shell.execute_reply": "2023-01-24T18:17:17.878864Z" + "iopub.execute_input": "2023-01-25T20:31:00.236808Z", + "iopub.status.busy": "2023-01-25T20:31:00.236240Z", + "iopub.status.idle": "2023-01-25T20:31:00.243380Z", + "shell.execute_reply": "2023-01-25T20:31:00.242571Z" }, "papermill": { - "duration": 0.048862, - "end_time": "2023-01-24T18:17:17.881003", + "duration": 0.04174, + "end_time": "2023-01-25T20:31:00.245241", "exception": false, - "start_time": "2023-01-24T18:17:17.832141", + "start_time": "2023-01-25T20:31:00.203501", "status": "completed" }, "pycharm": { @@ -1152,10 +1152,10 @@ "id": "c97cb9ba", "metadata": { "papermill": { - "duration": 0.040274, - "end_time": "2023-01-24T18:17:17.961142", + "duration": 0.032752, + "end_time": "2023-01-25T20:31:00.309685", "exception": false, - "start_time": "2023-01-24T18:17:17.920868", + "start_time": "2023-01-25T20:31:00.276933", "status": "completed" }, "pycharm": { @@ -1172,10 +1172,10 @@ "id": "13d5a9dd", "metadata": { "papermill": { - "duration": 0.039631, - "end_time": "2023-01-24T18:17:18.040824", + "duration": 0.03097, + "end_time": "2023-01-25T20:31:00.372465", "exception": false, - "start_time": "2023-01-24T18:17:18.001193", + "start_time": "2023-01-25T20:31:00.341495", "status": "completed" }, "pycharm": { @@ -1192,10 +1192,10 @@ "id": "2331defa", "metadata": { "papermill": { - "duration": 0.039524, - "end_time": "2023-01-24T18:17:18.120479", + "duration": 0.030563, + "end_time": "2023-01-25T20:31:00.436402", "exception": false, - "start_time": "2023-01-24T18:17:18.080955", + "start_time": "2023-01-25T20:31:00.405839", "status": "completed" }, "pycharm": { @@ -1215,16 +1215,16 @@ "id": "44e94072", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:17:18.201927Z", - "iopub.status.busy": "2023-01-24T18:17:18.201237Z", - "iopub.status.idle": "2023-01-24T18:17:35.323306Z", - "shell.execute_reply": "2023-01-24T18:17:35.322599Z" + "iopub.execute_input": "2023-01-25T20:31:00.505422Z", + "iopub.status.busy": "2023-01-25T20:31:00.504865Z", + "iopub.status.idle": "2023-01-25T20:31:26.051616Z", + "shell.execute_reply": "2023-01-25T20:31:26.050539Z" }, "papermill": { - "duration": 17.164901, - "end_time": "2023-01-24T18:17:35.325182", + "duration": 25.585731, + "end_time": "2023-01-25T20:31:26.055677", "exception": false, - "start_time": "2023-01-24T18:17:18.160281", + "start_time": "2023-01-25T20:31:00.469946", "status": "completed" }, "pycharm": { @@ -1280,10 +1280,10 @@ "id": "eaf1d1d8", "metadata": { "papermill": { - "duration": 0.039644, - "end_time": "2023-01-24T18:17:35.405164", + "duration": 0.034521, + "end_time": "2023-01-25T20:31:26.126094", "exception": false, - "start_time": "2023-01-24T18:17:35.365520", + "start_time": "2023-01-25T20:31:26.091573", "status": "completed" }, "pycharm": { @@ -1301,16 +1301,16 @@ "id": "def906e4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:17:35.485602Z", - "iopub.status.busy": "2023-01-24T18:17:35.485064Z", - "iopub.status.idle": "2023-01-24T18:17:35.755187Z", - "shell.execute_reply": "2023-01-24T18:17:35.753093Z" + "iopub.execute_input": "2023-01-25T20:31:26.191106Z", + "iopub.status.busy": "2023-01-25T20:31:26.190744Z", + "iopub.status.idle": "2023-01-25T20:31:26.577705Z", + "shell.execute_reply": "2023-01-25T20:31:26.576517Z" }, "papermill": { - "duration": 0.312078, - "end_time": "2023-01-24T18:17:35.756709", + "duration": 0.425531, + "end_time": "2023-01-25T20:31:26.582755", "exception": false, - "start_time": "2023-01-24T18:17:35.444631", + "start_time": "2023-01-25T20:31:26.157224", "status": "completed" }, "pycharm": { @@ -1357,10 +1357,10 @@ "id": "a16e342b", "metadata": { "papermill": { - "duration": 0.042111, - "end_time": "2023-01-24T18:17:35.842254", + "duration": 0.036728, + "end_time": "2023-01-25T20:31:26.659929", "exception": false, - "start_time": "2023-01-24T18:17:35.800143", + "start_time": "2023-01-25T20:31:26.623201", "status": "completed" }, "pycharm": { @@ -1379,10 +1379,10 @@ "id": "ce33fba1", "metadata": { "papermill": { - "duration": 0.042163, - "end_time": "2023-01-24T18:17:35.926570", + "duration": 0.035367, + "end_time": "2023-01-25T20:31:26.730752", "exception": false, - "start_time": "2023-01-24T18:17:35.884407", + "start_time": "2023-01-25T20:31:26.695385", "status": "completed" }, "pycharm": { @@ -1399,10 +1399,10 @@ "id": "7aad66fd", "metadata": { "papermill": { - "duration": 0.041979, - "end_time": "2023-01-24T18:17:36.011243", + "duration": 0.035359, + "end_time": "2023-01-25T20:31:26.804915", "exception": false, - "start_time": "2023-01-24T18:17:35.969264", + "start_time": "2023-01-25T20:31:26.769556", "status": "completed" }, "pycharm": { @@ -1429,16 +1429,16 @@ "id": "941ddd2c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:17:36.098028Z", - "iopub.status.busy": "2023-01-24T18:17:36.097317Z", - "iopub.status.idle": "2023-01-24T18:17:36.108473Z", - "shell.execute_reply": "2023-01-24T18:17:36.107919Z" + "iopub.execute_input": "2023-01-25T20:31:26.877369Z", + "iopub.status.busy": "2023-01-25T20:31:26.876982Z", + "iopub.status.idle": "2023-01-25T20:31:26.889867Z", + "shell.execute_reply": "2023-01-25T20:31:26.889073Z" }, "papermill": { - "duration": 0.056633, - "end_time": "2023-01-24T18:17:36.109897", + "duration": 0.051348, + "end_time": "2023-01-25T20:31:26.891879", "exception": false, - "start_time": "2023-01-24T18:17:36.053264", + "start_time": "2023-01-25T20:31:26.840531", "status": "completed" }, "pycharm": { @@ -1462,10 +1462,10 @@ "id": "bcbf215a", "metadata": { "papermill": { - "duration": 0.042167, - "end_time": "2023-01-24T18:17:36.194531", + "duration": 0.033692, + "end_time": "2023-01-25T20:31:26.960457", "exception": false, - "start_time": "2023-01-24T18:17:36.152364", + "start_time": "2023-01-25T20:31:26.926765", "status": "completed" }, "pycharm": { @@ -1483,16 +1483,16 @@ "id": "0e2740e2", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:17:36.280704Z", - "iopub.status.busy": "2023-01-24T18:17:36.280014Z", - "iopub.status.idle": "2023-01-24T18:17:36.388302Z", - "shell.execute_reply": "2023-01-24T18:17:36.387596Z" + "iopub.execute_input": "2023-01-25T20:31:27.029855Z", + "iopub.status.busy": "2023-01-25T20:31:27.029106Z", + "iopub.status.idle": "2023-01-25T20:31:27.188987Z", + "shell.execute_reply": "2023-01-25T20:31:27.187932Z" }, "papermill": { - "duration": 0.153275, - "end_time": "2023-01-24T18:17:36.389933", + "duration": 0.197261, + "end_time": "2023-01-25T20:31:27.191355", "exception": false, - "start_time": "2023-01-24T18:17:36.236658", + "start_time": "2023-01-25T20:31:26.994094", "status": "completed" }, "pycharm": { @@ -1532,10 +1532,10 @@ "id": "6b70c749", "metadata": { "papermill": { - "duration": 0.042888, - "end_time": "2023-01-24T18:17:36.476319", + "duration": 0.036535, + "end_time": "2023-01-25T20:31:27.264281", "exception": false, - "start_time": "2023-01-24T18:17:36.433431", + "start_time": "2023-01-25T20:31:27.227746", "status": "completed" }, "pycharm": { @@ -1553,16 +1553,16 @@ "id": "44516ecb", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:17:36.563649Z", - "iopub.status.busy": "2023-01-24T18:17:36.563107Z", - "iopub.status.idle": "2023-01-24T18:17:36.569830Z", - "shell.execute_reply": "2023-01-24T18:17:36.569286Z" + "iopub.execute_input": "2023-01-25T20:31:27.337363Z", + "iopub.status.busy": "2023-01-25T20:31:27.336780Z", + "iopub.status.idle": "2023-01-25T20:31:27.346009Z", + "shell.execute_reply": "2023-01-25T20:31:27.345221Z" }, "papermill": { - "duration": 0.052108, - "end_time": "2023-01-24T18:17:36.571159", + "duration": 0.049052, + "end_time": "2023-01-25T20:31:27.347925", "exception": false, - "start_time": "2023-01-24T18:17:36.519051", + "start_time": "2023-01-25T20:31:27.298873", "status": "completed" }, "pycharm": { @@ -1602,10 +1602,10 @@ "id": "79cc57c1", "metadata": { "papermill": { - "duration": 0.042619, - "end_time": "2023-01-24T18:17:36.656634", + "duration": 0.035978, + "end_time": "2023-01-25T20:31:27.419389", "exception": false, - "start_time": "2023-01-24T18:17:36.614015", + "start_time": "2023-01-25T20:31:27.383411", "status": "completed" }, "pycharm": { @@ -1623,16 +1623,16 @@ "id": "09081aba", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:17:36.743858Z", - "iopub.status.busy": "2023-01-24T18:17:36.743312Z", - "iopub.status.idle": "2023-01-24T18:17:44.124200Z", - "shell.execute_reply": "2023-01-24T18:17:44.123465Z" + "iopub.execute_input": "2023-01-25T20:31:27.491730Z", + "iopub.status.busy": "2023-01-25T20:31:27.491016Z", + "iopub.status.idle": "2023-01-25T20:31:38.484782Z", + "shell.execute_reply": "2023-01-25T20:31:38.483808Z" }, "papermill": { - "duration": 7.426262, - "end_time": "2023-01-24T18:17:44.125814", + "duration": 11.032852, + "end_time": "2023-01-25T20:31:38.487052", "exception": false, - "start_time": "2023-01-24T18:17:36.699552", + "start_time": "2023-01-25T20:31:27.454200", "status": "completed" }, "pycharm": { @@ -1672,10 +1672,10 @@ "id": "9471f1ed", "metadata": { "papermill": { - "duration": 0.044118, - "end_time": "2023-01-24T18:17:44.214892", + "duration": 0.038129, + "end_time": "2023-01-25T20:31:38.562282", "exception": false, - "start_time": "2023-01-24T18:17:44.170774", + "start_time": "2023-01-25T20:31:38.524153", "status": "completed" }, "pycharm": { @@ -1692,10 +1692,10 @@ "id": "b5c4a5da", "metadata": { "papermill": { - "duration": 0.043921, - "end_time": "2023-01-24T18:17:44.303049", + "duration": 0.035001, + "end_time": "2023-01-25T20:31:38.635496", "exception": false, - "start_time": "2023-01-24T18:17:44.259128", + "start_time": "2023-01-25T20:31:38.600495", "status": "completed" }, "pycharm": { @@ -1712,10 +1712,10 @@ "id": "1fa07216", "metadata": { "papermill": { - "duration": 0.044082, - "end_time": "2023-01-24T18:17:44.429844", + "duration": 0.035089, + "end_time": "2023-01-25T20:31:38.706292", "exception": false, - "start_time": "2023-01-24T18:17:44.385762", + "start_time": "2023-01-25T20:31:38.671203", "status": "completed" }, "pycharm": { @@ -1737,16 +1737,16 @@ "id": "13f434fb", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:17:44.519729Z", - "iopub.status.busy": "2023-01-24T18:17:44.519179Z", - "iopub.status.idle": "2023-01-24T18:19:39.583345Z", - "shell.execute_reply": "2023-01-24T18:19:39.582667Z" + "iopub.execute_input": "2023-01-25T20:31:38.780480Z", + "iopub.status.busy": "2023-01-25T20:31:38.779547Z", + "iopub.status.idle": "2023-01-25T20:32:52.262074Z", + "shell.execute_reply": "2023-01-25T20:32:52.261052Z" }, "papermill": { - "duration": 115.112061, - "end_time": "2023-01-24T18:19:39.585767", + "duration": 73.52265, + "end_time": "2023-01-25T20:32:52.264722", "exception": false, - "start_time": "2023-01-24T18:17:44.473706", + "start_time": "2023-01-25T20:31:38.742072", "status": "completed" }, "pycharm": { @@ -1760,7 +1760,7 @@ "output_type": "stream", "text": [ "WARNING:root:downloading a 2692.640MiB file from http://api.brain-map.org//api/v2/well_known_file_download/1026123725\n", - "Downloading: 100%|██████████| 2.82G/2.82G [01:52<00:00, 25.1MB/s]\n" + "Downloading: 100%|██████████| 2.82G/2.82G [01:10<00:00, 40.3MB/s]\n" ] } ], @@ -1776,16 +1776,16 @@ "id": "2b74315f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:19:39.779232Z", - "iopub.status.busy": "2023-01-24T18:19:39.778945Z", - "iopub.status.idle": "2023-01-24T18:21:30.680467Z", - "shell.execute_reply": "2023-01-24T18:21:30.653136Z" + "iopub.execute_input": "2023-01-25T20:32:52.410248Z", + "iopub.status.busy": "2023-01-25T20:32:52.408828Z", + "iopub.status.idle": "2023-01-25T20:35:19.096982Z", + "shell.execute_reply": "2023-01-25T20:35:19.022366Z" }, "papermill": { - "duration": 111.092402, - "end_time": "2023-01-24T18:21:30.774411", + "duration": 146.892965, + "end_time": "2023-01-25T20:35:19.227677", "exception": false, - "start_time": "2023-01-24T18:19:39.682009", + "start_time": "2023-01-25T20:32:52.334712", "status": "completed" }, "pycharm": { @@ -1811,16 +1811,16 @@ "id": "22286e40", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:21:31.303883Z", - "iopub.status.busy": "2023-01-24T18:21:31.302630Z", - "iopub.status.idle": "2023-01-24T18:21:32.022595Z", - "shell.execute_reply": "2023-01-24T18:21:32.021693Z" + "iopub.execute_input": "2023-01-25T20:35:19.700447Z", + "iopub.status.busy": "2023-01-25T20:35:19.697790Z", + "iopub.status.idle": "2023-01-25T20:35:20.878490Z", + "shell.execute_reply": "2023-01-25T20:35:20.876067Z" }, "papermill": { - "duration": 0.870556, - "end_time": "2023-01-24T18:21:32.047000", + "duration": 1.333684, + "end_time": "2023-01-25T20:35:20.900627", "exception": false, - "start_time": "2023-01-24T18:21:31.176444", + "start_time": "2023-01-25T20:35:19.566943", "status": "completed" }, "pycharm": { @@ -1849,10 +1849,10 @@ "id": "2429ee3d", "metadata": { "papermill": { - "duration": 0.099393, - "end_time": "2023-01-24T18:21:32.258429", + "duration": 0.067762, + "end_time": "2023-01-25T20:35:21.048741", "exception": false, - "start_time": "2023-01-24T18:21:32.159036", + "start_time": "2023-01-25T20:35:20.980979", "status": "completed" }, "pycharm": { @@ -1872,16 +1872,16 @@ "id": "16920e90", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:21:32.458536Z", - "iopub.status.busy": "2023-01-24T18:21:32.457979Z", - "iopub.status.idle": "2023-01-24T18:21:32.495577Z", - "shell.execute_reply": "2023-01-24T18:21:32.494936Z" + "iopub.execute_input": "2023-01-25T20:35:21.192626Z", + "iopub.status.busy": "2023-01-25T20:35:21.192232Z", + "iopub.status.idle": "2023-01-25T20:35:21.282058Z", + "shell.execute_reply": "2023-01-25T20:35:21.281025Z" }, "papermill": { - "duration": 0.139471, - "end_time": "2023-01-24T18:21:32.497649", + "duration": 0.16631, + "end_time": "2023-01-25T20:35:21.285145", "exception": false, - "start_time": "2023-01-24T18:21:32.358178", + "start_time": "2023-01-25T20:35:21.118835", "status": "completed" }, "pycharm": { @@ -1906,16 +1906,16 @@ "id": "e1e5edd0", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:21:32.695716Z", - "iopub.status.busy": "2023-01-24T18:21:32.695173Z", - "iopub.status.idle": "2023-01-24T18:21:34.321955Z", - "shell.execute_reply": "2023-01-24T18:21:34.320316Z" + "iopub.execute_input": "2023-01-25T20:35:21.430095Z", + "iopub.status.busy": "2023-01-25T20:35:21.429566Z", + "iopub.status.idle": "2023-01-25T20:35:24.757216Z", + "shell.execute_reply": "2023-01-25T20:35:24.756130Z" }, "papermill": { - "duration": 1.727948, - "end_time": "2023-01-24T18:21:34.323955", + "duration": 3.400855, + "end_time": "2023-01-25T20:35:24.759725", "exception": false, - "start_time": "2023-01-24T18:21:32.596007", + "start_time": "2023-01-25T20:35:21.358870", "status": "completed" }, "pycharm": { @@ -1955,10 +1955,10 @@ "id": "e18b2e58", "metadata": { "papermill": { - "duration": 0.099023, - "end_time": "2023-01-24T18:21:34.526347", + "duration": 0.07324, + "end_time": "2023-01-25T20:35:24.911517", "exception": false, - "start_time": "2023-01-24T18:21:34.427324", + "start_time": "2023-01-25T20:35:24.838277", "status": "completed" }, "pycharm": { @@ -1976,16 +1976,16 @@ "id": "31a5634f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:21:34.725327Z", - "iopub.status.busy": "2023-01-24T18:21:34.724651Z", - "iopub.status.idle": "2023-01-24T18:22:48.103069Z", - "shell.execute_reply": "2023-01-24T18:22:48.091279Z" + "iopub.execute_input": "2023-01-25T20:35:25.067249Z", + "iopub.status.busy": "2023-01-25T20:35:25.066885Z", + "iopub.status.idle": "2023-01-25T20:36:51.937554Z", + "shell.execute_reply": "2023-01-25T20:36:51.917566Z" }, "papermill": { - "duration": 73.900854, - "end_time": "2023-01-24T18:22:48.526097", + "duration": 87.419541, + "end_time": "2023-01-25T20:36:52.404846", "exception": false, - "start_time": "2023-01-24T18:21:34.625243", + "start_time": "2023-01-25T20:35:24.985305", "status": "completed" }, "pycharm": { @@ -2027,10 +2027,10 @@ "id": "47c891bb", "metadata": { "papermill": { - "duration": 0.101393, - "end_time": "2023-01-24T18:22:48.731838", + "duration": 0.080812, + "end_time": "2023-01-25T20:36:52.571038", "exception": false, - "start_time": "2023-01-24T18:22:48.630445", + "start_time": "2023-01-25T20:36:52.490226", "status": "completed" }, "pycharm": { @@ -2047,10 +2047,10 @@ "id": "faa3be8f", "metadata": { "papermill": { - "duration": 0.113375, - "end_time": "2023-01-24T18:22:48.945981", + "duration": 0.081354, + "end_time": "2023-01-25T20:36:52.728713", "exception": false, - "start_time": "2023-01-24T18:22:48.832606", + "start_time": "2023-01-25T20:36:52.647359", "status": "completed" }, "pycharm": { @@ -2068,16 +2068,16 @@ "id": "3d14d5bb", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:22:49.715058Z", - "iopub.status.busy": "2023-01-24T18:22:49.714528Z", - "iopub.status.idle": "2023-01-24T18:24:10.466471Z", - "shell.execute_reply": "2023-01-24T18:24:10.465820Z" + "iopub.execute_input": "2023-01-25T20:36:52.915779Z", + "iopub.status.busy": "2023-01-25T20:36:52.914911Z", + "iopub.status.idle": "2023-01-25T20:37:42.324743Z", + "shell.execute_reply": "2023-01-25T20:37:42.323615Z" }, "papermill": { - "duration": 80.865347, - "end_time": "2023-01-24T18:24:10.468350", + "duration": 49.518748, + "end_time": "2023-01-25T20:37:42.327113", "exception": false, - "start_time": "2023-01-24T18:22:49.603003", + "start_time": "2023-01-25T20:36:52.808365", "status": "completed" }, "pycharm": { @@ -2091,7 +2091,7 @@ "output_type": "stream", "text": [ "WARNING:root:downloading a 1912.961MiB file from http://api.brain-map.org//api/v2/well_known_file_download/1026123519\n", - "Downloading: 100%|██████████| 2.01G/2.01G [01:16<00:00, 26.3MB/s]\n" + "Downloading: 100%|██████████| 2.01G/2.01G [00:43<00:00, 46.2MB/s]\n" ] } ], @@ -2107,16 +2107,16 @@ "id": "963ed3f6", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:24:10.752513Z", - "iopub.status.busy": "2023-01-24T18:24:10.751795Z", - "iopub.status.idle": "2023-01-24T18:24:49.450826Z", - "shell.execute_reply": "2023-01-24T18:24:49.450159Z" + "iopub.execute_input": "2023-01-25T20:37:42.545409Z", + "iopub.status.busy": "2023-01-25T20:37:42.544025Z", + "iopub.status.idle": "2023-01-25T20:38:35.375528Z", + "shell.execute_reply": "2023-01-25T20:38:35.374434Z" }, "papermill": { - "duration": 38.838141, - "end_time": "2023-01-24T18:24:49.452694", + "duration": 52.935873, + "end_time": "2023-01-25T20:38:35.378382", "exception": false, - "start_time": "2023-01-24T18:24:10.614553", + "start_time": "2023-01-25T20:37:42.442509", "status": "completed" }, "pycharm": { @@ -2142,16 +2142,16 @@ "id": "d5433961", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:24:49.728172Z", - "iopub.status.busy": "2023-01-24T18:24:49.727367Z", - "iopub.status.idle": "2023-01-24T18:24:50.009485Z", - "shell.execute_reply": "2023-01-24T18:24:50.008790Z" + "iopub.execute_input": "2023-01-25T20:38:35.586651Z", + "iopub.status.busy": "2023-01-25T20:38:35.586077Z", + "iopub.status.idle": "2023-01-25T20:38:35.986616Z", + "shell.execute_reply": "2023-01-25T20:38:35.985578Z" }, "papermill": { - "duration": 0.425753, - "end_time": "2023-01-24T18:24:50.015875", + "duration": 0.511047, + "end_time": "2023-01-25T20:38:35.992657", "exception": false, - "start_time": "2023-01-24T18:24:49.590122", + "start_time": "2023-01-25T20:38:35.481610", "status": "completed" }, "pycharm": { @@ -2180,10 +2180,10 @@ "id": "8b6bd358", "metadata": { "papermill": { - "duration": 0.141611, - "end_time": "2023-01-24T18:24:50.313841", + "duration": 0.104111, + "end_time": "2023-01-25T20:38:36.226516", "exception": false, - "start_time": "2023-01-24T18:24:50.172230", + "start_time": "2023-01-25T20:38:36.122405", "status": "completed" }, "pycharm": { @@ -2217,17 +2217,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 727.810647, - "end_time": "2023-01-24T18:24:51.581460", + "duration": 689.877682, + "end_time": "2023-01-25T20:38:39.215381", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/ecephys_optotagging.ipynb", - "output_path": "/tmp/tmpk76s0da9/scratch_nb.ipynb", + "output_path": "/tmp/tmpd8smef4k/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmpk76s0da9", + "output_dir": "/tmp/tmpd8smef4k", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T18:12:43.770813", + "start_time": "2023-01-25T20:27:09.337699", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/ecephys_quality_metrics.ipynb b/doc_template/examples_root/examples/nb/ecephys_quality_metrics.ipynb index 53e7604e1..e33ce04c7 100644 --- a/doc_template/examples_root/examples/nb/ecephys_quality_metrics.ipynb +++ b/doc_template/examples_root/examples/nb/ecephys_quality_metrics.ipynb @@ -5,10 +5,10 @@ "id": "f56ac62f", "metadata": { "papermill": { - "duration": 0.010035, - "end_time": "2023-01-24T16:54:17.267667", + "duration": 0.012689, + "end_time": "2023-01-25T19:00:58.959666", "exception": false, - "start_time": "2023-01-24T16:54:17.257632", + "start_time": "2023-01-25T19:00:58.946977", "status": "completed" }, "tags": [] @@ -32,10 +32,10 @@ "id": "0c7f4cd5", "metadata": { "papermill": { - "duration": 0.008606, - "end_time": "2023-01-24T16:54:17.285294", + "duration": 0.010273, + "end_time": "2023-01-25T19:00:58.982609", "exception": false, - "start_time": "2023-01-24T16:54:17.276688", + "start_time": "2023-01-25T19:00:58.972336", "status": "completed" }, "tags": [] @@ -75,10 +75,10 @@ "id": "ce788b3d", "metadata": { "papermill": { - "duration": 0.009052, - "end_time": "2023-01-24T16:54:17.304365", + "duration": 0.010198, + "end_time": "2023-01-25T19:00:59.003634", "exception": false, - "start_time": "2023-01-24T16:54:17.295313", + "start_time": "2023-01-25T19:00:58.993436", "status": "completed" }, "tags": [] @@ -98,10 +98,10 @@ "id": "9da24570", "metadata": { "papermill": { - "duration": 0.008567, - "end_time": "2023-01-24T16:54:17.321547", + "duration": 0.009934, + "end_time": "2023-01-25T19:00:59.024603", "exception": false, - "start_time": "2023-01-24T16:54:17.312980", + "start_time": "2023-01-25T19:00:59.014669", "status": "completed" }, "tags": [] @@ -120,16 +120,16 @@ "id": "5e0bc6e6", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:54:17.340369Z", - "iopub.status.busy": "2023-01-24T16:54:17.339887Z", - "iopub.status.idle": "2023-01-24T16:54:24.638502Z", - "shell.execute_reply": "2023-01-24T16:54:24.637800Z" + "iopub.execute_input": "2023-01-25T19:00:59.047362Z", + "iopub.status.busy": "2023-01-25T19:00:59.046579Z", + "iopub.status.idle": "2023-01-25T19:01:08.516692Z", + "shell.execute_reply": "2023-01-25T19:01:08.515631Z" }, "papermill": { - "duration": 7.31066, - "end_time": "2023-01-24T16:54:24.640829", + "duration": 9.484741, + "end_time": "2023-01-25T19:01:08.519454", "exception": false, - "start_time": "2023-01-24T16:54:17.330169", + "start_time": "2023-01-25T19:00:59.034713", "status": "completed" }, "tags": [] @@ -161,16 +161,16 @@ "id": "8133e168", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:54:24.660993Z", - "iopub.status.busy": "2023-01-24T16:54:24.660129Z", - "iopub.status.idle": "2023-01-24T16:54:24.663956Z", - "shell.execute_reply": "2023-01-24T16:54:24.663283Z" + "iopub.execute_input": "2023-01-25T19:01:08.543028Z", + "iopub.status.busy": "2023-01-25T19:01:08.542249Z", + "iopub.status.idle": "2023-01-25T19:01:08.546896Z", + "shell.execute_reply": "2023-01-25T19:01:08.546038Z" }, "papermill": { - "duration": 0.015229, - "end_time": "2023-01-24T16:54:24.665395", + "duration": 0.018405, + "end_time": "2023-01-25T19:01:08.549096", "exception": false, - "start_time": "2023-01-24T16:54:24.650166", + "start_time": "2023-01-25T19:01:08.530691", "status": "completed" }, "tags": [ @@ -189,16 +189,16 @@ "id": "6279ac86", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:54:24.707229Z", - "iopub.status.busy": "2023-01-24T16:54:24.706607Z", - "iopub.status.idle": "2023-01-24T16:57:37.520117Z", - "shell.execute_reply": "2023-01-24T16:57:37.519428Z" + "iopub.execute_input": "2023-01-25T19:01:08.599545Z", + "iopub.status.busy": "2023-01-25T19:01:08.598885Z", + "iopub.status.idle": "2023-01-25T19:04:10.886334Z", + "shell.execute_reply": "2023-01-25T19:04:10.885250Z" }, "papermill": { - "duration": 192.824794, - "end_time": "2023-01-24T16:57:37.521951", + "duration": 182.301644, + "end_time": "2023-01-25T19:04:10.888867", "exception": false, - "start_time": "2023-01-24T16:54:24.697157", + "start_time": "2023-01-25T19:01:08.587223", "status": "completed" }, "tags": [] @@ -218,16 +218,16 @@ "id": "664e205c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:37.541606Z", - "iopub.status.busy": "2023-01-24T16:57:37.540970Z", - "iopub.status.idle": "2023-01-24T16:57:37.546205Z", - "shell.execute_reply": "2023-01-24T16:57:37.545594Z" + "iopub.execute_input": "2023-01-25T19:04:10.914899Z", + "iopub.status.busy": "2023-01-25T19:04:10.914520Z", + "iopub.status.idle": "2023-01-25T19:04:10.922979Z", + "shell.execute_reply": "2023-01-25T19:04:10.921990Z" }, "papermill": { - "duration": 0.017058, - "end_time": "2023-01-24T16:57:37.548131", + "duration": 0.025604, + "end_time": "2023-01-25T19:04:10.926156", "exception": false, - "start_time": "2023-01-24T16:57:37.531073", + "start_time": "2023-01-25T19:04:10.900552", "status": "completed" }, "tags": [] @@ -253,10 +253,10 @@ "id": "bfeddc80", "metadata": { "papermill": { - "duration": 0.008703, - "end_time": "2023-01-24T16:57:37.565729", + "duration": 0.011995, + "end_time": "2023-01-25T19:04:10.949704", "exception": false, - "start_time": "2023-01-24T16:57:37.557026", + "start_time": "2023-01-25T19:04:10.937709", "status": "completed" }, "tags": [] @@ -279,16 +279,16 @@ "id": "d6aea523", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:37.584465Z", - "iopub.status.busy": "2023-01-24T16:57:37.584013Z", - "iopub.status.idle": "2023-01-24T16:57:38.316287Z", - "shell.execute_reply": "2023-01-24T16:57:38.315656Z" + "iopub.execute_input": "2023-01-25T19:04:10.976567Z", + "iopub.status.busy": "2023-01-25T19:04:10.975652Z", + "iopub.status.idle": "2023-01-25T19:04:12.059745Z", + "shell.execute_reply": "2023-01-25T19:04:12.058725Z" }, "papermill": { - "duration": 0.743381, - "end_time": "2023-01-24T16:57:38.317838", + "duration": 1.10084, + "end_time": "2023-01-25T19:04:12.062280", "exception": false, - "start_time": "2023-01-24T16:57:37.574457", + "start_time": "2023-01-25T19:04:10.961440", "status": "completed" }, "tags": [] @@ -318,10 +318,10 @@ "id": "3cafdb65", "metadata": { "papermill": { - "duration": 0.009019, - "end_time": "2023-01-24T16:57:38.336117", + "duration": 0.011605, + "end_time": "2023-01-25T19:04:12.086143", "exception": false, - "start_time": "2023-01-24T16:57:38.327098", + "start_time": "2023-01-25T19:04:12.074538", "status": "completed" }, "tags": [] @@ -338,16 +338,16 @@ "id": "2b05c0b4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:38.355612Z", - "iopub.status.busy": "2023-01-24T16:57:38.354833Z", - "iopub.status.idle": "2023-01-24T16:57:38.361447Z", - "shell.execute_reply": "2023-01-24T16:57:38.360917Z" + "iopub.execute_input": "2023-01-25T19:04:12.111967Z", + "iopub.status.busy": "2023-01-25T19:04:12.111526Z", + "iopub.status.idle": "2023-01-25T19:04:12.120365Z", + "shell.execute_reply": "2023-01-25T19:04:12.119457Z" }, "papermill": { - "duration": 0.017815, - "end_time": "2023-01-24T16:57:38.362771", + "duration": 0.025985, + "end_time": "2023-01-25T19:04:12.122891", "exception": false, - "start_time": "2023-01-24T16:57:38.344956", + "start_time": "2023-01-25T19:04:12.096906", "status": "completed" }, "tags": [] @@ -357,7 +357,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/tmp/ipykernel_3497/2366193608.py:1: DeprecationWarning: Please use `gaussian_filter1d` from the `scipy.ndimage` namespace, the `scipy.ndimage.filters` namespace is deprecated.\n", + "/tmp/ipykernel_3431/2366193608.py:1: DeprecationWarning: Please use `gaussian_filter1d` from the `scipy.ndimage` namespace, the `scipy.ndimage.filters` namespace is deprecated.\n", " from scipy.ndimage.filters import gaussian_filter1d\n" ] } @@ -389,10 +389,10 @@ "id": "80579018", "metadata": { "papermill": { - "duration": 0.009029, - "end_time": "2023-01-24T16:57:38.380720", + "duration": 0.012331, + "end_time": "2023-01-25T19:04:12.148183", "exception": false, - "start_time": "2023-01-24T16:57:38.371691", + "start_time": "2023-01-25T19:04:12.135852", "status": "completed" }, "tags": [] @@ -406,10 +406,10 @@ "id": "baa0a978", "metadata": { "papermill": { - "duration": 0.008765, - "end_time": "2023-01-24T16:57:38.398354", + "duration": 0.011041, + "end_time": "2023-01-25T19:04:12.170370", "exception": false, - "start_time": "2023-01-24T16:57:38.389589", + "start_time": "2023-01-25T19:04:12.159329", "status": "completed" }, "tags": [] @@ -424,16 +424,16 @@ "id": "336412e5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:38.417507Z", - "iopub.status.busy": "2023-01-24T16:57:38.416970Z", - "iopub.status.idle": "2023-01-24T16:57:38.500239Z", - "shell.execute_reply": "2023-01-24T16:57:38.499557Z" + "iopub.execute_input": "2023-01-25T19:04:12.198031Z", + "iopub.status.busy": "2023-01-25T19:04:12.197448Z", + "iopub.status.idle": "2023-01-25T19:04:12.320712Z", + "shell.execute_reply": "2023-01-25T19:04:12.319617Z" }, "papermill": { - "duration": 0.095388, - "end_time": "2023-01-24T16:57:38.502539", + "duration": 0.14269, + "end_time": "2023-01-25T19:04:12.325573", "exception": false, - "start_time": "2023-01-24T16:57:38.407151", + "start_time": "2023-01-25T19:04:12.182883", "status": "completed" }, "tags": [] @@ -462,10 +462,10 @@ "id": "d2d975a3", "metadata": { "papermill": { - "duration": 0.009217, - "end_time": "2023-01-24T16:57:38.521258", + "duration": 0.011799, + "end_time": "2023-01-25T19:04:12.349820", "exception": false, - "start_time": "2023-01-24T16:57:38.512041", + "start_time": "2023-01-25T19:04:12.338021", "status": "completed" }, "tags": [] @@ -480,16 +480,16 @@ "id": "7aab3cdf", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:38.541362Z", - "iopub.status.busy": "2023-01-24T16:57:38.540684Z", - "iopub.status.idle": "2023-01-24T16:57:38.738574Z", - "shell.execute_reply": "2023-01-24T16:57:38.737976Z" + "iopub.execute_input": "2023-01-25T19:04:12.378120Z", + "iopub.status.busy": "2023-01-25T19:04:12.377742Z", + "iopub.status.idle": "2023-01-25T19:04:12.655978Z", + "shell.execute_reply": "2023-01-25T19:04:12.654916Z" }, "papermill": { - "duration": 0.209935, - "end_time": "2023-01-24T16:57:38.740390", + "duration": 0.295259, + "end_time": "2023-01-25T19:04:12.658117", "exception": false, - "start_time": "2023-01-24T16:57:38.530455", + "start_time": "2023-01-25T19:04:12.362858", "status": "completed" }, "tags": [] @@ -518,10 +518,10 @@ "id": "282f5a5e", "metadata": { "papermill": { - "duration": 0.009619, - "end_time": "2023-01-24T16:57:38.759987", + "duration": 0.011744, + "end_time": "2023-01-25T19:04:12.682528", "exception": false, - "start_time": "2023-01-24T16:57:38.750368", + "start_time": "2023-01-25T19:04:12.670784", "status": "completed" }, "tags": [] @@ -536,16 +536,16 @@ "id": "2eb0d7a5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:38.780519Z", - "iopub.status.busy": "2023-01-24T16:57:38.779991Z", - "iopub.status.idle": "2023-01-24T16:57:38.891205Z", - "shell.execute_reply": "2023-01-24T16:57:38.890599Z" + "iopub.execute_input": "2023-01-25T19:04:12.708876Z", + "iopub.status.busy": "2023-01-25T19:04:12.708047Z", + "iopub.status.idle": "2023-01-25T19:04:12.867492Z", + "shell.execute_reply": "2023-01-25T19:04:12.866477Z" }, "papermill": { - "duration": 0.123229, - "end_time": "2023-01-24T16:57:38.892711", + "duration": 0.176468, + "end_time": "2023-01-25T19:04:12.870871", "exception": false, - "start_time": "2023-01-24T16:57:38.769482", + "start_time": "2023-01-25T19:04:12.694403", "status": "completed" }, "tags": [] @@ -574,10 +574,10 @@ "id": "15024537", "metadata": { "papermill": { - "duration": 0.010084, - "end_time": "2023-01-24T16:57:38.913097", + "duration": 0.011887, + "end_time": "2023-01-25T19:04:12.895114", "exception": false, - "start_time": "2023-01-24T16:57:38.903013", + "start_time": "2023-01-25T19:04:12.883227", "status": "completed" }, "tags": [] @@ -592,16 +592,16 @@ "id": "66ed5e5c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:38.934239Z", - "iopub.status.busy": "2023-01-24T16:57:38.933698Z", - "iopub.status.idle": "2023-01-24T16:57:39.090585Z", - "shell.execute_reply": "2023-01-24T16:57:39.089874Z" + "iopub.execute_input": "2023-01-25T19:04:12.923764Z", + "iopub.status.busy": "2023-01-25T19:04:12.922882Z", + "iopub.status.idle": "2023-01-25T19:04:13.148967Z", + "shell.execute_reply": "2023-01-25T19:04:13.147720Z" }, "papermill": { - "duration": 0.169834, - "end_time": "2023-01-24T16:57:39.092739", + "duration": 0.245036, + "end_time": "2023-01-25T19:04:13.152910", "exception": false, - "start_time": "2023-01-24T16:57:38.922905", + "start_time": "2023-01-25T19:04:12.907874", "status": "completed" }, "tags": [] @@ -647,10 +647,10 @@ "id": "b266d98f", "metadata": { "papermill": { - "duration": 0.010889, - "end_time": "2023-01-24T16:57:39.114724", + "duration": 0.013176, + "end_time": "2023-01-25T19:04:13.179836", "exception": false, - "start_time": "2023-01-24T16:57:39.103835", + "start_time": "2023-01-25T19:04:13.166660", "status": "completed" }, "tags": [] @@ -676,10 +676,10 @@ "id": "bdb748a6", "metadata": { "papermill": { - "duration": 0.010579, - "end_time": "2023-01-24T16:57:39.136191", + "duration": 0.014075, + "end_time": "2023-01-25T19:04:13.206808", "exception": false, - "start_time": "2023-01-24T16:57:39.125612", + "start_time": "2023-01-25T19:04:13.192733", "status": "completed" }, "tags": [] @@ -693,10 +693,10 @@ "id": "d909b295", "metadata": { "papermill": { - "duration": 0.010567, - "end_time": "2023-01-24T16:57:39.157396", + "duration": 0.013473, + "end_time": "2023-01-25T19:04:13.233479", "exception": false, - "start_time": "2023-01-24T16:57:39.146829", + "start_time": "2023-01-25T19:04:13.220006", "status": "completed" }, "tags": [] @@ -713,16 +713,16 @@ "id": "1a4959ab", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:39.180350Z", - "iopub.status.busy": "2023-01-24T16:57:39.179654Z", - "iopub.status.idle": "2023-01-24T16:57:39.323495Z", - "shell.execute_reply": "2023-01-24T16:57:39.322847Z" + "iopub.execute_input": "2023-01-25T19:04:13.262052Z", + "iopub.status.busy": "2023-01-25T19:04:13.261418Z", + "iopub.status.idle": "2023-01-25T19:04:13.461378Z", + "shell.execute_reply": "2023-01-25T19:04:13.460364Z" }, "papermill": { - "duration": 0.157107, - "end_time": "2023-01-24T16:57:39.325065", + "duration": 0.217416, + "end_time": "2023-01-25T19:04:13.463942", "exception": false, - "start_time": "2023-01-24T16:57:39.167958", + "start_time": "2023-01-25T19:04:13.246526", "status": "completed" }, "tags": [] @@ -731,7 +731,7 @@ { "data": { "text/plain": [ - "[]" + "[]" ] }, "execution_count": 12, @@ -769,10 +769,10 @@ "id": "8c37625a", "metadata": { "papermill": { - "duration": 0.011364, - "end_time": "2023-01-24T16:57:39.348024", + "duration": 0.014825, + "end_time": "2023-01-25T19:04:13.493372", "exception": false, - "start_time": "2023-01-24T16:57:39.336660", + "start_time": "2023-01-25T19:04:13.478547", "status": "completed" }, "tags": [] @@ -789,16 +789,16 @@ "id": "6cfa7535", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:39.371959Z", - "iopub.status.busy": "2023-01-24T16:57:39.371238Z", - "iopub.status.idle": "2023-01-24T16:57:39.377043Z", - "shell.execute_reply": "2023-01-24T16:57:39.376420Z" + "iopub.execute_input": "2023-01-25T19:04:13.527399Z", + "iopub.status.busy": "2023-01-25T19:04:13.526670Z", + "iopub.status.idle": "2023-01-25T19:04:13.534327Z", + "shell.execute_reply": "2023-01-25T19:04:13.533443Z" }, "papermill": { - "duration": 0.019322, - "end_time": "2023-01-24T16:57:39.378481", + "duration": 0.025676, + "end_time": "2023-01-25T19:04:13.536343", "exception": false, - "start_time": "2023-01-24T16:57:39.359159", + "start_time": "2023-01-25T19:04:13.510667", "status": "completed" }, "tags": [] @@ -824,10 +824,10 @@ "id": "0b326d6e", "metadata": { "papermill": { - "duration": 0.011285, - "end_time": "2023-01-24T16:57:39.401412", + "duration": 0.012984, + "end_time": "2023-01-25T19:04:13.562451", "exception": false, - "start_time": "2023-01-24T16:57:39.390127", + "start_time": "2023-01-25T19:04:13.549467", "status": "completed" }, "tags": [] @@ -850,10 +850,10 @@ "id": "317c63f5", "metadata": { "papermill": { - "duration": 0.011242, - "end_time": "2023-01-24T16:57:39.424078", + "duration": 0.013319, + "end_time": "2023-01-25T19:04:13.589723", "exception": false, - "start_time": "2023-01-24T16:57:39.412836", + "start_time": "2023-01-25T19:04:13.576404", "status": "completed" }, "tags": [] @@ -867,10 +867,10 @@ "id": "2fc0d378", "metadata": { "papermill": { - "duration": 0.011157, - "end_time": "2023-01-24T16:57:39.446500", + "duration": 0.01459, + "end_time": "2023-01-25T19:04:13.617820", "exception": false, - "start_time": "2023-01-24T16:57:39.435343", + "start_time": "2023-01-25T19:04:13.603230", "status": "completed" }, "tags": [] @@ -887,16 +887,16 @@ "id": "5fea6ba0", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:39.470916Z", - "iopub.status.busy": "2023-01-24T16:57:39.470351Z", - "iopub.status.idle": "2023-01-24T16:57:39.626632Z", - "shell.execute_reply": "2023-01-24T16:57:39.625986Z" + "iopub.execute_input": "2023-01-25T19:04:13.646072Z", + "iopub.status.busy": "2023-01-25T19:04:13.645513Z", + "iopub.status.idle": "2023-01-25T19:04:13.868186Z", + "shell.execute_reply": "2023-01-25T19:04:13.867020Z" }, "papermill": { - "duration": 0.170643, - "end_time": "2023-01-24T16:57:39.628516", + "duration": 0.239688, + "end_time": "2023-01-25T19:04:13.870571", "exception": false, - "start_time": "2023-01-24T16:57:39.457873", + "start_time": "2023-01-25T19:04:13.630883", "status": "completed" }, "tags": [] @@ -905,7 +905,7 @@ { "data": { "text/plain": [ - "[]" + "[]" ] }, "execution_count": 14, @@ -943,10 +943,10 @@ "id": "18f807fa", "metadata": { "papermill": { - "duration": 0.011975, - "end_time": "2023-01-24T16:57:39.652825", + "duration": 0.014994, + "end_time": "2023-01-25T19:04:13.901403", "exception": false, - "start_time": "2023-01-24T16:57:39.640850", + "start_time": "2023-01-25T19:04:13.886409", "status": "completed" }, "tags": [] @@ -965,16 +965,16 @@ "id": "30b5a235", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:39.678237Z", - "iopub.status.busy": "2023-01-24T16:57:39.677706Z", - "iopub.status.idle": "2023-01-24T16:57:39.683366Z", - "shell.execute_reply": "2023-01-24T16:57:39.682732Z" + "iopub.execute_input": "2023-01-25T19:04:13.934192Z", + "iopub.status.busy": "2023-01-25T19:04:13.933353Z", + "iopub.status.idle": "2023-01-25T19:04:13.941461Z", + "shell.execute_reply": "2023-01-25T19:04:13.940494Z" }, "papermill": { - "duration": 0.02116, - "end_time": "2023-01-24T16:57:39.685874", + "duration": 0.027546, + "end_time": "2023-01-25T19:04:13.943519", "exception": false, - "start_time": "2023-01-24T16:57:39.664714", + "start_time": "2023-01-25T19:04:13.915973", "status": "completed" }, "tags": [] @@ -1000,10 +1000,10 @@ "id": "1d0e813f", "metadata": { "papermill": { - "duration": 0.012199, - "end_time": "2023-01-24T16:57:39.710209", + "duration": 0.016066, + "end_time": "2023-01-25T19:04:13.974908", "exception": false, - "start_time": "2023-01-24T16:57:39.698010", + "start_time": "2023-01-25T19:04:13.958842", "status": "completed" }, "tags": [] @@ -1024,10 +1024,10 @@ "id": "09ae528a", "metadata": { "papermill": { - "duration": 0.011963, - "end_time": "2023-01-24T16:57:39.734180", + "duration": 0.014818, + "end_time": "2023-01-25T19:04:14.006032", "exception": false, - "start_time": "2023-01-24T16:57:39.722217", + "start_time": "2023-01-25T19:04:13.991214", "status": "completed" }, "tags": [] @@ -1041,10 +1041,10 @@ "id": "d92aebbc", "metadata": { "papermill": { - "duration": 0.012092, - "end_time": "2023-01-24T16:57:39.758268", + "duration": 0.014899, + "end_time": "2023-01-25T19:04:14.036400", "exception": false, - "start_time": "2023-01-24T16:57:39.746176", + "start_time": "2023-01-25T19:04:14.021501", "status": "completed" }, "tags": [] @@ -1063,16 +1063,16 @@ "id": "1dfdc02f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:39.783810Z", - "iopub.status.busy": "2023-01-24T16:57:39.783325Z", - "iopub.status.idle": "2023-01-24T16:57:39.925817Z", - "shell.execute_reply": "2023-01-24T16:57:39.925161Z" + "iopub.execute_input": "2023-01-25T19:04:14.069548Z", + "iopub.status.busy": "2023-01-25T19:04:14.068705Z", + "iopub.status.idle": "2023-01-25T19:04:14.276391Z", + "shell.execute_reply": "2023-01-25T19:04:14.275340Z" }, "papermill": { - "duration": 0.157279, - "end_time": "2023-01-24T16:57:39.927496", + "duration": 0.227277, + "end_time": "2023-01-25T19:04:14.278542", "exception": false, - "start_time": "2023-01-24T16:57:39.770217", + "start_time": "2023-01-25T19:04:14.051265", "status": "completed" }, "tags": [] @@ -1081,7 +1081,7 @@ { "data": { "text/plain": [ - "[]" + "[]" ] }, "execution_count": 16, @@ -1119,10 +1119,10 @@ "id": "448b0199", "metadata": { "papermill": { - "duration": 0.012602, - "end_time": "2023-01-24T16:57:39.953162", + "duration": 0.01576, + "end_time": "2023-01-25T19:04:14.310264", "exception": false, - "start_time": "2023-01-24T16:57:39.940560", + "start_time": "2023-01-25T19:04:14.294504", "status": "completed" }, "tags": [] @@ -1137,16 +1137,16 @@ "id": "654d8e9a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:39.979741Z", - "iopub.status.busy": "2023-01-24T16:57:39.979200Z", - "iopub.status.idle": "2023-01-24T16:57:40.149950Z", - "shell.execute_reply": "2023-01-24T16:57:40.149307Z" + "iopub.execute_input": "2023-01-25T19:04:14.342960Z", + "iopub.status.busy": "2023-01-25T19:04:14.342113Z", + "iopub.status.idle": "2023-01-25T19:04:14.585977Z", + "shell.execute_reply": "2023-01-25T19:04:14.584806Z" }, "papermill": { - "duration": 0.186102, - "end_time": "2023-01-24T16:57:40.151748", + "duration": 0.263785, + "end_time": "2023-01-25T19:04:14.589484", "exception": false, - "start_time": "2023-01-24T16:57:39.965646", + "start_time": "2023-01-25T19:04:14.325699", "status": "completed" }, "tags": [] @@ -1155,7 +1155,7 @@ { "data": { "text/plain": [ - "[]" + "[]" ] }, "execution_count": 17, @@ -1193,10 +1193,10 @@ "id": "7f0b8035", "metadata": { "papermill": { - "duration": 0.013574, - "end_time": "2023-01-24T16:57:40.179324", + "duration": 0.019431, + "end_time": "2023-01-25T19:04:14.629750", "exception": false, - "start_time": "2023-01-24T16:57:40.165750", + "start_time": "2023-01-25T19:04:14.610319", "status": "completed" }, "tags": [] @@ -1217,16 +1217,16 @@ "id": "3256fcfa", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:40.207846Z", - "iopub.status.busy": "2023-01-24T16:57:40.207148Z", - "iopub.status.idle": "2023-01-24T16:57:40.213033Z", - "shell.execute_reply": "2023-01-24T16:57:40.212386Z" + "iopub.execute_input": "2023-01-25T19:04:14.670899Z", + "iopub.status.busy": "2023-01-25T19:04:14.669947Z", + "iopub.status.idle": "2023-01-25T19:04:14.677995Z", + "shell.execute_reply": "2023-01-25T19:04:14.677049Z" }, "papermill": { - "duration": 0.021753, - "end_time": "2023-01-24T16:57:40.214450", + "duration": 0.028621, + "end_time": "2023-01-25T19:04:14.679997", "exception": false, - "start_time": "2023-01-24T16:57:40.192697", + "start_time": "2023-01-25T19:04:14.651376", "status": "completed" }, "tags": [] @@ -1252,10 +1252,10 @@ "id": "6380c39c", "metadata": { "papermill": { - "duration": 0.013747, - "end_time": "2023-01-24T16:57:40.241791", + "duration": 0.017919, + "end_time": "2023-01-25T19:04:14.720468", "exception": false, - "start_time": "2023-01-24T16:57:40.228044", + "start_time": "2023-01-25T19:04:14.702549", "status": "completed" }, "tags": [] @@ -1276,10 +1276,10 @@ "id": "8c5f1461", "metadata": { "papermill": { - "duration": 0.013433, - "end_time": "2023-01-24T16:57:40.268798", + "duration": 0.016849, + "end_time": "2023-01-25T19:04:14.756005", "exception": false, - "start_time": "2023-01-24T16:57:40.255365", + "start_time": "2023-01-25T19:04:14.739156", "status": "completed" }, "tags": [] @@ -1293,10 +1293,10 @@ "id": "a16c48ef", "metadata": { "papermill": { - "duration": 0.013489, - "end_time": "2023-01-24T16:57:40.295920", + "duration": 0.016109, + "end_time": "2023-01-25T19:04:14.788622", "exception": false, - "start_time": "2023-01-24T16:57:40.282431", + "start_time": "2023-01-25T19:04:14.772513", "status": "completed" }, "tags": [] @@ -1316,16 +1316,16 @@ "id": "1b2970ee", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:40.324789Z", - "iopub.status.busy": "2023-01-24T16:57:40.324210Z", - "iopub.status.idle": "2023-01-24T16:57:40.554242Z", - "shell.execute_reply": "2023-01-24T16:57:40.553544Z" + "iopub.execute_input": "2023-01-25T19:04:14.823005Z", + "iopub.status.busy": "2023-01-25T19:04:14.822439Z", + "iopub.status.idle": "2023-01-25T19:04:15.173031Z", + "shell.execute_reply": "2023-01-25T19:04:15.172009Z" }, "papermill": { - "duration": 0.246656, - "end_time": "2023-01-24T16:57:40.556159", + "duration": 0.371137, + "end_time": "2023-01-25T19:04:15.175846", "exception": false, - "start_time": "2023-01-24T16:57:40.309503", + "start_time": "2023-01-25T19:04:14.804709", "status": "completed" }, "tags": [] @@ -1360,10 +1360,10 @@ "id": "d3b1ee1e", "metadata": { "papermill": { - "duration": 0.014676, - "end_time": "2023-01-24T16:57:40.586028", + "duration": 0.017314, + "end_time": "2023-01-25T19:04:15.212429", "exception": false, - "start_time": "2023-01-24T16:57:40.571352", + "start_time": "2023-01-25T19:04:15.195115", "status": "completed" }, "tags": [] @@ -1377,10 +1377,10 @@ "id": "08f44fa1", "metadata": { "papermill": { - "duration": 0.014684, - "end_time": "2023-01-24T16:57:40.615260", + "duration": 0.017555, + "end_time": "2023-01-25T19:04:15.249486", "exception": false, - "start_time": "2023-01-24T16:57:40.600576", + "start_time": "2023-01-25T19:04:15.231931", "status": "completed" }, "tags": [] @@ -1404,10 +1404,10 @@ "id": "45e9cbc8", "metadata": { "papermill": { - "duration": 0.014301, - "end_time": "2023-01-24T16:57:40.644308", + "duration": 0.01769, + "end_time": "2023-01-25T19:04:15.284124", "exception": false, - "start_time": "2023-01-24T16:57:40.630007", + "start_time": "2023-01-25T19:04:15.266434", "status": "completed" }, "tags": [] @@ -1421,10 +1421,10 @@ "id": "d50f2e39", "metadata": { "papermill": { - "duration": 0.014287, - "end_time": "2023-01-24T16:57:40.672905", + "duration": 0.016894, + "end_time": "2023-01-25T19:04:15.318549", "exception": false, - "start_time": "2023-01-24T16:57:40.658618", + "start_time": "2023-01-25T19:04:15.301655", "status": "completed" }, "tags": [] @@ -1443,16 +1443,16 @@ "id": "ae7bba6e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:40.703137Z", - "iopub.status.busy": "2023-01-24T16:57:40.702552Z", - "iopub.status.idle": "2023-01-24T16:57:40.847750Z", - "shell.execute_reply": "2023-01-24T16:57:40.847036Z" + "iopub.execute_input": "2023-01-25T19:04:15.355523Z", + "iopub.status.busy": "2023-01-25T19:04:15.354667Z", + "iopub.status.idle": "2023-01-25T19:04:15.591622Z", + "shell.execute_reply": "2023-01-25T19:04:15.590483Z" }, "papermill": { - "duration": 0.162414, - "end_time": "2023-01-24T16:57:40.849593", + "duration": 0.257944, + "end_time": "2023-01-25T19:04:15.594597", "exception": false, - "start_time": "2023-01-24T16:57:40.687179", + "start_time": "2023-01-25T19:04:15.336653", "status": "completed" }, "tags": [] @@ -1487,10 +1487,10 @@ "id": "4d2b9f02", "metadata": { "papermill": { - "duration": 0.01549, - "end_time": "2023-01-24T16:57:40.880767", + "duration": 0.020652, + "end_time": "2023-01-25T19:04:15.635369", "exception": false, - "start_time": "2023-01-24T16:57:40.865277", + "start_time": "2023-01-25T19:04:15.614717", "status": "completed" }, "tags": [] @@ -1511,10 +1511,10 @@ "id": "5f65af1d", "metadata": { "papermill": { - "duration": 0.015139, - "end_time": "2023-01-24T16:57:40.911255", + "duration": 0.021758, + "end_time": "2023-01-25T19:04:15.675686", "exception": false, - "start_time": "2023-01-24T16:57:40.896116", + "start_time": "2023-01-25T19:04:15.653928", "status": "completed" }, "tags": [] @@ -1528,10 +1528,10 @@ "id": "2d5eaa40", "metadata": { "papermill": { - "duration": 0.015187, - "end_time": "2023-01-24T16:57:40.941600", + "duration": 0.017035, + "end_time": "2023-01-25T19:04:15.711234", "exception": false, - "start_time": "2023-01-24T16:57:40.926413", + "start_time": "2023-01-25T19:04:15.694199", "status": "completed" }, "tags": [] @@ -1546,16 +1546,16 @@ "id": "b70e62fc", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:40.973653Z", - "iopub.status.busy": "2023-01-24T16:57:40.973182Z", - "iopub.status.idle": "2023-01-24T16:57:41.117440Z", - "shell.execute_reply": "2023-01-24T16:57:41.116734Z" + "iopub.execute_input": "2023-01-25T19:04:15.749088Z", + "iopub.status.busy": "2023-01-25T19:04:15.748512Z", + "iopub.status.idle": "2023-01-25T19:04:15.945297Z", + "shell.execute_reply": "2023-01-25T19:04:15.944244Z" }, "papermill": { - "duration": 0.162442, - "end_time": "2023-01-24T16:57:41.119236", + "duration": 0.219117, + "end_time": "2023-01-25T19:04:15.948314", "exception": false, - "start_time": "2023-01-24T16:57:40.956794", + "start_time": "2023-01-25T19:04:15.729197", "status": "completed" }, "tags": [] @@ -1590,10 +1590,10 @@ "id": "f4356264", "metadata": { "papermill": { - "duration": 0.016024, - "end_time": "2023-01-24T16:57:41.153183", + "duration": 0.019764, + "end_time": "2023-01-25T19:04:15.988692", "exception": false, - "start_time": "2023-01-24T16:57:41.137159", + "start_time": "2023-01-25T19:04:15.968928", "status": "completed" }, "tags": [] @@ -1613,10 +1613,10 @@ "id": "7020b8f2", "metadata": { "papermill": { - "duration": 0.015772, - "end_time": "2023-01-24T16:57:41.184822", + "duration": 0.01964, + "end_time": "2023-01-25T19:04:16.028178", "exception": false, - "start_time": "2023-01-24T16:57:41.169050", + "start_time": "2023-01-25T19:04:16.008538", "status": "completed" }, "tags": [] @@ -1630,10 +1630,10 @@ "id": "e5d92d8d", "metadata": { "papermill": { - "duration": 0.01582, - "end_time": "2023-01-24T16:57:41.216505", + "duration": 0.019126, + "end_time": "2023-01-25T19:04:16.066058", "exception": false, - "start_time": "2023-01-24T16:57:41.200685", + "start_time": "2023-01-25T19:04:16.046932", "status": "completed" }, "tags": [] @@ -1648,16 +1648,16 @@ "id": "f9aa56bd", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:41.250095Z", - "iopub.status.busy": "2023-01-24T16:57:41.249522Z", - "iopub.status.idle": "2023-01-24T16:57:41.391990Z", - "shell.execute_reply": "2023-01-24T16:57:41.391268Z" + "iopub.execute_input": "2023-01-25T19:04:16.104985Z", + "iopub.status.busy": "2023-01-25T19:04:16.104334Z", + "iopub.status.idle": "2023-01-25T19:04:16.302015Z", + "shell.execute_reply": "2023-01-25T19:04:16.300620Z" }, "papermill": { - "duration": 0.161316, - "end_time": "2023-01-24T16:57:41.393744", + "duration": 0.219539, + "end_time": "2023-01-25T19:04:16.304418", "exception": false, - "start_time": "2023-01-24T16:57:41.232428", + "start_time": "2023-01-25T19:04:16.084879", "status": "completed" }, "tags": [] @@ -1692,10 +1692,10 @@ "id": "7740b37d", "metadata": { "papermill": { - "duration": 0.0166, - "end_time": "2023-01-24T16:57:41.427636", + "duration": 0.01871, + "end_time": "2023-01-25T19:04:16.343960", "exception": false, - "start_time": "2023-01-24T16:57:41.411036", + "start_time": "2023-01-25T19:04:16.325250", "status": "completed" }, "tags": [] @@ -1715,10 +1715,10 @@ "id": "4bb6eaf4", "metadata": { "papermill": { - "duration": 0.016421, - "end_time": "2023-01-24T16:57:41.460555", + "duration": 0.019442, + "end_time": "2023-01-25T19:04:16.382257", "exception": false, - "start_time": "2023-01-24T16:57:41.444134", + "start_time": "2023-01-25T19:04:16.362815", "status": "completed" }, "tags": [] @@ -1732,10 +1732,10 @@ "id": "733ab71b", "metadata": { "papermill": { - "duration": 0.016392, - "end_time": "2023-01-24T16:57:41.493398", + "duration": 0.01968, + "end_time": "2023-01-25T19:04:16.420972", "exception": false, - "start_time": "2023-01-24T16:57:41.477006", + "start_time": "2023-01-25T19:04:16.401292", "status": "completed" }, "tags": [] @@ -1750,16 +1750,16 @@ "id": "42778855", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:57:41.528346Z", - "iopub.status.busy": "2023-01-24T16:57:41.527779Z", - "iopub.status.idle": "2023-01-24T16:57:42.038863Z", - "shell.execute_reply": "2023-01-24T16:57:42.038221Z" + "iopub.execute_input": "2023-01-25T19:04:16.470522Z", + "iopub.status.busy": "2023-01-25T19:04:16.469461Z", + "iopub.status.idle": "2023-01-25T19:04:17.248158Z", + "shell.execute_reply": "2023-01-25T19:04:17.247100Z" }, "papermill": { - "duration": 0.530392, - "end_time": "2023-01-24T16:57:42.040472", + "duration": 0.810676, + "end_time": "2023-01-25T19:04:17.250367", "exception": false, - "start_time": "2023-01-24T16:57:41.510080", + "start_time": "2023-01-25T19:04:16.439691", "status": "completed" }, "tags": [] @@ -1835,17 +1835,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 206.216133, - "end_time": "2023-01-24T16:57:42.480259", + "duration": 200.216321, + "end_time": "2023-01-25T19:04:17.993429", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/ecephys_quality_metrics.ipynb", - "output_path": "/tmp/tmpzpiw4xat/scratch_nb.ipynb", + "output_path": "/tmp/tmpsdmjf69o/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmpzpiw4xat", + "output_dir": "/tmp/tmpsdmjf69o", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T16:54:16.264126", + "start_time": "2023-01-25T19:00:57.777108", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/ecephys_quickstart.ipynb b/doc_template/examples_root/examples/nb/ecephys_quickstart.ipynb index 6bb669122..364e3b5dc 100644 --- a/doc_template/examples_root/examples/nb/ecephys_quickstart.ipynb +++ b/doc_template/examples_root/examples/nb/ecephys_quickstart.ipynb @@ -5,10 +5,10 @@ "id": "3ecf3437", "metadata": { "papermill": { - "duration": 0.00637, - "end_time": "2023-01-24T17:08:57.987084", + "duration": 0.008779, + "end_time": "2023-01-25T19:20:04.429449", "exception": false, - "start_time": "2023-01-24T17:08:57.980714", + "start_time": "2023-01-25T19:20:04.420670", "status": "completed" }, "tags": [] @@ -30,16 +30,16 @@ "id": "8edbae18", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:08:57.998906Z", - "iopub.status.busy": "2023-01-24T17:08:57.998340Z", - "iopub.status.idle": "2023-01-24T17:09:05.329698Z", - "shell.execute_reply": "2023-01-24T17:09:05.329023Z" + "iopub.execute_input": "2023-01-25T19:20:04.444215Z", + "iopub.status.busy": "2023-01-25T19:20:04.443486Z", + "iopub.status.idle": "2023-01-25T19:20:14.636272Z", + "shell.execute_reply": "2023-01-25T19:20:14.635154Z" }, "papermill": { - "duration": 7.339244, - "end_time": "2023-01-24T17:09:05.331653", + "duration": 10.20308, + "end_time": "2023-01-25T19:20:14.638899", "exception": false, - "start_time": "2023-01-24T17:08:57.992409", + "start_time": "2023-01-25T19:20:04.435819", "status": "completed" }, "tags": [] @@ -69,10 +69,10 @@ "id": "51ee0b47", "metadata": { "papermill": { - "duration": 0.005168, - "end_time": "2023-01-24T17:09:05.342204", + "duration": 0.00641, + "end_time": "2023-01-25T19:20:14.657178", "exception": false, - "start_time": "2023-01-24T17:09:05.337036", + "start_time": "2023-01-25T19:20:14.650768", "status": "completed" }, "tags": [] @@ -87,16 +87,16 @@ "id": "9fdb40c0", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:09:05.353856Z", - "iopub.status.busy": "2023-01-24T17:09:05.352979Z", - "iopub.status.idle": "2023-01-24T17:09:05.356708Z", - "shell.execute_reply": "2023-01-24T17:09:05.356038Z" + "iopub.execute_input": "2023-01-25T19:20:14.671981Z", + "iopub.status.busy": "2023-01-25T19:20:14.670608Z", + "iopub.status.idle": "2023-01-25T19:20:14.675534Z", + "shell.execute_reply": "2023-01-25T19:20:14.674667Z" }, "papermill": { - "duration": 0.01142, - "end_time": "2023-01-24T17:09:05.358517", + "duration": 0.014816, + "end_time": "2023-01-25T19:20:14.677809", "exception": false, - "start_time": "2023-01-24T17:09:05.347097", + "start_time": "2023-01-25T19:20:14.662993", "status": "completed" }, "tags": [ @@ -115,16 +115,16 @@ "id": "7b5bbb79", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:09:05.384993Z", - "iopub.status.busy": "2023-01-24T17:09:05.384554Z", - "iopub.status.idle": "2023-01-24T17:12:14.819430Z", - "shell.execute_reply": "2023-01-24T17:12:14.813129Z" + "iopub.execute_input": "2023-01-25T19:20:14.712156Z", + "iopub.status.busy": "2023-01-25T19:20:14.711362Z", + "iopub.status.idle": "2023-01-25T19:23:13.309674Z", + "shell.execute_reply": "2023-01-25T19:23:13.308787Z" }, "papermill": { - "duration": 189.442489, - "end_time": "2023-01-24T17:12:14.821345", + "duration": 178.611796, + "end_time": "2023-01-25T19:23:13.315446", "exception": false, - "start_time": "2023-01-24T17:09:05.378856", + "start_time": "2023-01-25T19:20:14.703650", "status": "completed" }, "scrolled": false, @@ -153,10 +153,10 @@ "id": "536accb4", "metadata": { "papermill": { - "duration": 0.0052, - "end_time": "2023-01-24T17:12:14.831719", + "duration": 0.00588, + "end_time": "2023-01-25T19:23:13.327643", "exception": false, - "start_time": "2023-01-24T17:12:14.826519", + "start_time": "2023-01-25T19:23:13.321763", "status": "completed" }, "tags": [] @@ -171,16 +171,16 @@ "id": "e64a177c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:12:14.844016Z", - "iopub.status.busy": "2023-01-24T17:12:14.843504Z", - "iopub.status.idle": "2023-01-24T17:12:15.708325Z", - "shell.execute_reply": "2023-01-24T17:12:15.707644Z" + "iopub.execute_input": "2023-01-25T19:23:13.343088Z", + "iopub.status.busy": "2023-01-25T19:23:13.342259Z", + "iopub.status.idle": "2023-01-25T19:23:14.515601Z", + "shell.execute_reply": "2023-01-25T19:23:14.514705Z" }, "papermill": { - "duration": 0.872924, - "end_time": "2023-01-24T17:12:15.710093", + "duration": 1.183707, + "end_time": "2023-01-25T19:23:14.517690", "exception": false, - "start_time": "2023-01-24T17:12:14.837169", + "start_time": "2023-01-25T19:23:13.333983", "status": "completed" }, "tags": [] @@ -352,10 +352,10 @@ "id": "9894d4a6", "metadata": { "papermill": { - "duration": 0.005585, - "end_time": "2023-01-24T17:12:15.721368", + "duration": 0.00636, + "end_time": "2023-01-25T19:23:14.531622", "exception": false, - "start_time": "2023-01-24T17:12:15.715783", + "start_time": "2023-01-25T19:23:14.525262", "status": "completed" }, "tags": [] @@ -369,10 +369,10 @@ "id": "11b29253", "metadata": { "papermill": { - "duration": 0.005156, - "end_time": "2023-01-24T17:12:15.731737", + "duration": 0.006181, + "end_time": "2023-01-25T19:23:14.544556", "exception": false, - "start_time": "2023-01-24T17:12:15.726581", + "start_time": "2023-01-25T19:23:14.538375", "status": "completed" }, "tags": [] @@ -387,16 +387,16 @@ "id": "ead80e75", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:12:15.743678Z", - "iopub.status.busy": "2023-01-24T17:12:15.742999Z", - "iopub.status.idle": "2023-01-24T17:13:44.660051Z", - "shell.execute_reply": "2023-01-24T17:13:44.658794Z" + "iopub.execute_input": "2023-01-25T19:23:14.559043Z", + "iopub.status.busy": "2023-01-25T19:23:14.558731Z", + "iopub.status.idle": "2023-01-25T19:24:07.529628Z", + "shell.execute_reply": "2023-01-25T19:24:07.528608Z" }, "papermill": { - "duration": 88.9253, - "end_time": "2023-01-24T17:13:44.662274", + "duration": 52.981619, + "end_time": "2023-01-25T19:24:07.532458", "exception": false, - "start_time": "2023-01-24T17:12:15.736974", + "start_time": "2023-01-25T19:23:14.550839", "status": "completed" }, "tags": [] @@ -407,7 +407,7 @@ "output_type": "stream", "text": [ "WARNING:root:downloading a 2210.106MiB file from http://api.brain-map.org//api/v2/well_known_file_download/1026124645\n", - "Downloading: 100%|██████████| 2.32G/2.32G [01:26<00:00, 26.8MB/s]\n" + "Downloading: 100%|██████████| 2.32G/2.32G [00:49<00:00, 46.5MB/s]\n" ] } ], @@ -421,10 +421,10 @@ "id": "9b74b3a4", "metadata": { "papermill": { - "duration": 0.044963, - "end_time": "2023-01-24T17:13:44.753884", + "duration": 0.038729, + "end_time": "2023-01-25T19:24:07.613369", "exception": false, - "start_time": "2023-01-24T17:13:44.708921", + "start_time": "2023-01-25T19:24:07.574640", "status": "completed" }, "tags": [] @@ -439,16 +439,16 @@ "id": "af684914", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:13:44.846064Z", - "iopub.status.busy": "2023-01-24T17:13:44.845640Z", - "iopub.status.idle": "2023-01-24T17:14:07.132394Z", - "shell.execute_reply": "2023-01-24T17:14:07.131676Z" + "iopub.execute_input": "2023-01-25T19:24:07.690107Z", + "iopub.status.busy": "2023-01-25T19:24:07.689710Z", + "iopub.status.idle": "2023-01-25T19:24:41.005771Z", + "shell.execute_reply": "2023-01-25T19:24:41.004916Z" }, "papermill": { - "duration": 22.335086, - "end_time": "2023-01-24T17:14:07.134331", + "duration": 33.387803, + "end_time": "2023-01-25T19:24:41.041486", "exception": false, - "start_time": "2023-01-24T17:13:44.799245", + "start_time": "2023-01-25T19:24:07.653683", "status": "completed" }, "scrolled": false, @@ -515,10 +515,10 @@ "id": "be304e33", "metadata": { "papermill": { - "duration": 0.046144, - "end_time": "2023-01-24T17:14:07.228599", + "duration": 0.0374, + "end_time": "2023-01-25T19:24:41.116291", "exception": false, - "start_time": "2023-01-24T17:14:07.182455", + "start_time": "2023-01-25T19:24:41.078891", "status": "completed" }, "tags": [] @@ -533,16 +533,16 @@ "id": "d462da9c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:14:07.321155Z", - "iopub.status.busy": "2023-01-24T17:14:07.320588Z", - "iopub.status.idle": "2023-01-24T17:14:07.329741Z", - "shell.execute_reply": "2023-01-24T17:14:07.329074Z" + "iopub.execute_input": "2023-01-25T19:24:41.191220Z", + "iopub.status.busy": "2023-01-25T19:24:41.190334Z", + "iopub.status.idle": "2023-01-25T19:24:41.203156Z", + "shell.execute_reply": "2023-01-25T19:24:41.201603Z" }, "papermill": { - "duration": 0.057884, - "end_time": "2023-01-24T17:14:07.331925", + "duration": 0.052312, + "end_time": "2023-01-25T19:24:41.205320", "exception": false, - "start_time": "2023-01-24T17:14:07.274041", + "start_time": "2023-01-25T19:24:41.153008", "status": "completed" }, "scrolled": false, @@ -587,10 +587,10 @@ "id": "d40fa01c", "metadata": { "papermill": { - "duration": 0.045422, - "end_time": "2023-01-24T17:14:07.423023", + "duration": 0.037975, + "end_time": "2023-01-25T19:24:41.281629", "exception": false, - "start_time": "2023-01-24T17:14:07.377601", + "start_time": "2023-01-25T19:24:41.243654", "status": "completed" }, "tags": [] @@ -605,16 +605,16 @@ "id": "d6e3d593", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:14:07.515386Z", - "iopub.status.busy": "2023-01-24T17:14:07.514801Z", - "iopub.status.idle": "2023-01-24T17:14:19.524344Z", - "shell.execute_reply": "2023-01-24T17:14:19.523657Z" + "iopub.execute_input": "2023-01-25T19:24:41.356238Z", + "iopub.status.busy": "2023-01-25T19:24:41.355558Z", + "iopub.status.idle": "2023-01-25T19:24:59.653976Z", + "shell.execute_reply": "2023-01-25T19:24:59.653002Z" }, "papermill": { - "duration": 12.057671, - "end_time": "2023-01-24T17:14:19.525927", + "duration": 18.337365, + "end_time": "2023-01-25T19:24:59.656186", "exception": false, - "start_time": "2023-01-24T17:14:07.468256", + "start_time": "2023-01-25T19:24:41.318821", "status": "completed" }, "tags": [] @@ -656,16 +656,16 @@ "id": "89fa58ee", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:14:19.620385Z", - "iopub.status.busy": "2023-01-24T17:14:19.619583Z", - "iopub.status.idle": "2023-01-24T17:14:19.776385Z", - "shell.execute_reply": "2023-01-24T17:14:19.775670Z" + "iopub.execute_input": "2023-01-25T19:24:59.730541Z", + "iopub.status.busy": "2023-01-25T19:24:59.730176Z", + "iopub.status.idle": "2023-01-25T19:24:59.933311Z", + "shell.execute_reply": "2023-01-25T19:24:59.932482Z" }, "papermill": { - "duration": 0.205608, - "end_time": "2023-01-24T17:14:19.777991", + "duration": 0.241466, + "end_time": "2023-01-25T19:24:59.935500", "exception": false, - "start_time": "2023-01-24T17:14:19.572383", + "start_time": "2023-01-25T19:24:59.694034", "status": "completed" }, "tags": [] @@ -706,10 +706,10 @@ "id": "d8dbf699", "metadata": { "papermill": { - "duration": 0.046866, - "end_time": "2023-01-24T17:14:19.871999", + "duration": 0.037599, + "end_time": "2023-01-25T19:25:00.011921", "exception": false, - "start_time": "2023-01-24T17:14:19.825133", + "start_time": "2023-01-25T19:24:59.974322", "status": "completed" }, "tags": [] @@ -723,10 +723,10 @@ "id": "ea74b401", "metadata": { "papermill": { - "duration": 0.046856, - "end_time": "2023-01-24T17:14:19.965890", + "duration": 0.035446, + "end_time": "2023-01-25T19:25:00.083600", "exception": false, - "start_time": "2023-01-24T17:14:19.919034", + "start_time": "2023-01-25T19:25:00.048154", "status": "completed" }, "tags": [] @@ -741,16 +741,16 @@ "id": "964a462c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:14:20.061615Z", - "iopub.status.busy": "2023-01-24T17:14:20.060860Z", - "iopub.status.idle": "2023-01-24T17:14:23.140348Z", - "shell.execute_reply": "2023-01-24T17:14:23.139647Z" + "iopub.execute_input": "2023-01-25T19:25:00.157044Z", + "iopub.status.busy": "2023-01-25T19:25:00.156478Z", + "iopub.status.idle": "2023-01-25T19:25:04.375956Z", + "shell.execute_reply": "2023-01-25T19:25:04.374988Z" }, "papermill": { - "duration": 3.129314, - "end_time": "2023-01-24T17:14:23.142068", + "duration": 4.259504, + "end_time": "2023-01-25T19:25:04.378315", "exception": false, - "start_time": "2023-01-24T17:14:20.012754", + "start_time": "2023-01-25T19:25:00.118811", "status": "completed" }, "tags": [] @@ -914,10 +914,10 @@ "id": "a832b1ff", "metadata": { "papermill": { - "duration": 0.047032, - "end_time": "2023-01-24T17:14:23.236890", + "duration": 0.034699, + "end_time": "2023-01-25T19:25:04.450257", "exception": false, - "start_time": "2023-01-24T17:14:23.189858", + "start_time": "2023-01-25T19:25:04.415558", "status": "completed" }, "tags": [] @@ -932,16 +932,16 @@ "id": "0a563720", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:14:23.332627Z", - "iopub.status.busy": "2023-01-24T17:14:23.331893Z", - "iopub.status.idle": "2023-01-24T17:14:23.539228Z", - "shell.execute_reply": "2023-01-24T17:14:23.538492Z" + "iopub.execute_input": "2023-01-25T19:25:04.524686Z", + "iopub.status.busy": "2023-01-25T19:25:04.523820Z", + "iopub.status.idle": "2023-01-25T19:25:04.896547Z", + "shell.execute_reply": "2023-01-25T19:25:04.895370Z" }, "papermill": { - "duration": 0.257158, - "end_time": "2023-01-24T17:14:23.541073", + "duration": 0.41417, + "end_time": "2023-01-25T19:25:04.899338", "exception": false, - "start_time": "2023-01-24T17:14:23.283915", + "start_time": "2023-01-25T19:25:04.485168", "status": "completed" }, "tags": [] @@ -1385,10 +1385,10 @@ "id": "350c4c27", "metadata": { "papermill": { - "duration": 0.047223, - "end_time": "2023-01-24T17:14:23.637007", + "duration": 0.038307, + "end_time": "2023-01-25T19:25:04.974801", "exception": false, - "start_time": "2023-01-24T17:14:23.589784", + "start_time": "2023-01-25T19:25:04.936494", "status": "completed" }, "tags": [] @@ -1403,16 +1403,16 @@ "id": "e3107465", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:14:23.733292Z", - "iopub.status.busy": "2023-01-24T17:14:23.732724Z", - "iopub.status.idle": "2023-01-24T17:14:23.739877Z", - "shell.execute_reply": "2023-01-24T17:14:23.739199Z" + "iopub.execute_input": "2023-01-25T19:25:05.052289Z", + "iopub.status.busy": "2023-01-25T19:25:05.051344Z", + "iopub.status.idle": "2023-01-25T19:25:05.060679Z", + "shell.execute_reply": "2023-01-25T19:25:05.059859Z" }, "papermill": { - "duration": 0.056807, - "end_time": "2023-01-24T17:14:23.741327", + "duration": 0.050083, + "end_time": "2023-01-25T19:25:05.062928", "exception": false, - "start_time": "2023-01-24T17:14:23.684520", + "start_time": "2023-01-25T19:25:05.012845", "status": "completed" }, "tags": [] @@ -1452,16 +1452,16 @@ "id": "2cde3339", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:14:23.837811Z", - "iopub.status.busy": "2023-01-24T17:14:23.837346Z", - "iopub.status.idle": "2023-01-24T17:14:26.143648Z", - "shell.execute_reply": "2023-01-24T17:14:26.142886Z" + "iopub.execute_input": "2023-01-25T19:25:05.140223Z", + "iopub.status.busy": "2023-01-25T19:25:05.139630Z", + "iopub.status.idle": "2023-01-25T19:25:08.371755Z", + "shell.execute_reply": "2023-01-25T19:25:08.370473Z" }, "papermill": { - "duration": 2.356998, - "end_time": "2023-01-24T17:14:26.145802", + "duration": 3.273342, + "end_time": "2023-01-25T19:25:08.374766", "exception": false, - "start_time": "2023-01-24T17:14:23.788804", + "start_time": "2023-01-25T19:25:05.101424", "status": "completed" }, "tags": [] @@ -1471,7 +1471,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "Requirement already satisfied: scikit-learn in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (1.2.0)\r\n", + "Requirement already satisfied: scikit-learn in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (1.2.1)\r\n", "Requirement already satisfied: joblib>=1.1.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-learn) (1.2.0)\r\n", "Requirement already satisfied: scipy>=1.3.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-learn) (1.10.0)\r\n", "Requirement already satisfied: threadpoolctl>=2.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-learn) (3.1.0)\r\n", @@ -1493,16 +1493,16 @@ "id": "1544018e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:14:26.243924Z", - "iopub.status.busy": "2023-01-24T17:14:26.243060Z", - "iopub.status.idle": "2023-01-24T17:14:26.250105Z", - "shell.execute_reply": "2023-01-24T17:14:26.249561Z" + "iopub.execute_input": "2023-01-25T19:25:08.453642Z", + "iopub.status.busy": "2023-01-25T19:25:08.452705Z", + "iopub.status.idle": "2023-01-25T19:25:08.462113Z", + "shell.execute_reply": "2023-01-25T19:25:08.461171Z" }, "papermill": { - "duration": 0.057116, - "end_time": "2023-01-24T17:14:26.251481", + "duration": 0.052339, + "end_time": "2023-01-25T19:25:08.465066", "exception": false, - "start_time": "2023-01-24T17:14:26.194365", + "start_time": "2023-01-25T19:25:08.412727", "status": "completed" }, "tags": [] @@ -1521,16 +1521,16 @@ "id": "fa0261fa", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:14:26.348638Z", - "iopub.status.busy": "2023-01-24T17:14:26.348349Z", - "iopub.status.idle": "2023-01-24T17:14:46.068217Z", - "shell.execute_reply": "2023-01-24T17:14:46.067630Z" + "iopub.execute_input": "2023-01-25T19:25:08.544559Z", + "iopub.status.busy": "2023-01-25T19:25:08.543158Z", + "iopub.status.idle": "2023-01-25T19:25:31.996693Z", + "shell.execute_reply": "2023-01-25T19:25:31.995766Z" }, "papermill": { - "duration": 19.770962, - "end_time": "2023-01-24T17:14:46.069890", + "duration": 23.496339, + "end_time": "2023-01-25T19:25:31.999536", "exception": false, - "start_time": "2023-01-24T17:14:26.298928", + "start_time": "2023-01-25T19:25:08.503197", "status": "completed" }, "tags": [] @@ -1573,16 +1573,16 @@ "id": "d53c468f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:14:46.167608Z", - "iopub.status.busy": "2023-01-24T17:14:46.167060Z", - "iopub.status.idle": "2023-01-24T17:14:46.171109Z", - "shell.execute_reply": "2023-01-24T17:14:46.170572Z" + "iopub.execute_input": "2023-01-25T19:25:32.078485Z", + "iopub.status.busy": "2023-01-25T19:25:32.077435Z", + "iopub.status.idle": "2023-01-25T19:25:32.083349Z", + "shell.execute_reply": "2023-01-25T19:25:32.082492Z" }, "papermill": { - "duration": 0.05427, - "end_time": "2023-01-24T17:14:46.172487", + "duration": 0.048787, + "end_time": "2023-01-25T19:25:32.085260", "exception": false, - "start_time": "2023-01-24T17:14:46.118217", + "start_time": "2023-01-25T19:25:32.036473", "status": "completed" }, "tags": [] @@ -1607,10 +1607,10 @@ "id": "05bb9110", "metadata": { "papermill": { - "duration": 0.047377, - "end_time": "2023-01-24T17:14:46.268169", + "duration": 0.036658, + "end_time": "2023-01-25T19:25:32.157628", "exception": false, - "start_time": "2023-01-24T17:14:46.220792", + "start_time": "2023-01-25T19:25:32.120970", "status": "completed" }, "tags": [] @@ -1625,16 +1625,16 @@ "id": "c924f8a1", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:14:46.364963Z", - "iopub.status.busy": "2023-01-24T17:14:46.364421Z", - "iopub.status.idle": "2023-01-24T17:14:46.684390Z", - "shell.execute_reply": "2023-01-24T17:14:46.683368Z" + "iopub.execute_input": "2023-01-25T19:25:32.234547Z", + "iopub.status.busy": "2023-01-25T19:25:32.233695Z", + "iopub.status.idle": "2023-01-25T19:25:32.717009Z", + "shell.execute_reply": "2023-01-25T19:25:32.715926Z" }, "papermill": { - "duration": 0.370737, - "end_time": "2023-01-24T17:14:46.686217", + "duration": 0.524151, + "end_time": "2023-01-25T19:25:32.719482", "exception": false, - "start_time": "2023-01-24T17:14:46.315480", + "start_time": "2023-01-25T19:25:32.195331", "status": "completed" }, "tags": [] @@ -1671,16 +1671,16 @@ "id": "45b0c16d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:14:46.785531Z", - "iopub.status.busy": "2023-01-24T17:14:46.784971Z", - "iopub.status.idle": "2023-01-24T17:14:48.352051Z", - "shell.execute_reply": "2023-01-24T17:14:48.351466Z" + "iopub.execute_input": "2023-01-25T19:25:32.795623Z", + "iopub.status.busy": "2023-01-25T19:25:32.794713Z", + "iopub.status.idle": "2023-01-25T19:25:35.009684Z", + "shell.execute_reply": "2023-01-25T19:25:35.008771Z" }, "papermill": { - "duration": 1.6218, - "end_time": "2023-01-24T17:14:48.357254", + "duration": 2.257036, + "end_time": "2023-01-25T19:25:35.014908", "exception": false, - "start_time": "2023-01-24T17:14:46.735454", + "start_time": "2023-01-25T19:25:32.757872", "status": "completed" }, "tags": [] @@ -1691,9 +1691,9 @@ "output_type": "stream", "text": [ "WARNING:root:downloading a 1.028MiB file from http://api.brain-map.org//api/v2/well_known_file_download/950745916\n", - "Downloading: 100%|██████████| 1.08M/1.08M [00:00<00:00, 5.42MB/s]\n", + "Downloading: 100%|██████████| 1.08M/1.08M [00:00<00:00, 8.98MB/s]\n", "WARNING:root:downloading a 1.028MiB file from http://api.brain-map.org//api/v2/well_known_file_download/950745861\n", - "Downloading: 100%|██████████| 1.08M/1.08M [00:00<00:00, 3.56MB/s]\n" + "Downloading: 100%|██████████| 1.08M/1.08M [00:00<00:00, 1.09MB/s]\n" ] }, { @@ -1747,17 +1747,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 352.184859, - "end_time": "2023-01-24T17:14:49.139495", + "duration": 332.713364, + "end_time": "2023-01-25T19:25:36.093070", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/ecephys_quickstart.ipynb", - "output_path": "/tmp/tmpwyw5end5/scratch_nb.ipynb", + "output_path": "/tmp/tmprrjtrd_o/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmpwyw5end5", + "output_dir": "/tmp/tmprrjtrd_o", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T17:08:56.954636", + "start_time": "2023-01-25T19:20:03.379706", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/ecephys_receptive_fields.ipynb b/doc_template/examples_root/examples/nb/ecephys_receptive_fields.ipynb index f8b101d52..7677cea2b 100644 --- a/doc_template/examples_root/examples/nb/ecephys_receptive_fields.ipynb +++ b/doc_template/examples_root/examples/nb/ecephys_receptive_fields.ipynb @@ -5,10 +5,10 @@ "id": "ba3d4d3e", "metadata": { "papermill": { - "duration": 0.006574, - "end_time": "2023-01-24T17:23:29.540214", + "duration": 0.00833, + "end_time": "2023-01-25T19:36:03.423256", "exception": false, - "start_time": "2023-01-24T17:23:29.533640", + "start_time": "2023-01-25T19:36:03.414926", "status": "completed" }, "tags": [] @@ -39,16 +39,16 @@ "id": "821d73e2", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:23:29.552564Z", - "iopub.status.busy": "2023-01-24T17:23:29.552001Z", - "iopub.status.idle": "2023-01-24T17:23:36.871699Z", - "shell.execute_reply": "2023-01-24T17:23:36.871016Z" + "iopub.execute_input": "2023-01-25T19:36:03.438469Z", + "iopub.status.busy": "2023-01-25T19:36:03.437779Z", + "iopub.status.idle": "2023-01-25T19:36:13.341751Z", + "shell.execute_reply": "2023-01-25T19:36:13.340669Z" }, "papermill": { - "duration": 7.328325, - "end_time": "2023-01-24T17:23:36.874016", + "duration": 9.914749, + "end_time": "2023-01-25T19:36:13.344774", "exception": false, - "start_time": "2023-01-24T17:23:29.545691", + "start_time": "2023-01-25T19:36:03.430025", "status": "completed" }, "tags": [] @@ -80,10 +80,10 @@ "id": "f8ae2a6b", "metadata": { "papermill": { - "duration": 0.005266, - "end_time": "2023-01-24T17:23:36.885050", + "duration": 0.007605, + "end_time": "2023-01-25T19:36:13.362676", "exception": false, - "start_time": "2023-01-24T17:23:36.879784", + "start_time": "2023-01-25T19:36:13.355071", "status": "completed" }, "tags": [] @@ -98,16 +98,16 @@ "id": "a359584c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:23:36.897345Z", - "iopub.status.busy": "2023-01-24T17:23:36.896547Z", - "iopub.status.idle": "2023-01-24T17:23:36.900286Z", - "shell.execute_reply": "2023-01-24T17:23:36.899621Z" + "iopub.execute_input": "2023-01-25T19:36:13.382575Z", + "iopub.status.busy": "2023-01-25T19:36:13.381393Z", + "iopub.status.idle": "2023-01-25T19:36:13.386778Z", + "shell.execute_reply": "2023-01-25T19:36:13.385378Z" }, "papermill": { - "duration": 0.011618, - "end_time": "2023-01-24T17:23:36.901901", + "duration": 0.01861, + "end_time": "2023-01-25T19:36:13.388866", "exception": false, - "start_time": "2023-01-24T17:23:36.890283", + "start_time": "2023-01-25T19:36:13.370256", "status": "completed" }, "tags": [ @@ -126,16 +126,16 @@ "id": "1885edef", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:23:36.929387Z", - "iopub.status.busy": "2023-01-24T17:23:36.928850Z", - "iopub.status.idle": "2023-01-24T17:23:36.932884Z", - "shell.execute_reply": "2023-01-24T17:23:36.932244Z" + "iopub.execute_input": "2023-01-25T19:36:13.426133Z", + "iopub.status.busy": "2023-01-25T19:36:13.425276Z", + "iopub.status.idle": "2023-01-25T19:36:13.430997Z", + "shell.execute_reply": "2023-01-25T19:36:13.430044Z" }, "papermill": { - "duration": 0.011389, - "end_time": "2023-01-24T17:23:36.934342", + "duration": 0.01614, + "end_time": "2023-01-25T19:36:13.433100", "exception": false, - "start_time": "2023-01-24T17:23:36.922953", + "start_time": "2023-01-25T19:36:13.416960", "status": "completed" }, "tags": [] @@ -152,10 +152,10 @@ "id": "9365c538", "metadata": { "papermill": { - "duration": 0.005271, - "end_time": "2023-01-24T17:23:36.944824", + "duration": 0.007004, + "end_time": "2023-01-25T19:36:13.448080", "exception": false, - "start_time": "2023-01-24T17:23:36.939553", + "start_time": "2023-01-25T19:36:13.441076", "status": "completed" }, "tags": [] @@ -170,16 +170,16 @@ "id": "410e1dbc", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:23:36.956339Z", - "iopub.status.busy": "2023-01-24T17:23:36.955918Z", - "iopub.status.idle": "2023-01-24T17:28:01.950118Z", - "shell.execute_reply": "2023-01-24T17:28:01.949457Z" + "iopub.execute_input": "2023-01-25T19:36:13.463187Z", + "iopub.status.busy": "2023-01-25T19:36:13.462372Z", + "iopub.status.idle": "2023-01-25T19:39:58.461416Z", + "shell.execute_reply": "2023-01-25T19:39:58.460185Z" }, "papermill": { - "duration": 265.001947, - "end_time": "2023-01-24T17:28:01.951959", + "duration": 225.010185, + "end_time": "2023-01-25T19:39:58.464572", "exception": false, - "start_time": "2023-01-24T17:23:36.950012", + "start_time": "2023-01-25T19:36:13.454387", "status": "completed" }, "tags": [] @@ -190,7 +190,7 @@ "output_type": "stream", "text": [ "WARNING:root:downloading a 1775.991MiB file from http://api.brain-map.org//api/v2/well_known_file_download/1026123377\n", - "Downloading: 100%|██████████| 1.86G/1.86G [01:10<00:00, 26.4MB/s]\n" + "Downloading: 100%|██████████| 1.86G/1.86G [00:39<00:00, 47.1MB/s]\n" ] } ], @@ -205,10 +205,10 @@ "id": "33b168d0", "metadata": { "papermill": { - "duration": 0.043785, - "end_time": "2023-01-24T17:28:02.035211", + "duration": 0.030671, + "end_time": "2023-01-25T19:39:58.527957", "exception": false, - "start_time": "2023-01-24T17:28:01.991426", + "start_time": "2023-01-25T19:39:58.497286", "status": "completed" }, "tags": [] @@ -222,10 +222,10 @@ "id": "24177301", "metadata": { "papermill": { - "duration": 0.039129, - "end_time": "2023-01-24T17:28:02.114009", + "duration": 0.029288, + "end_time": "2023-01-25T19:39:58.587922", "exception": false, - "start_time": "2023-01-24T17:28:02.074880", + "start_time": "2023-01-25T19:39:58.558634", "status": "completed" }, "tags": [] @@ -244,16 +244,16 @@ "id": "c3e0dd24", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:02.194499Z", - "iopub.status.busy": "2023-01-24T17:28:02.194096Z", - "iopub.status.idle": "2023-01-24T17:28:08.165807Z", - "shell.execute_reply": "2023-01-24T17:28:08.165164Z" + "iopub.execute_input": "2023-01-25T19:39:58.649640Z", + "iopub.status.busy": "2023-01-25T19:39:58.649039Z", + "iopub.status.idle": "2023-01-25T19:40:08.456926Z", + "shell.execute_reply": "2023-01-25T19:40:08.455905Z" }, "papermill": { - "duration": 6.013647, - "end_time": "2023-01-24T17:28:08.167733", + "duration": 9.841673, + "end_time": "2023-01-25T19:40:08.459000", "exception": false, - "start_time": "2023-01-24T17:28:02.154086", + "start_time": "2023-01-25T19:39:58.617327", "status": "completed" }, "tags": [] @@ -281,10 +281,10 @@ "id": "05d610b4", "metadata": { "papermill": { - "duration": 0.038702, - "end_time": "2023-01-24T17:28:08.246006", + "duration": 0.030718, + "end_time": "2023-01-25T19:40:08.520148", "exception": false, - "start_time": "2023-01-24T17:28:08.207304", + "start_time": "2023-01-25T19:40:08.489430", "status": "completed" }, "tags": [] @@ -299,16 +299,16 @@ "id": "1388b453", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:08.324992Z", - "iopub.status.busy": "2023-01-24T17:28:08.324438Z", - "iopub.status.idle": "2023-01-24T17:28:08.346201Z", - "shell.execute_reply": "2023-01-24T17:28:08.345659Z" + "iopub.execute_input": "2023-01-25T19:40:08.642417Z", + "iopub.status.busy": "2023-01-25T19:40:08.641686Z", + "iopub.status.idle": "2023-01-25T19:40:08.670574Z", + "shell.execute_reply": "2023-01-25T19:40:08.669555Z" }, "papermill": { - "duration": 0.062967, - "end_time": "2023-01-24T17:28:08.347595", + "duration": 0.06251, + "end_time": "2023-01-25T19:40:08.672835", "exception": false, - "start_time": "2023-01-24T17:28:08.284628", + "start_time": "2023-01-25T19:40:08.610325", "status": "completed" }, "tags": [] @@ -341,10 +341,10 @@ "id": "5002fe82", "metadata": { "papermill": { - "duration": 0.038592, - "end_time": "2023-01-24T17:28:08.425158", + "duration": 0.029608, + "end_time": "2023-01-25T19:40:08.733411", "exception": false, - "start_time": "2023-01-24T17:28:08.386566", + "start_time": "2023-01-25T19:40:08.703803", "status": "completed" }, "tags": [] @@ -359,16 +359,16 @@ "id": "e3fb5ac4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:08.504477Z", - "iopub.status.busy": "2023-01-24T17:28:08.503930Z", - "iopub.status.idle": "2023-01-24T17:28:08.509580Z", - "shell.execute_reply": "2023-01-24T17:28:08.509042Z" + "iopub.execute_input": "2023-01-25T19:40:08.795529Z", + "iopub.status.busy": "2023-01-25T19:40:08.794958Z", + "iopub.status.idle": "2023-01-25T19:40:08.803309Z", + "shell.execute_reply": "2023-01-25T19:40:08.802421Z" }, "papermill": { - "duration": 0.046952, - "end_time": "2023-01-24T17:28:08.510914", + "duration": 0.041852, + "end_time": "2023-01-25T19:40:08.805251", "exception": false, - "start_time": "2023-01-24T17:28:08.463962", + "start_time": "2023-01-25T19:40:08.763399", "status": "completed" }, "tags": [] @@ -395,10 +395,10 @@ "id": "123ce1d3", "metadata": { "papermill": { - "duration": 0.038594, - "end_time": "2023-01-24T17:28:08.588606", + "duration": 0.030316, + "end_time": "2023-01-25T19:40:08.866162", "exception": false, - "start_time": "2023-01-24T17:28:08.550012", + "start_time": "2023-01-25T19:40:08.835846", "status": "completed" }, "tags": [] @@ -413,16 +413,16 @@ "id": "8087b500", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:08.667708Z", - "iopub.status.busy": "2023-01-24T17:28:08.667169Z", - "iopub.status.idle": "2023-01-24T17:28:08.671677Z", - "shell.execute_reply": "2023-01-24T17:28:08.671150Z" + "iopub.execute_input": "2023-01-25T19:40:08.932007Z", + "iopub.status.busy": "2023-01-25T19:40:08.931320Z", + "iopub.status.idle": "2023-01-25T19:40:08.937801Z", + "shell.execute_reply": "2023-01-25T19:40:08.936752Z" }, "papermill": { - "duration": 0.045835, - "end_time": "2023-01-24T17:28:08.673070", + "duration": 0.04193, + "end_time": "2023-01-25T19:40:08.940245", "exception": false, - "start_time": "2023-01-24T17:28:08.627235", + "start_time": "2023-01-25T19:40:08.898315", "status": "completed" }, "tags": [] @@ -448,10 +448,10 @@ "id": "c6057900", "metadata": { "papermill": { - "duration": 0.038781, - "end_time": "2023-01-24T17:28:08.750954", + "duration": 0.034985, + "end_time": "2023-01-25T19:40:09.018393", "exception": false, - "start_time": "2023-01-24T17:28:08.712173", + "start_time": "2023-01-25T19:40:08.983408", "status": "completed" }, "tags": [] @@ -466,16 +466,16 @@ "id": "7df9261f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:08.834610Z", - "iopub.status.busy": "2023-01-24T17:28:08.833713Z", - "iopub.status.idle": "2023-01-24T17:28:08.844953Z", - "shell.execute_reply": "2023-01-24T17:28:08.844005Z" + "iopub.execute_input": "2023-01-25T19:40:09.082833Z", + "iopub.status.busy": "2023-01-25T19:40:09.081913Z", + "iopub.status.idle": "2023-01-25T19:40:09.089886Z", + "shell.execute_reply": "2023-01-25T19:40:09.088908Z" }, "papermill": { - "duration": 0.05747, - "end_time": "2023-01-24T17:28:08.847327", + "duration": 0.042528, + "end_time": "2023-01-25T19:40:09.092067", "exception": false, - "start_time": "2023-01-24T17:28:08.789857", + "start_time": "2023-01-25T19:40:09.049539", "status": "completed" }, "tags": [] @@ -501,10 +501,10 @@ "id": "2609bfb1", "metadata": { "papermill": { - "duration": 0.038987, - "end_time": "2023-01-24T17:28:08.927118", + "duration": 0.031251, + "end_time": "2023-01-25T19:40:09.154464", "exception": false, - "start_time": "2023-01-24T17:28:08.888131", + "start_time": "2023-01-25T19:40:09.123213", "status": "completed" }, "tags": [] @@ -519,16 +519,16 @@ "id": "338d6b88", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:09.006798Z", - "iopub.status.busy": "2023-01-24T17:28:09.006243Z", - "iopub.status.idle": "2023-01-24T17:28:09.012250Z", - "shell.execute_reply": "2023-01-24T17:28:09.011575Z" + "iopub.execute_input": "2023-01-25T19:40:09.217825Z", + "iopub.status.busy": "2023-01-25T19:40:09.217248Z", + "iopub.status.idle": "2023-01-25T19:40:09.225157Z", + "shell.execute_reply": "2023-01-25T19:40:09.224188Z" }, "papermill": { - "duration": 0.047792, - "end_time": "2023-01-24T17:28:09.013833", + "duration": 0.042258, + "end_time": "2023-01-25T19:40:09.227229", "exception": false, - "start_time": "2023-01-24T17:28:08.966041", + "start_time": "2023-01-25T19:40:09.184971", "status": "completed" }, "tags": [] @@ -557,10 +557,10 @@ "id": "60c0af34", "metadata": { "papermill": { - "duration": 0.039247, - "end_time": "2023-01-24T17:28:09.092512", + "duration": 0.033694, + "end_time": "2023-01-25T19:40:09.291720", "exception": false, - "start_time": "2023-01-24T17:28:09.053265", + "start_time": "2023-01-25T19:40:09.258026", "status": "completed" }, "tags": [] @@ -577,16 +577,16 @@ "id": "972d100c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:09.171929Z", - "iopub.status.busy": "2023-01-24T17:28:09.171383Z", - "iopub.status.idle": "2023-01-24T17:28:09.176078Z", - "shell.execute_reply": "2023-01-24T17:28:09.175555Z" + "iopub.execute_input": "2023-01-25T19:40:09.361012Z", + "iopub.status.busy": "2023-01-25T19:40:09.360426Z", + "iopub.status.idle": "2023-01-25T19:40:09.367129Z", + "shell.execute_reply": "2023-01-25T19:40:09.366106Z" }, "papermill": { - "duration": 0.046256, - "end_time": "2023-01-24T17:28:09.177538", + "duration": 0.041525, + "end_time": "2023-01-25T19:40:09.369365", "exception": false, - "start_time": "2023-01-24T17:28:09.131282", + "start_time": "2023-01-25T19:40:09.327840", "status": "completed" }, "tags": [] @@ -616,10 +616,10 @@ "id": "28684085", "metadata": { "papermill": { - "duration": 0.038689, - "end_time": "2023-01-24T17:28:09.255169", + "duration": 0.03132, + "end_time": "2023-01-25T19:40:09.430903", "exception": false, - "start_time": "2023-01-24T17:28:09.216480", + "start_time": "2023-01-25T19:40:09.399583", "status": "completed" }, "tags": [] @@ -633,10 +633,10 @@ "id": "a3c97c66", "metadata": { "papermill": { - "duration": 0.03906, - "end_time": "2023-01-24T17:28:09.333242", + "duration": 0.030707, + "end_time": "2023-01-25T19:40:09.493165", "exception": false, - "start_time": "2023-01-24T17:28:09.294182", + "start_time": "2023-01-25T19:40:09.462458", "status": "completed" }, "tags": [] @@ -651,16 +651,16 @@ "id": "90dd6724", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:09.413067Z", - "iopub.status.busy": "2023-01-24T17:28:09.412516Z", - "iopub.status.idle": "2023-01-24T17:28:09.467656Z", - "shell.execute_reply": "2023-01-24T17:28:09.466996Z" + "iopub.execute_input": "2023-01-25T19:40:09.558604Z", + "iopub.status.busy": "2023-01-25T19:40:09.558025Z", + "iopub.status.idle": "2023-01-25T19:40:09.634244Z", + "shell.execute_reply": "2023-01-25T19:40:09.633265Z" }, "papermill": { - "duration": 0.096885, - "end_time": "2023-01-24T17:28:09.469478", + "duration": 0.112692, + "end_time": "2023-01-25T19:40:09.636841", "exception": false, - "start_time": "2023-01-24T17:28:09.372593", + "start_time": "2023-01-25T19:40:09.524149", "status": "completed" }, "tags": [] @@ -677,10 +677,10 @@ "id": "9bafe79f", "metadata": { "papermill": { - "duration": 0.039517, - "end_time": "2023-01-24T17:28:09.548583", + "duration": 0.030715, + "end_time": "2023-01-25T19:40:09.698862", "exception": false, - "start_time": "2023-01-24T17:28:09.509066", + "start_time": "2023-01-25T19:40:09.668147", "status": "completed" }, "tags": [] @@ -695,16 +695,16 @@ "id": "1273646e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:09.628970Z", - "iopub.status.busy": "2023-01-24T17:28:09.628423Z", - "iopub.status.idle": "2023-01-24T17:28:09.718331Z", - "shell.execute_reply": "2023-01-24T17:28:09.717616Z" + "iopub.execute_input": "2023-01-25T19:40:09.763188Z", + "iopub.status.busy": "2023-01-25T19:40:09.762611Z", + "iopub.status.idle": "2023-01-25T19:40:09.887203Z", + "shell.execute_reply": "2023-01-25T19:40:09.886148Z" }, "papermill": { - "duration": 0.131973, - "end_time": "2023-01-24T17:28:09.720115", + "duration": 0.160149, + "end_time": "2023-01-25T19:40:09.889764", "exception": false, - "start_time": "2023-01-24T17:28:09.588142", + "start_time": "2023-01-25T19:40:09.729615", "status": "completed" }, "tags": [] @@ -1045,10 +1045,10 @@ "id": "c207b49d", "metadata": { "papermill": { - "duration": 0.039367, - "end_time": "2023-01-24T17:28:09.799239", + "duration": 0.034293, + "end_time": "2023-01-25T19:40:09.956651", "exception": false, - "start_time": "2023-01-24T17:28:09.759872", + "start_time": "2023-01-25T19:40:09.922358", "status": "completed" }, "tags": [] @@ -1063,16 +1063,16 @@ "id": "2ea847b5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:09.879478Z", - "iopub.status.busy": "2023-01-24T17:28:09.878935Z", - "iopub.status.idle": "2023-01-24T17:28:17.686165Z", - "shell.execute_reply": "2023-01-24T17:28:17.685516Z" + "iopub.execute_input": "2023-01-25T19:40:10.022656Z", + "iopub.status.busy": "2023-01-25T19:40:10.022049Z", + "iopub.status.idle": "2023-01-25T19:40:22.128828Z", + "shell.execute_reply": "2023-01-25T19:40:22.127501Z" }, "papermill": { - "duration": 7.849069, - "end_time": "2023-01-24T17:28:17.687975", + "duration": 12.1434, + "end_time": "2023-01-25T19:40:22.131940", "exception": false, - "start_time": "2023-01-24T17:28:09.838906", + "start_time": "2023-01-25T19:40:09.988540", "status": "completed" }, "tags": [] @@ -1087,10 +1087,10 @@ "id": "c38a8679", "metadata": { "papermill": { - "duration": 0.039565, - "end_time": "2023-01-24T17:28:17.766890", + "duration": 0.031495, + "end_time": "2023-01-25T19:40:22.197461", "exception": false, - "start_time": "2023-01-24T17:28:17.727325", + "start_time": "2023-01-25T19:40:22.165966", "status": "completed" }, "tags": [] @@ -1105,16 +1105,16 @@ "id": "e1df2d00", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:17.847739Z", - "iopub.status.busy": "2023-01-24T17:28:17.847197Z", - "iopub.status.idle": "2023-01-24T17:28:23.920060Z", - "shell.execute_reply": "2023-01-24T17:28:23.919389Z" + "iopub.execute_input": "2023-01-25T19:40:22.261769Z", + "iopub.status.busy": "2023-01-25T19:40:22.261032Z", + "iopub.status.idle": "2023-01-25T19:40:31.938756Z", + "shell.execute_reply": "2023-01-25T19:40:31.937296Z" }, "papermill": { - "duration": 6.115365, - "end_time": "2023-01-24T17:28:23.921820", + "duration": 9.712691, + "end_time": "2023-01-25T19:40:31.941181", "exception": false, - "start_time": "2023-01-24T17:28:17.806455", + "start_time": "2023-01-25T19:40:22.228490", "status": "completed" }, "tags": [] @@ -1129,10 +1129,10 @@ "id": "8bcd6c01", "metadata": { "papermill": { - "duration": 0.039725, - "end_time": "2023-01-24T17:28:24.001532", + "duration": 0.031192, + "end_time": "2023-01-25T19:40:32.003457", "exception": false, - "start_time": "2023-01-24T17:28:23.961807", + "start_time": "2023-01-25T19:40:31.972265", "status": "completed" }, "tags": [] @@ -1149,16 +1149,16 @@ "id": "6d431224", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:24.082633Z", - "iopub.status.busy": "2023-01-24T17:28:24.082081Z", - "iopub.status.idle": "2023-01-24T17:28:24.128934Z", - "shell.execute_reply": "2023-01-24T17:28:24.128253Z" + "iopub.execute_input": "2023-01-25T19:40:32.069224Z", + "iopub.status.busy": "2023-01-25T19:40:32.068078Z", + "iopub.status.idle": "2023-01-25T19:40:32.154957Z", + "shell.execute_reply": "2023-01-25T19:40:32.153938Z" }, "papermill": { - "duration": 0.08914, - "end_time": "2023-01-24T17:28:24.130483", + "duration": 0.123069, + "end_time": "2023-01-25T19:40:32.157483", "exception": false, - "start_time": "2023-01-24T17:28:24.041343", + "start_time": "2023-01-25T19:40:32.034414", "status": "completed" }, "tags": [] @@ -1186,10 +1186,10 @@ "id": "400b633f", "metadata": { "papermill": { - "duration": 0.039848, - "end_time": "2023-01-24T17:28:24.210349", + "duration": 0.033244, + "end_time": "2023-01-25T19:40:32.224681", "exception": false, - "start_time": "2023-01-24T17:28:24.170501", + "start_time": "2023-01-25T19:40:32.191437", "status": "completed" }, "tags": [] @@ -1206,16 +1206,16 @@ "id": "f25b7a87", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:24.291794Z", - "iopub.status.busy": "2023-01-24T17:28:24.291234Z", - "iopub.status.idle": "2023-01-24T17:28:25.663451Z", - "shell.execute_reply": "2023-01-24T17:28:25.662808Z" + "iopub.execute_input": "2023-01-25T19:40:32.295263Z", + "iopub.status.busy": "2023-01-25T19:40:32.294866Z", + "iopub.status.idle": "2023-01-25T19:40:34.456411Z", + "shell.execute_reply": "2023-01-25T19:40:34.455370Z" }, "papermill": { - "duration": 1.414638, - "end_time": "2023-01-24T17:28:25.665256", + "duration": 2.202126, + "end_time": "2023-01-25T19:40:34.459595", "exception": false, - "start_time": "2023-01-24T17:28:24.250618", + "start_time": "2023-01-25T19:40:32.257469", "status": "completed" }, "tags": [] @@ -1265,17 +1265,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 297.637674, - "end_time": "2023-01-24T17:28:26.324536", + "duration": 273.164455, + "end_time": "2023-01-25T19:40:35.414480", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/ecephys_receptive_fields.ipynb", - "output_path": "/tmp/tmpj20z_3zt/scratch_nb.ipynb", + "output_path": "/tmp/tmpzqksfz3o/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmpj20z_3zt", + "output_dir": "/tmp/tmpzqksfz3o", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T17:23:28.686862", + "start_time": "2023-01-25T19:36:02.250025", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/ecephys_session.ipynb b/doc_template/examples_root/examples/nb/ecephys_session.ipynb index 684af3e52..df0428f18 100644 --- a/doc_template/examples_root/examples/nb/ecephys_session.ipynb +++ b/doc_template/examples_root/examples/nb/ecephys_session.ipynb @@ -5,10 +5,10 @@ "id": "b3932a0a", "metadata": { "papermill": { - "duration": 0.013523, - "end_time": "2023-01-24T16:44:32.565170", + "duration": 0.018328, + "end_time": "2023-01-25T18:50:38.480588", "exception": false, - "start_time": "2023-01-24T16:44:32.551647", + "start_time": "2023-01-25T18:50:38.462260", "status": "completed" }, "tags": [] @@ -59,16 +59,16 @@ "id": "d2645d16", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:44:32.591303Z", - "iopub.status.busy": "2023-01-24T16:44:32.590729Z", - "iopub.status.idle": "2023-01-24T16:44:40.493251Z", - "shell.execute_reply": "2023-01-24T16:44:40.492580Z" + "iopub.execute_input": "2023-01-25T18:50:38.515728Z", + "iopub.status.busy": "2023-01-25T18:50:38.515375Z", + "iopub.status.idle": "2023-01-25T18:50:49.682594Z", + "shell.execute_reply": "2023-01-25T18:50:49.681430Z" }, "papermill": { - "duration": 7.917542, - "end_time": "2023-01-24T16:44:40.495143", + "duration": 11.188814, + "end_time": "2023-01-25T18:50:49.685670", "exception": false, - "start_time": "2023-01-24T16:44:32.577601", + "start_time": "2023-01-25T18:50:38.496856", "status": "completed" }, "tags": [] @@ -78,7 +78,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/tmp/ipykernel_3142/448338585.py:8: DeprecationWarning: Please use `gaussian_filter` from the `scipy.ndimage` namespace, the `scipy.ndimage.filters` namespace is deprecated.\n", + "/tmp/ipykernel_3072/448338585.py:8: DeprecationWarning: Please use `gaussian_filter` from the `scipy.ndimage` namespace, the `scipy.ndimage.filters` namespace is deprecated.\n", " from scipy.ndimage.filters import gaussian_filter\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/tqdm/auto.py:22: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n", " from .autonotebook import tqdm as notebook_tqdm\n" @@ -116,10 +116,10 @@ "id": "3352ffed", "metadata": { "papermill": { - "duration": 0.012336, - "end_time": "2023-01-24T16:44:40.520084", + "duration": 0.015882, + "end_time": "2023-01-25T18:50:49.718753", "exception": false, - "start_time": "2023-01-24T16:44:40.507748", + "start_time": "2023-01-25T18:50:49.702871", "status": "completed" }, "tags": [] @@ -138,16 +138,16 @@ "id": "22ea0388", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:44:40.546046Z", - "iopub.status.busy": "2023-01-24T16:44:40.545386Z", - "iopub.status.idle": "2023-01-24T16:44:40.549184Z", - "shell.execute_reply": "2023-01-24T16:44:40.548512Z" + "iopub.execute_input": "2023-01-25T18:50:49.753966Z", + "iopub.status.busy": "2023-01-25T18:50:49.752743Z", + "iopub.status.idle": "2023-01-25T18:50:49.758412Z", + "shell.execute_reply": "2023-01-25T18:50:49.757464Z" }, "papermill": { - "duration": 0.018364, - "end_time": "2023-01-24T16:44:40.550739", + "duration": 0.025797, + "end_time": "2023-01-25T18:50:49.760507", "exception": false, - "start_time": "2023-01-24T16:44:40.532375", + "start_time": "2023-01-25T18:50:49.734710", "status": "completed" }, "tags": [ @@ -167,16 +167,16 @@ "id": "166aa226", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:44:40.605717Z", - "iopub.status.busy": "2023-01-24T16:44:40.605114Z", - "iopub.status.idle": "2023-01-24T16:44:40.609376Z", - "shell.execute_reply": "2023-01-24T16:44:40.608721Z" + "iopub.execute_input": "2023-01-25T18:50:49.839747Z", + "iopub.status.busy": "2023-01-25T18:50:49.839380Z", + "iopub.status.idle": "2023-01-25T18:50:49.845299Z", + "shell.execute_reply": "2023-01-25T18:50:49.844295Z" }, "papermill": { - "duration": 0.018521, - "end_time": "2023-01-24T16:44:40.610827", + "duration": 0.028492, + "end_time": "2023-01-25T18:50:49.847975", "exception": false, - "start_time": "2023-01-24T16:44:40.592306", + "start_time": "2023-01-25T18:50:49.819483", "status": "completed" }, "tags": [] @@ -194,10 +194,10 @@ "id": "541b994a", "metadata": { "papermill": { - "duration": 0.012067, - "end_time": "2023-01-24T16:44:40.635037", + "duration": 0.015286, + "end_time": "2023-01-25T18:50:49.887101", "exception": false, - "start_time": "2023-01-24T16:44:40.622970", + "start_time": "2023-01-25T18:50:49.871815", "status": "completed" }, "tags": [] @@ -214,16 +214,16 @@ "id": "2161ee24", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:44:40.660736Z", - "iopub.status.busy": "2023-01-24T16:44:40.660230Z", - "iopub.status.idle": "2023-01-24T16:47:49.983212Z", - "shell.execute_reply": "2023-01-24T16:47:49.980968Z" + "iopub.execute_input": "2023-01-25T18:50:49.920560Z", + "iopub.status.busy": "2023-01-25T18:50:49.919684Z", + "iopub.status.idle": "2023-01-25T18:53:46.756664Z", + "shell.execute_reply": "2023-01-25T18:53:46.752997Z" }, "papermill": { - "duration": 189.349023, - "end_time": "2023-01-24T16:47:49.996005", + "duration": 176.871406, + "end_time": "2023-01-25T18:53:46.773589", "exception": false, - "start_time": "2023-01-24T16:44:40.646982", + "start_time": "2023-01-25T18:50:49.902183", "status": "completed" }, "scrolled": false, @@ -394,10 +394,10 @@ "id": "bde7aa97", "metadata": { "papermill": { - "duration": 0.012372, - "end_time": "2023-01-24T16:47:50.020794", + "duration": 0.016431, + "end_time": "2023-01-25T18:53:46.814256", "exception": false, - "start_time": "2023-01-24T16:47:50.008422", + "start_time": "2023-01-25T18:53:46.797825", "status": "completed" }, "tags": [] @@ -414,16 +414,16 @@ "id": "f3bb31e8", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:47:50.047144Z", - "iopub.status.busy": "2023-01-24T16:47:50.046583Z", - "iopub.status.idle": "2023-01-24T16:47:50.942676Z", - "shell.execute_reply": "2023-01-24T16:47:50.941960Z" + "iopub.execute_input": "2023-01-25T18:53:46.848913Z", + "iopub.status.busy": "2023-01-25T18:53:46.847403Z", + "iopub.status.idle": "2023-01-25T18:53:48.173949Z", + "shell.execute_reply": "2023-01-25T18:53:48.173072Z" }, "papermill": { - "duration": 0.91149, - "end_time": "2023-01-24T16:47:50.944511", + "duration": 1.3461, + "end_time": "2023-01-25T18:53:48.176095", "exception": false, - "start_time": "2023-01-24T16:47:50.033021", + "start_time": "2023-01-25T18:53:46.829995", "status": "completed" }, "tags": [] @@ -578,10 +578,10 @@ "id": "c186c809", "metadata": { "papermill": { - "duration": 0.012593, - "end_time": "2023-01-24T16:47:50.970141", + "duration": 0.019132, + "end_time": "2023-01-25T18:53:48.212244", "exception": false, - "start_time": "2023-01-24T16:47:50.957548", + "start_time": "2023-01-25T18:53:48.193112", "status": "completed" }, "tags": [] @@ -598,16 +598,16 @@ "id": "ff3d8ea8", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:47:50.996902Z", - "iopub.status.busy": "2023-01-24T16:47:50.996216Z", - "iopub.status.idle": "2023-01-24T16:47:51.738959Z", - "shell.execute_reply": "2023-01-24T16:47:51.738306Z" + "iopub.execute_input": "2023-01-25T18:53:48.246685Z", + "iopub.status.busy": "2023-01-25T18:53:48.245972Z", + "iopub.status.idle": "2023-01-25T18:53:49.246439Z", + "shell.execute_reply": "2023-01-25T18:53:49.244982Z" }, "papermill": { - "duration": 0.758189, - "end_time": "2023-01-24T16:47:51.740827", + "duration": 1.020668, + "end_time": "2023-01-25T18:53:49.249038", "exception": false, - "start_time": "2023-01-24T16:47:50.982638", + "start_time": "2023-01-25T18:53:48.228370", "status": "completed" }, "tags": [] @@ -820,10 +820,10 @@ "id": "d414f779", "metadata": { "papermill": { - "duration": 0.012842, - "end_time": "2023-01-24T16:47:51.767022", + "duration": 0.015908, + "end_time": "2023-01-25T18:53:49.280880", "exception": false, - "start_time": "2023-01-24T16:47:51.754180", + "start_time": "2023-01-25T18:53:49.264972", "status": "completed" }, "tags": [] @@ -840,16 +840,16 @@ "id": "de7ff046", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:47:51.793809Z", - "iopub.status.busy": "2023-01-24T16:47:51.793358Z", - "iopub.status.idle": "2023-01-24T16:47:52.437253Z", - "shell.execute_reply": "2023-01-24T16:47:52.436598Z" + "iopub.execute_input": "2023-01-25T18:53:49.313173Z", + "iopub.status.busy": "2023-01-25T18:53:49.312374Z", + "iopub.status.idle": "2023-01-25T18:53:50.127879Z", + "shell.execute_reply": "2023-01-25T18:53:50.127007Z" }, "papermill": { - "duration": 0.659312, - "end_time": "2023-01-24T16:47:52.439035", + "duration": 0.835484, + "end_time": "2023-01-25T18:53:50.131240", "exception": false, - "start_time": "2023-01-24T16:47:51.779723", + "start_time": "2023-01-25T18:53:49.295756", "status": "completed" }, "tags": [] @@ -1346,16 +1346,16 @@ "id": "4162185e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:47:52.467855Z", - "iopub.status.busy": "2023-01-24T16:47:52.467396Z", - "iopub.status.idle": "2023-01-24T16:47:52.471212Z", - "shell.execute_reply": "2023-01-24T16:47:52.470523Z" + "iopub.execute_input": "2023-01-25T18:53:50.167881Z", + "iopub.status.busy": "2023-01-25T18:53:50.167155Z", + "iopub.status.idle": "2023-01-25T18:53:50.172400Z", + "shell.execute_reply": "2023-01-25T18:53:50.171489Z" }, "papermill": { - "duration": 0.020674, - "end_time": "2023-01-24T16:47:52.473674", + "duration": 0.025745, + "end_time": "2023-01-25T18:53:50.174263", "exception": false, - "start_time": "2023-01-24T16:47:52.453000", + "start_time": "2023-01-25T18:53:50.148518", "status": "completed" }, "tags": [] @@ -1379,10 +1379,10 @@ "id": "eee284ea", "metadata": { "papermill": { - "duration": 0.013254, - "end_time": "2023-01-24T16:47:52.500184", + "duration": 0.015903, + "end_time": "2023-01-25T18:53:50.208412", "exception": false, - "start_time": "2023-01-24T16:47:52.486930", + "start_time": "2023-01-25T18:53:50.192509", "status": "completed" }, "tags": [] @@ -1399,16 +1399,16 @@ "id": "165b549c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:47:52.528302Z", - "iopub.status.busy": "2023-01-24T16:47:52.527629Z", - "iopub.status.idle": "2023-01-24T16:47:54.948407Z", - "shell.execute_reply": "2023-01-24T16:47:54.947818Z" + "iopub.execute_input": "2023-01-25T18:53:50.243822Z", + "iopub.status.busy": "2023-01-25T18:53:50.242865Z", + "iopub.status.idle": "2023-01-25T18:53:53.292873Z", + "shell.execute_reply": "2023-01-25T18:53:53.290863Z" }, "papermill": { - "duration": 2.436825, - "end_time": "2023-01-24T16:47:54.950272", + "duration": 3.070244, + "end_time": "2023-01-25T18:53:53.295166", "exception": false, - "start_time": "2023-01-24T16:47:52.513447", + "start_time": "2023-01-25T18:53:50.224922", "status": "completed" }, "tags": [] @@ -1435,10 +1435,10 @@ "id": "87b4bd52", "metadata": { "papermill": { - "duration": 0.013547, - "end_time": "2023-01-24T16:47:54.977842", + "duration": 0.016121, + "end_time": "2023-01-25T18:53:53.328770", "exception": false, - "start_time": "2023-01-24T16:47:54.964295", + "start_time": "2023-01-25T18:53:53.312649", "status": "completed" }, "tags": [] @@ -1452,10 +1452,10 @@ "id": "98bae620", "metadata": { "papermill": { - "duration": 0.013308, - "end_time": "2023-01-24T16:47:55.004546", + "duration": 0.01604, + "end_time": "2023-01-25T18:53:53.361929", "exception": false, - "start_time": "2023-01-24T16:47:54.991238", + "start_time": "2023-01-25T18:53:53.345889", "status": "completed" }, "tags": [] @@ -1474,16 +1474,16 @@ "id": "38137dfd", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:47:55.033217Z", - "iopub.status.busy": "2023-01-24T16:47:55.032500Z", - "iopub.status.idle": "2023-01-24T16:49:36.503469Z", - "shell.execute_reply": "2023-01-24T16:49:36.502779Z" + "iopub.execute_input": "2023-01-25T18:53:53.397435Z", + "iopub.status.busy": "2023-01-25T18:53:53.397042Z", + "iopub.status.idle": "2023-01-25T18:54:51.376978Z", + "shell.execute_reply": "2023-01-25T18:54:51.375938Z" }, "papermill": { - "duration": 101.48748, - "end_time": "2023-01-24T16:49:36.505439", + "duration": 58.001463, + "end_time": "2023-01-25T18:54:51.379623", "exception": false, - "start_time": "2023-01-24T16:47:55.017959", + "start_time": "2023-01-25T18:53:53.378160", "status": "completed" }, "scrolled": false, @@ -1495,7 +1495,7 @@ "output_type": "stream", "text": [ "WARNING:root:downloading a 2461.626MiB file from http://api.brain-map.org//api/v2/well_known_file_download/1026124216\n", - "Downloading: 100%|██████████| 2.58G/2.58G [01:39<00:00, 26.0MB/s]\n" + "Downloading: 100%|██████████| 2.58G/2.58G [00:55<00:00, 46.9MB/s]\n" ] } ], @@ -1509,10 +1509,10 @@ "id": "f56dcc3a", "metadata": { "papermill": { - "duration": 0.059857, - "end_time": "2023-01-24T16:49:36.624987", + "duration": 0.046573, + "end_time": "2023-01-25T18:54:51.473189", "exception": false, - "start_time": "2023-01-24T16:49:36.565130", + "start_time": "2023-01-25T18:54:51.426616", "status": "completed" }, "tags": [] @@ -1527,16 +1527,16 @@ "id": "439071a3", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:49:36.745517Z", - "iopub.status.busy": "2023-01-24T16:49:36.744950Z", - "iopub.status.idle": "2023-01-24T16:49:37.507715Z", - "shell.execute_reply": "2023-01-24T16:49:37.506704Z" + "iopub.execute_input": "2023-01-25T18:54:51.568910Z", + "iopub.status.busy": "2023-01-25T18:54:51.567939Z", + "iopub.status.idle": "2023-01-25T18:54:52.679898Z", + "shell.execute_reply": "2023-01-25T18:54:52.679002Z" }, "papermill": { - "duration": 0.825206, - "end_time": "2023-01-24T16:49:37.509721", + "duration": 1.166902, + "end_time": "2023-01-25T18:54:52.687159", "exception": false, - "start_time": "2023-01-24T16:49:36.684515", + "start_time": "2023-01-25T18:54:51.520257", "status": "completed" }, "tags": [] @@ -1559,10 +1559,10 @@ "id": "da516ad1", "metadata": { "papermill": { - "duration": 0.059418, - "end_time": "2023-01-24T16:49:37.628576", + "duration": 0.047167, + "end_time": "2023-01-25T18:54:52.786312", "exception": false, - "start_time": "2023-01-24T16:49:37.569158", + "start_time": "2023-01-25T18:54:52.739145", "status": "completed" }, "tags": [] @@ -1576,10 +1576,10 @@ "id": "f4837841", "metadata": { "papermill": { - "duration": 0.059165, - "end_time": "2023-01-24T16:49:37.746711", + "duration": 0.04596, + "end_time": "2023-01-25T18:54:52.877008", "exception": false, - "start_time": "2023-01-24T16:49:37.687546", + "start_time": "2023-01-25T18:54:52.831048", "status": "completed" }, "tags": [] @@ -1598,16 +1598,16 @@ "id": "0f4b6b0b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:49:37.866269Z", - "iopub.status.busy": "2023-01-24T16:49:37.865857Z", - "iopub.status.idle": "2023-01-24T16:50:04.707804Z", - "shell.execute_reply": "2023-01-24T16:50:04.694145Z" + "iopub.execute_input": "2023-01-25T18:54:52.969552Z", + "iopub.status.busy": "2023-01-25T18:54:52.969183Z", + "iopub.status.idle": "2023-01-25T18:55:25.410582Z", + "shell.execute_reply": "2023-01-25T18:55:25.390290Z" }, "papermill": { - "duration": 27.013619, - "end_time": "2023-01-24T16:50:04.818820", + "duration": 32.832242, + "end_time": "2023-01-25T18:55:25.755008", "exception": false, - "start_time": "2023-01-24T16:49:37.805201", + "start_time": "2023-01-25T18:54:52.922766", "status": "completed" }, "scrolled": false, @@ -2076,10 +2076,10 @@ "id": "bb11e437", "metadata": { "papermill": { - "duration": 0.063763, - "end_time": "2023-01-24T16:50:05.081612", + "duration": 0.052984, + "end_time": "2023-01-25T18:55:25.866100", "exception": false, - "start_time": "2023-01-24T16:50:05.017849", + "start_time": "2023-01-25T18:55:25.813116", "status": "completed" }, "tags": [] @@ -2094,16 +2094,16 @@ "id": "9465b896", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:50:05.222768Z", - "iopub.status.busy": "2023-01-24T16:50:05.220675Z", - "iopub.status.idle": "2023-01-24T16:50:05.265291Z", - "shell.execute_reply": "2023-01-24T16:50:05.264458Z" + "iopub.execute_input": "2023-01-25T18:55:25.990878Z", + "iopub.status.busy": "2023-01-25T18:55:25.989689Z", + "iopub.status.idle": "2023-01-25T18:55:26.045960Z", + "shell.execute_reply": "2023-01-25T18:55:26.044719Z" }, "papermill": { - "duration": 0.128402, - "end_time": "2023-01-24T16:50:05.269749", + "duration": 0.133216, + "end_time": "2023-01-25T18:55:26.049880", "exception": false, - "start_time": "2023-01-24T16:50:05.141347", + "start_time": "2023-01-25T18:55:25.916664", "status": "completed" }, "tags": [] @@ -2130,10 +2130,10 @@ "id": "79ef0cca", "metadata": { "papermill": { - "duration": 0.060427, - "end_time": "2023-01-24T16:50:06.025827", + "duration": 0.0489, + "end_time": "2023-01-25T18:55:26.151986", "exception": false, - "start_time": "2023-01-24T16:50:05.965400", + "start_time": "2023-01-25T18:55:26.103086", "status": "completed" }, "tags": [] @@ -2152,10 +2152,10 @@ "id": "8c5e03e8", "metadata": { "papermill": { - "duration": 0.060926, - "end_time": "2023-01-24T16:50:06.147142", + "duration": 0.049502, + "end_time": "2023-01-25T18:55:26.249190", "exception": false, - "start_time": "2023-01-24T16:50:06.086216", + "start_time": "2023-01-25T18:55:26.199688", "status": "completed" }, "tags": [] @@ -2174,16 +2174,16 @@ "id": "13bd8021", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:50:06.270535Z", - "iopub.status.busy": "2023-01-24T16:50:06.269794Z", - "iopub.status.idle": "2023-01-24T16:50:15.751145Z", - "shell.execute_reply": "2023-01-24T16:50:15.750477Z" + "iopub.execute_input": "2023-01-25T18:55:27.310439Z", + "iopub.status.busy": "2023-01-25T18:55:27.309648Z", + "iopub.status.idle": "2023-01-25T18:55:42.289533Z", + "shell.execute_reply": "2023-01-25T18:55:42.288597Z" }, "papermill": { - "duration": 9.545068, - "end_time": "2023-01-24T16:50:15.753034", + "duration": 15.991126, + "end_time": "2023-01-25T18:55:42.291558", "exception": false, - "start_time": "2023-01-24T16:50:06.207966", + "start_time": "2023-01-25T18:55:26.300432", "status": "completed" }, "tags": [] @@ -2411,10 +2411,10 @@ "id": "06f5cce6", "metadata": { "papermill": { - "duration": 0.060685, - "end_time": "2023-01-24T16:50:15.875349", + "duration": 0.049326, + "end_time": "2023-01-25T18:55:42.391501", "exception": false, - "start_time": "2023-01-24T16:50:15.814664", + "start_time": "2023-01-25T18:55:42.342175", "status": "completed" }, "tags": [] @@ -2439,16 +2439,16 @@ "id": "c0c1aaf5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:50:15.998409Z", - "iopub.status.busy": "2023-01-24T16:50:15.997666Z", - "iopub.status.idle": "2023-01-24T16:50:16.052072Z", - "shell.execute_reply": "2023-01-24T16:50:16.051349Z" + "iopub.execute_input": "2023-01-25T18:55:42.491249Z", + "iopub.status.busy": "2023-01-25T18:55:42.490669Z", + "iopub.status.idle": "2023-01-25T18:55:42.560350Z", + "shell.execute_reply": "2023-01-25T18:55:42.559360Z" }, "papermill": { - "duration": 0.117901, - "end_time": "2023-01-24T16:50:16.053680", + "duration": 0.122423, + "end_time": "2023-01-25T18:55:42.562542", "exception": false, - "start_time": "2023-01-24T16:50:15.935779", + "start_time": "2023-01-25T18:55:42.440119", "status": "completed" }, "tags": [] @@ -2481,10 +2481,10 @@ "id": "45e750c0", "metadata": { "papermill": { - "duration": 0.060557, - "end_time": "2023-01-24T16:50:16.175646", + "duration": 0.047682, + "end_time": "2023-01-25T18:55:42.662522", "exception": false, - "start_time": "2023-01-24T16:50:16.115089", + "start_time": "2023-01-25T18:55:42.614840", "status": "completed" }, "tags": [] @@ -2499,16 +2499,16 @@ "id": "23374ddb", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:50:16.298694Z", - "iopub.status.busy": "2023-01-24T16:50:16.298127Z", - "iopub.status.idle": "2023-01-24T16:50:16.407492Z", - "shell.execute_reply": "2023-01-24T16:50:16.406770Z" + "iopub.execute_input": "2023-01-25T18:55:42.765660Z", + "iopub.status.busy": "2023-01-25T18:55:42.764927Z", + "iopub.status.idle": "2023-01-25T18:55:42.905631Z", + "shell.execute_reply": "2023-01-25T18:55:42.904678Z" }, "papermill": { - "duration": 0.172869, - "end_time": "2023-01-24T16:50:16.409126", + "duration": 0.199059, + "end_time": "2023-01-25T18:55:42.908093", "exception": false, - "start_time": "2023-01-24T16:50:16.236257", + "start_time": "2023-01-25T18:55:42.709034", "status": "completed" }, "tags": [] @@ -2835,10 +2835,10 @@ "id": "4ee655ea", "metadata": { "papermill": { - "duration": 0.06133, - "end_time": "2023-01-24T16:50:16.532287", + "duration": 0.048172, + "end_time": "2023-01-25T18:55:43.006737", "exception": false, - "start_time": "2023-01-24T16:50:16.470957", + "start_time": "2023-01-25T18:55:42.958565", "status": "completed" }, "tags": [] @@ -2853,16 +2853,16 @@ "id": "934c1866", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:50:16.657019Z", - "iopub.status.busy": "2023-01-24T16:50:16.656212Z", - "iopub.status.idle": "2023-01-24T16:50:16.684271Z", - "shell.execute_reply": "2023-01-24T16:50:16.683593Z" + "iopub.execute_input": "2023-01-25T18:55:43.110029Z", + "iopub.status.busy": "2023-01-25T18:55:43.109308Z", + "iopub.status.idle": "2023-01-25T18:55:43.152910Z", + "shell.execute_reply": "2023-01-25T18:55:43.151922Z" }, "papermill": { - "duration": 0.092927, - "end_time": "2023-01-24T16:50:16.685838", + "duration": 0.097056, + "end_time": "2023-01-25T18:55:43.155208", "exception": false, - "start_time": "2023-01-24T16:50:16.592911", + "start_time": "2023-01-25T18:55:43.058152", "status": "completed" }, "tags": [] @@ -3054,10 +3054,10 @@ "id": "7b8b1c10", "metadata": { "papermill": { - "duration": 0.06115, - "end_time": "2023-01-24T16:50:16.809316", + "duration": 0.047475, + "end_time": "2023-01-25T18:55:43.254187", "exception": false, - "start_time": "2023-01-24T16:50:16.748166", + "start_time": "2023-01-25T18:55:43.206712", "status": "completed" }, "tags": [] @@ -3072,16 +3072,16 @@ "id": "8b65ac34", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:50:16.933189Z", - "iopub.status.busy": "2023-01-24T16:50:16.932613Z", - "iopub.status.idle": "2023-01-24T16:50:17.195116Z", - "shell.execute_reply": "2023-01-24T16:50:17.194317Z" + "iopub.execute_input": "2023-01-25T18:55:43.353216Z", + "iopub.status.busy": "2023-01-25T18:55:43.352639Z", + "iopub.status.idle": "2023-01-25T18:55:43.703105Z", + "shell.execute_reply": "2023-01-25T18:55:43.702094Z" }, "papermill": { - "duration": 0.326305, - "end_time": "2023-01-24T16:50:17.196809", + "duration": 0.402578, + "end_time": "2023-01-25T18:55:43.705404", "exception": false, - "start_time": "2023-01-24T16:50:16.870504", + "start_time": "2023-01-25T18:55:43.302826", "status": "completed" }, "scrolled": false, @@ -3116,10 +3116,10 @@ "id": "c323f7b2", "metadata": { "papermill": { - "duration": 0.061275, - "end_time": "2023-01-24T16:50:17.320503", + "duration": 0.047194, + "end_time": "2023-01-25T18:55:43.803061", "exception": false, - "start_time": "2023-01-24T16:50:17.259228", + "start_time": "2023-01-25T18:55:43.755867", "status": "completed" }, "tags": [] @@ -3136,16 +3136,16 @@ "id": "642879b9", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:50:17.444845Z", - "iopub.status.busy": "2023-01-24T16:50:17.444282Z", - "iopub.status.idle": "2023-01-24T16:50:17.497583Z", - "shell.execute_reply": "2023-01-24T16:50:17.496899Z" + "iopub.execute_input": "2023-01-25T18:55:43.901285Z", + "iopub.status.busy": "2023-01-25T18:55:43.900675Z", + "iopub.status.idle": "2023-01-25T18:55:43.971476Z", + "shell.execute_reply": "2023-01-25T18:55:43.970389Z" }, "papermill": { - "duration": 0.11754, - "end_time": "2023-01-24T16:50:17.499265", + "duration": 0.121815, + "end_time": "2023-01-25T18:55:43.973915", "exception": false, - "start_time": "2023-01-24T16:50:17.381725", + "start_time": "2023-01-25T18:55:43.852100", "status": "completed" }, "tags": [] @@ -3350,10 +3350,10 @@ "id": "3cd4d15f", "metadata": { "papermill": { - "duration": 0.061835, - "end_time": "2023-01-24T16:50:17.623300", + "duration": 0.052617, + "end_time": "2023-01-25T18:55:44.080157", "exception": false, - "start_time": "2023-01-24T16:50:17.561465", + "start_time": "2023-01-25T18:55:44.027540", "status": "completed" }, "tags": [] @@ -3370,16 +3370,16 @@ "id": "aaf29257", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:50:17.750092Z", - "iopub.status.busy": "2023-01-24T16:50:17.749428Z", - "iopub.status.idle": "2023-01-24T16:50:38.285602Z", - "shell.execute_reply": "2023-01-24T16:50:38.284779Z" + "iopub.execute_input": "2023-01-25T18:55:44.186846Z", + "iopub.status.busy": "2023-01-25T18:55:44.183806Z", + "iopub.status.idle": "2023-01-25T18:56:13.961930Z", + "shell.execute_reply": "2023-01-25T18:56:13.960548Z" }, "papermill": { - "duration": 20.600554, - "end_time": "2023-01-24T16:50:38.287271", + "duration": 29.833871, + "end_time": "2023-01-25T18:56:13.964673", "exception": false, - "start_time": "2023-01-24T16:50:17.686717", + "start_time": "2023-01-25T18:55:44.130802", "status": "completed" }, "scrolled": true, @@ -3419,10 +3419,10 @@ "id": "c403963b", "metadata": { "papermill": { - "duration": 0.062158, - "end_time": "2023-01-24T16:50:38.413307", + "duration": 0.062313, + "end_time": "2023-01-25T18:56:14.082046", "exception": false, - "start_time": "2023-01-24T16:50:38.351149", + "start_time": "2023-01-25T18:56:14.019733", "status": "completed" }, "tags": [] @@ -3437,16 +3437,16 @@ "id": "f6364f19", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:50:38.537936Z", - "iopub.status.busy": "2023-01-24T16:50:38.537368Z", - "iopub.status.idle": "2023-01-24T16:50:39.416778Z", - "shell.execute_reply": "2023-01-24T16:50:39.415748Z" + "iopub.execute_input": "2023-01-25T18:56:14.205777Z", + "iopub.status.busy": "2023-01-25T18:56:14.205121Z", + "iopub.status.idle": "2023-01-25T18:56:15.424490Z", + "shell.execute_reply": "2023-01-25T18:56:15.423479Z" }, "papermill": { - "duration": 0.943647, - "end_time": "2023-01-24T16:50:39.418388", + "duration": 1.291032, + "end_time": "2023-01-25T18:56:15.427053", "exception": false, - "start_time": "2023-01-24T16:50:38.474741", + "start_time": "2023-01-25T18:56:14.136021", "status": "completed" }, "tags": [] @@ -3561,10 +3561,10 @@ "id": "4b82ecaa", "metadata": { "papermill": { - "duration": 0.062244, - "end_time": "2023-01-24T16:50:39.543647", + "duration": 0.053587, + "end_time": "2023-01-25T18:56:15.535248", "exception": false, - "start_time": "2023-01-24T16:50:39.481403", + "start_time": "2023-01-25T18:56:15.481661", "status": "completed" }, "tags": [] @@ -3579,16 +3579,16 @@ "id": "ecf229a4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:50:39.669537Z", - "iopub.status.busy": "2023-01-24T16:50:39.668814Z", - "iopub.status.idle": "2023-01-24T16:50:39.977638Z", - "shell.execute_reply": "2023-01-24T16:50:39.976928Z" + "iopub.execute_input": "2023-01-25T18:56:15.644873Z", + "iopub.status.busy": "2023-01-25T18:56:15.643283Z", + "iopub.status.idle": "2023-01-25T18:56:16.105227Z", + "shell.execute_reply": "2023-01-25T18:56:16.104237Z" }, "papermill": { - "duration": 0.373622, - "end_time": "2023-01-24T16:50:39.979379", + "duration": 0.519301, + "end_time": "2023-01-25T18:56:16.107403", "exception": false, - "start_time": "2023-01-24T16:50:39.605757", + "start_time": "2023-01-25T18:56:15.588102", "status": "completed" }, "scrolled": false, @@ -3597,7 +3597,7 @@ "outputs": [ { "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAp4AAALLCAYAAABQNYLXAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8rg+JYAAAACXBIWXMAAA9hAAAPYQGoP6dpAABhMElEQVR4nO3dd3gVVeL/8c9NIwQINfQOSlEEgVBcBFTEgooorqJSXVlRV9e1s66FFQsirmVRUYoslkXBTpEiKD00BUEWBaSJIGjokHJ+f/C7871Jbi8nN+H9ep48hDtnzjlz5szcT26ZcRljjAAAAIAYSyjuDgAAAOD0QPAEAACAFQRPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABYQfAEAACAFQRPAAAAWEHwjMCCBQvkcrnkcrm0YMGCIssHDRokl8ulhg0bWu8b4tf27dv15z//WU2aNFFqaqozhz766KPi7lqxc4/F448/XtxdiYrHH3/c2SagtJg0aZIzr7dt21bc3UEJQ/AELNq+fbvatWuncePGacuWLTpx4kRxdwkATlsnTpzQhx9+qIcfflg9evTQmWeeqSpVqig5OVlVq1bVeeedp0cffVQ7d+70W0/Dhg2dMB7sj7/Q/u2332ro0KE688wzVa5cOVWoUEEtW7bU/fffr59++ino7Zs1a5ZuuOEGNW7cWGlpaUpNTVW9evXUu3dv/fe//1V+fn7QdUULwRMlRml4BfnJJ5/Ur7/+qqSkJD377LNaunSp1q1bp3Xr1umiiy4q7u7FhPuEPGjQoOLuClBibNu2zQkokyZNinl7gd7BK6127Niha665Rs8884zmzZunzZs367ffflNubq4OHDigpUuX6p///KeaN2+ut956K2rtVqxYUTVr1vS67LHHHlObNm30xhtvaPPmzTp69KgOHz6sjRs3avTo0WrVqpWmTZvmt/4TJ06ob9++uuyyy/Tf//5XW7du1bFjx3TixAnt3LlTn3zyiW644QZ1795dv//+e9S2KxhJVlsrZbp37y5jTHF3AyXI3LlzJUlXX321HnjggWLuTfzheALi36BBg0rVH5LVq1fXBRdcoMzMTDVo0EC1atVScnKydu3apc8//1xvv/22jhw5osGDBysjI0OXX355kTq++OILnTx50m87c+fO1T333CNJ+uMf/6jU1NQiZZ555hmNGDFCklSrVi3df//9Ou+88yRJS5Ys0ahRo7Rnzx7deOONmjdvnrp06eK1rbvuussJp9WrV9cDDzygtm3bKjk5WevWrdOzzz6rn376SV9//bVuuOEGzZo1K/gBixDBE7Bo165dkqQzzzyzmHsCAGjcuLH27Nnj83PYffr00dChQ9WlSxfl5OTokUce8Ro8gzmn//Of/3R+HzBgQJHlO3fudD7fXrt2bWVlZal27drO8o4dO+qPf/yjOnTooN27d+uOO+7QmjVrlJBQ8M3rX375RW+++aYkqXLlylq1apXq1q3rLO/SpYtuuukmtW7dWtu2bdPs2bO1cuVKtW/fPuA2RANvtQMWuf8iTk5OLuaeAAASEhICfvmvQ4cOuvDCCyVJa9as0eHDh0NuJzs7W5988omkU2HX2yuV7733nvO5/yeeeKJA6HSrU6eOnnjiCUmnPgc6Y8aMImWWL1/ufHZz8ODBBUKnW3p6uvPqqyQtXbo05G0KV4kPnrt379ZDDz2ktm3bqmLFikpOTlaNGjXUqlUr9evXT5MmTdLBgweLrFf427Nz587VVVddpVq1aik1NVWNGzfWnXfe6bxC5U00PhMzZ84clS9fXi6XS82bN9eOHTuKlPnoo4903XXXqX79+kpNTVWlSpXUvn17PfHEE/rtt9/Catete/fucrlc6t69uyRp8+bNuvPOO3XGGWcoLS2tyAegf/75Z40dO1Z9+/bVGWecoXLlyqlMmTKqU6dO0B9WPn78uF566SV1795dGRkZSk5OVpUqVdSsWTNddtllGjNmTIE23d8Mdn++5qeffvL6QW1fbb3yyiu66KKLVLNmTaWkpKh69erq0aOHxo8fr9zcXJ/9LPzZxFWrVmnQoEFq1KiRypQpE/Q3lT2/Aer2xBNPFOi7t7et9u3bp0ceeUTnnnuuKlWqpNTUVDVs2FD9+/fXokWL/LYZrb57CvVYc88t9wfh33rrrSL7zD3v3Px9q73wN2lPnjypMWPGqH379qpYsaKqVKmi7t276/PPPy+w3qFDhzRq1Cide+65Sk9PV6VKlXTxxRdr3rx5Prc12G/tRvo5vGC/xV/4OC0s1GMqFIXnUlZWlvr166d69eo5X1QYPHiwvv/+e591FD5X5ufna8KECbrgggtUo0YNJSQkeD0GVq9erdtuu03NmjVT+fLlVa5cOTVr1kzDhg3T//73P7/9/v333zVy5Eh17txZlStXVnJysjIyMtSyZUv16dNHr776qn755Ref60fz3LFp0ybdeuutatiwocqUKaMaNWqoT58+WrZsmdf1XS6XGjVq5Px/8ODBRY6dwnNmy5Ytev7553XllVeqYcOGKlu2rMqWLasGDRro+uuv9/lWqnsOX3DBBc5jF1xwQZH2POd3sMdHNM9hoY5htFWoUMH5PZwvhU6dOlXHjx+X5P3VTklauXKl8/tll13ms65LL73U+f2DDz4ostzzLf/GjRv7rKdJkyZe14k5U4J99dVXJj093Ujy+/Ppp58WWde97LHHHjOPP/64z3UrVqxovvrqK6/tf/nll065L7/8ssjygQMHGkmmQYMGXtd///33TUpKipFk2rZta/bu3Vtg+YEDB8yFF17od9uqV69uli5dGvLYuXXr1s1IMt26dTMfffSRKVeuXJE2tm7daowxJjc31yQkJAQc74svvtgcOnTIa3u7d+82LVu2DFjHvffe66zz2GOPBSzvbSqvXbvWNGjQwO86mZmZZs+ePV776l534MCB5tVXXzVJSUkB2/Rm4sSJAfs+cODAAuvMnj074Ny+4447TF5eXkz77hbOseaeW/5+unXrVqAdz+PS3zh+8803pmPHjj7rHTNmjDHGmJ9++smcddZZXsu4XC4zZcoUr9vr2ZZ7/nuzdetWp9zEiROLLPecu974215PnsdpYeEcU6HwnEvjx4/3OpckmTJlypipU6d6rcPzXDlz5kzTo0cPv8dAXl6eueeee4zL5fK5PUlJSeb111/32t6GDRtM7dq1A47Jyy+/7HX9aJ47pk+fbtLS0rzWkZiYaN57770i6wdzvvOcM1u2bAlqnZtvvtnk5OQUaMtzDvv78ZzfwRwf0TyHhTOG0bR3715TuXJlI8lUq1YtrDq6dOninHd+/PFHr2U8j4vC+8nTyZMnnXKNGjUqsvzbb791lv/tb3/zWc+LL77olPOWk2KlxAbP48ePOyeWChUqmAceeMDMnDnTrFq1yixdutS888475s477zR16tTxGzzbt29vJJlmzZqZ8ePHm6ysLDN37lzz5z//2QlZ6enpZvv27UXqiCR4vvHGG079Xbt2NdnZ2UW2r23bts6B1b9/f/Puu++aZcuWma+//tqMHDnSVK1a1UgylStXNtu2bQtrHN1PaI0aNTLly5c3GRkZ5plnnjGLFy82y5YtMy+//LLZt2+fMcaYnJwck5CQYC688ELz3HPPmVmzZplVq1aZBQsWmAkTJpjOnTs74zFgwACv7V177bUFToLTp083y5YtM1lZWeaTTz4xjz76qGndunWBJ8lffvnFrFu3zvTu3dtIMrVr1zbr1q0r8uNp8+bNpmLFis7+e/jhh82HH35oVq5caWbPnm3uuOMO5wm0Y8eO5uTJk0X66j7xtWzZ0iQmJpqGDRuaV155xSxbtswsWrTIPP3000GN8W+//eb00b3tw4YNK9D3nTt3OuXXrFnj/EGSnJxs7rnnHvPll1+aFStWmNdff900atTIqeeBBx7w2ma0+m5M+Mfali1bzLp165x1e/fuXWSfbdmypUBb3p5U3Tyf7Dp27GiSkpLM7bffbubMmWNWrlxp3nzzTaethIQEs27dOtOuXTtTtmxZ89BDD5kFCxaYrKws869//cuZGxUqVDC//PKL37biPXiGc0yFwj2XWrdubZKTk03t2rXNyy+/bJYvX24WLlxoHnzwQVOmTBlnvmZlZRWpw/Ncec455xhJ5qqrrjLTp083q1atMjNmzCgQHm6//XanfNeuXc2ECRPMggULzIoVK8wbb7xR4I+Jjz/+uEh77dq1c/pz++23m08//dRkZWWZ5cuXm2nTppn777/fNG3a1GvwjOa5o23btiY1NdU0atTIOf6WLl1qHn/8cZOamuq0UfhFh3Xr1pnZs2c72/jkk08WOXY85+3mzZtNSkqKufLKK81LL71k5s6da1avXm3mzp1rxo4dW2C8Hn300QJtnTx50qxbt85MmDDBKTNhwoQi7f3222/OOoGOj2iew8Idw0gdP37cbNmyxYwbN840adKkwL4I1ZYtW5w/os4//3yf5a6++mqnnV9//dVnuX379jnlXC6XOXLkSJEy5513npFkqlSpYnbt2lVk+cGDB5390LhxY3PixImQtytcJTZ4zps3L6iknpOTUyTUGVPwL8q2bdt6fYVu8uTJTpnrrruuyPJwg+ezzz7rrHfFFVeYo0ePFll3+PDhRpKpVKmSWblypddt27Ztm6lVq5aRZG688UYfI+Cf56tStWvXNj/99JPPsvn5+Wbz5s1+63v00Uedg+F///tfgWXHjh0zycnJRgr86sv+/fuLPBboFWRP7oPu3HPPdYJzYTNnznTC/7hx44os93zFo1WrVgVOvOEKJmhkZmY6f3DMnj27yPIDBw44r3AlJCSY9evXx7TvkR5rnq9cBBJs8HS5XObDDz8sUuabb75x9mlGRoYpU6aMWbZsWZFyn3/+uVOX+9VRX23Fc/CM9JgKhudcatCggfn555+LlJk/f74TxjIzM4ss9zxXSjKPPPKIz/a++OILp9ybb77ptcyxY8ecd4MaNGhQ4NWhH3/80Vnf1yuaxpw6nx04cKDI49E+d7Rr187rcTFlyhS/czDQ3PJ0+PBhs3v3bp/L8/PzzaBBg4wkU65cOfP7778XKRPo+cxToOMj2uewcMcwVIXnaeGfAQMGhBXQPN9VfeONN3yWe/jhh51y06ZN81lu2rRpBfq1adOmImU2bdrkBMsaNWqY559/3nz55Zfm66+/Nq+++qqzrFq1ahG9axqOEhs83377bWfQvU3IQDx3mq9gZ4wxl112mZFOva1T+IQbTvB88MEHnXVuuukmry+nHzp0yPmL29+J0xhjxo4d6/xVefjwYf8b7YVn8Jw8eXLI6xeWm5trqlWrZiSZ0aNHF1i2a9cupy1vr1IEEmzw/Oqrr5x2vv32W79l//jHPxpJ5rzzziuyzPPE5+vjFqEKFDSWL1/ulLntttt81rNo0SKn3O233x7Tvkd6rMUieF5//fU+6+jatatT7sEHHwzYrz59+vhtK56DZ6THVDA859IHH3zgs9ywYcOccoVf9fQ8V5555pkmNzfXZz3uQHnttdf67deGDRucOr/44gvn8cWLFzuPf/PNN0Fu5SmxOHf46kN+fr7zCr23ORhK8AzG/v37TWJios/9GK3gGYtzWLhjGCpfwbNhw4YF5lio3K+Yli1b1u85dOnSpU6brVu3NseOHStS5tixY6Z169ZBZZhff/3V/POf/zTly5cvsk3JycnmvvvuMzt27Ah7u8JVYr9cVKtWLef3iRMnhl1Pq1at1K5dO5/LhwwZIknKzc2N6KK6+fn5Gjp0qJ599llJ0p133qn//Oc/SkoqekWrhQsXKjs7W5LUt29fv/V27dpVkpSTk6NVq1aF3b+UlBRdd911Ia2Tn5+v3bt3a9OmTVq/fr3Wr1+vjRs3Ot+g++abbwqUr1q1qlJSUiRJ//nPf/x+OD8S7m8ONmvWTK1atfJb1j1+WVlZPvtTr149nX/++dHtpA/u63xK0i233OKz3B/+8Ae1aNGiyDqFRaPv0TrWoumGG27wuax169ZBlTvnnHMknfpSRkll65iSTl2WpXfv3j6Xu8+Vkv85ef311ysxMdHrsoMHDzrn2UDnvhYtWqhatWqSCn4j13O+hvqFr2ifO1q1auXMs8JcLpfOPfdcSdGfgzk5Odq5c6c2btzonJt3796tqlWrSip6bo6maJ/DbI5hZmamc0OPlStXavr06Ro0aJB27NihgQMHavz48SHXuWTJEv3444+SpN69eys9Pd1n2U6dOumKK66QdGofdevWTfPmzdPRo0d19OhRzZs3T926ddM333zjHPeSdOzYMa/1ffrpp3r77be9fgs/JydHU6dO1TvvvGP9+sklNnh26dLF+bbWX//6V3Xo0EFPP/20Fi9eHNK3szIzM/0u79Chg/P7unXrwuprbm6u+vXrpzfeeEOS9Mgjj+jll1/2+c1iz2+21apVy+8tt84++2yn7J49e8LqnySdccYZXi9mW5gxRlOmTNEFF1yg8uXLq06dOmrevLlatWrl/Kxdu1aS9OuvvxZYt0yZMrr++uslnfomXtOmTfXAAw9oxowZUb1zgnv8Nm3aFPCWZXfeeaekUwfhgQMHvNbn66QXC+vXr5d06g+BNm3a+C3bsWNHSaeuROBrzkej79E61qLJ3zXzKlWqFFK5Q4cORatb1tk6piTp3HPP9fqHslubNm2cJ0N/50p/c3LNmjXOVTH69esX8Ph1n2M8z32NGjVy/th64YUXdNZZZ+nRRx/V/PnzdfToUb/bGO1zR/Pmzf22V6VKFUnRmYM5OTn697//rU6dOql8+fKqV6+eWrZsWeDcvHfvXklFz83RFO1zmM0xLFeunM4++2ydffbZateunfr06aOJEydq9uzZOnDggP70pz85F3cP1uTJk53fBw4cGLD8W2+95eSSFStWqEePHipXrpzKlSunHj16aMWKFerVq5cTUKWC37h3u/fee52rTVx99dVavHixDh8+rGPHjmn16tUaPHiwtm/frgcffFB9+/ZVXl5eSNsViRIbPJOTk/Xpp586fzFlZWVp+PDh6tKliypVqqRLL71U77zzTsDBrF69ut/lNWrUcH73dXIJZNeuXZo6daok6fLLLy9wEVlv3CeHUAU6qfpTuXLlgGWOHz+uXr16qX///lqwYIHPv7LcvC1/5ZVXdOWVV0o6dVmk5557Tr169VLVqlWVmZmp5557znm1N1zRHr9gxiZa3HOsSpUqfp/kJTm3WzPG+LysVjT6Hq1jLZrS0tJ8LvO8mHIw5Wz2OxZsHFNS4HNlUlKSEwL8nSv9zcloHbvvvvuuOnfuLEnasGGD/vnPf+qiiy5SpUqV1LVrV7322mvOpW1i0b6bv/knRW8OHjhwQJ07d9add96p5cuXB/yDMNC5O9K+SNE7h9kaQ38uuugi3X333ZJOXQrP36XDPJ04ccJ57q9Vq5YuvvjigOtUqVJFX331lUaNGqVmzZoVWNagQQM9//zz+uSTTwrMucLH1Oeff64xY8ZIOnWXqQ8//FDnnXeeypUrp9TUVJ177rmaMGGC/vGPf0iSpk+frrFjxwa1TdFQou9c1LJlS61bt06ffvqpPv30U3311Vf64YcfdOzYMc2ePVuzZ8/WmDFjNGPGDJ8nzXCuZxiqGjVqqGnTplq8eLFmzJih559/Xvfee6/P8p4H0OrVq4O+2Li3i8QGy9dbX55GjhypmTNnSpK6deumO+64Q23btlXNmjVVtmxZ5wTQtWtXff31115fvk9PT9cnn3yiFStWaOrUqVqwYIHWrl2rvLw8rVy5UitXrtTo0aP10UcfOU8coXKPX+vWrTVlypSg16tTp47Xx4MZm2iL1ryMVt+jcawhNmwcU5KdOel57nv99dedWwUGUviJt06dOlqyZInmzZun6dOna+HChdqwYYNycnL09ddf6+uvv9bo0aM1Y8aMAq+KR/vcYcvdd9/tfNTq6quv1pAhQ3TOOeeoevXqSk1NdfZd/fr1tWPHDitvrdp4brWpd+/eGjVqlPLz8zV9+nQNHz484DqffvqpE6hvvPHGoM/Hqampuv/++3X//ffrt99+06+//qr09PQCL4Rt3rxZ0qnjv169egXWd9+1yOVy6cknn/TZzvDhw/XCCy/o8OHDmjBhgv7yl78E1b9IlejgKZ06iV199dW6+uqrJZ26wPmsWbP073//W6tWrdKqVav05z//WR9++KHX9f1dQLjwcvdf86FKTU3VzJkz1bNnTy1btkz33XefEhMT9de//tVreffncCQpIyMjokAZLcYYZzKff/75mj9/fpHbdLkF88pwhw4dnI8xHDp0SAsWLNCkSZM0ffp07d27V9dee61+/PFHlS1bNuS+usfv8OHDBT6KUBK459j+/fuVm5vr9xUD99uLLpfLyquykR5rJYnn3PZ3Q4QjR45E1I7L5ZIxJuBNF4JpJ5bHlBT4XJmbm1vg1a5weJ770tLSIj5+L7roIl100UWSTh1Tc+fO1bhx4zR//nz9+OOPuv7667VmzZoi7Zekc8fBgwf13//+V5J00003+Q3Mkd5wJBjxfA6LREZGhvO7+6YYgYT6Nrs3lStXLjI2Bw4c0NatWyVJ7du3LxLyN27cKOnUuxT+/ihKTU3VWWedpeXLlwf9Km40lNi32n2pVauWBg8erKVLl6pt27aSpM8++8znWwtZWVl+6/NcHsmJqEKFCpo1a5bz2Y177rlHr7zyitey7g9LS9LixYvDbjOaDhw44JwkrrvuOp+h8/Dhw9q0aVNIdVeoUEFXXnmlpk2bprvuukvSqVBT+M4Wwf4F7flh80g+91oc3HPs5MmTzmdlfVmxYoWkU5/P9fyguS3BHmsl8ZUPz89M+XuyDnT3nGDb8deGMUY//PBDyPUGc0yFYu3atX6/vPTNN984b/GGe65s06aNM1+ife6rWrWqrr/+es2bN09XXXWVpFPb5H7lSIqvc0ewx83mzZuVk5MjSc7nfb35/vvv/d7qMVrHaUk6h4XC8y6G5cuXD1h+3759zt2i2rRpE/DLaqGYPn2688eqt33uDvvBfNnQPXcCfSwimkpd8HRLTk5Wt27dJJ0afF8ftF+3bl2Bv3gLmzBhgqRTr/b4ul1dsCpWrKgvvvjC+Rb9X/7yF7366qtFyvXo0cP5XMtLL71k/Rtn3nhOYH+vvrz55psRfbPW/eqEVPQD8O4vPwW6XZn7ScUYoxdffDHsvhSHHj16OL+75543S5cu1YYNG4qsUxwCHWvB7rd44nm7Qs8v+xX27rvvRqUdf23MnDkzoi8K+TumQnHgwAF9+umnPpd7ztdw52RGRoY6deokSXrnnXe0b9++sOoJxNeYxNO5w/PLnv6OnWDPza+99lpU2gukJJ7DgvH+++87vwcTIt99910n1IX7aqc3x48f11NPPSXp1KuhN954Y5Ey7vPK/v37nVc/vTlw4IDzZTDPc16sldjg+fXXX/t9FeDkyZNauHChpFN/nXi+TF7Y0KFDvR6w77zzjmbMmCHp1OdmPC/TEa5KlSppzpw5zl/Wd9xxh/Ntd88y7m9MLlmyRPfcc4/ft+J++eUX523wWMnIyHC+Bfzuu+96PTFlZWU5H1b2ZsuWLc4+8eWLL75wfi98ILjHf+/evX6/wdizZ0/nLcfnnnvO+XC3L+7PLsaDDh06qH379pKkN954w+v9xLOzs/XnP/9Z0qm3hIcNGxbTPkV6rLn3m/uSIiXB2Wef7bxl+Morr3id71OnTi3wZBQOd2Bfvny511f49uzZ4/dzV5EeU6H629/+5vUt94ULF2rcuHGSpHbt2gW8Wog/jzzyiKRTbyH37dvXb+g+ceKE/v3vfxf4otDatWv9vtJmjHEu3+NyudSwYUNnWTydOzwvleXv2GnatKnzauVbb73l9YWKTz/91Oc7bG6ez2+RHKvxeA7z59133w345bupU6fq9ddfl3TqBST3Hyj+uN9mT0pK8hoOfdmzZ4/P5/tjx46pX79+ztvszz//vNdXX91fNpROXYnE25fN8vPzdddddznLPL8lH3PWrxwaJY899phJSEgw3bp1M6NGjXJu37ho0SIzYcIE06FDB+dCqXfffXeR9d3L3LfMbN68uZk4caJZuXKlmTdvnhk2bJhzZ4oKFSp4vYh0JLfM/PXXX52LwLpcLjN+/PgCy48fP17gXtStW7c2r7zyilm0aJFZs2aNmT9/vnn55ZdN7969TUpKimnXrl1Y4+jvVnyF3XHHHQXG7Z133nFuMfq3v/3NpKammmrVqpkzzzzTa53u8WrZsqX5+9//bj788EOzYsUKs2LFCjNt2jTngsySTJs2bUx+fn6B9efMmeMsv/HGG83SpUvN5s2bnR9PP/zwg6lSpYpT/sorrzRTpkwxy5cvNytXrjQzZswwI0eONJ06dTKS97u+hHLh82C5++PvguGet5tLSUkx9957r3O7x3HjxpnGjRs79QS63Vw0+h7psfb3v//dWf7000+btWvXOvvM81ahxgR/AXl/F3UPdNF2t0A3JPC8i8h5551nPvroI7N69Wozc+ZMM2TIEJOQkODc5UZhXkB+/fr1zh1/KleubF544QWTlZVlFi9ebEaNGmVq1qxpqlatas4444yYHFPBKHzLzDp16phXXnnFrFixwnz99dfm4Ycfdm5dmJSU5PVOUaFcnNwYY+6++26nfM2aNc3jjz9u5s6da9asWWMWLVpkJk2aZG655Rbn/tmed55zz5PMzEwzYsQI89lnn5mVK1c6t3e9+OKLnbp79+5dpG2b545Ac/APf/iDkWSqVq1q3nnnHbNhwwbn2PG8E1WvXr2c/vbo0cNMmzbN6estt9xiEhMTzRlnnGEyMjL89qtu3bpGOnUL5Y8//th8//33TnsHDx4sMsa+jkWb57BQ7mjnTbdu3Uz58uXNzTffbMaNG2cWLlxo1q5daxYvXmwmTJhgLr/8cqevLpfLTJo0KWCd3333nbPOFVdcEVJ/nnvuOdOwYUPz0EMPmc8++8ysXr3aLFy40IwePbrArTv/9Kc/+azjxIkTpkWLFk7ZVq1amXHjxjlzePLkyQVucV2jRg2fd+mKhRIdPN2D5u+nd+/eXm9J6fkE56+u9PR0s2DBAq99iCR4GnPqfqutWrUy0qnbhr311lsFlh88eNBcc801QW3nBRdcEPIYGhNa8Pz9999NmzZtfPahSpUqZuHChT7rDHQ7MvdP8+bNi9zD2xhj8vLynJO9t5/CNm3aZM4+++yg2nziiSeKrF9cwdMYY2bPnm3S09P99vmOO+4weXl5XtePdvCM5FjbuXNngSdyz5/Cc8Tf+NgOnkeOHPE737p3727Wr1/v/D+c4GmMMWPGjPF7TH311VcxO6aC4TmX3njjDScoF/5JSUkx7777rtc6Qg2e+fn55oknnvDZludPuXLlCsw7z3ni7+e8887zeT9sW+eOQHPws88+c+7xXfjH8xjZvn27qV+/vs8+1q9f33z33XcB++W+E563H8/5HcyxaOscFo3gGcx+rly5snn77beDqtPzDoVTp04NqT/PPfec334kJSWZhx56KOAfkdu2bStyhyNvP40aNTJr1qwJqY+RKrHfar/vvvt0zjnnaO7cuVqzZo12797tXIOtZs2a6tChgwYMGKBevXoFrOvxxx9X586d9fLLL2vlypX67bffVLt2bV1++eV6+OGHY/at8mrVqmnevHm64IIL9N1332nw4MFKTEzUTTfdJOnUFwSmTZumRYsW6a233tLXX3+t3bt369ixY0pPT1eTJk3UoUMH9erVSz179oxJHz1VrFhRixcv1pgxYzR16lRt3rxZSUlJqlevnnr16qW7777b71idf/75WrBggWbPnq1ly5Zpx44d+uWXX3T8+HFVqVJFrVu31jXXXKNBgwapTJkyRdZPSEjQF198oVGjRunTTz/Vjz/+qCNHjvj8DOyZZ56ptWvXaurUqZo2bZqysrK0b98+5eXlqWrVqmrWrJm6dOmiPn36OF+OiRc9e/bUDz/8oH/961+aMWOGtmzZohMnTqhGjRo6//zzddttt6lLly5W+hLpsVanTh2tWLFCTz/9tBYuXKidO3d6vYZivElLS9P8+fP1wgsv6L333tMPP/yg5ORkNWvWTAMHDtRtt92mHTt2RNzOPffco5YtW+qFF17QihUrdPToUef888ADD6h+/fo+1430mArVn/70J5199tl64YUXtGjRIv3666/KyMjQRRddpAcffFAtW7aMuA3p1Fvgjz76qPr376/XXntN8+fP15YtW5Sdna20tDTVq1dP5557rnr27Kk+ffoU+KZ+v379VKNGDc2ZM0dZWVnatWuXfvnlF+Xm5qp69epq27atrr/+et1www0+vyQZL+eOXr16ad68eXrxxRedPrg/N+ipXr16Wr16tZ599ll9/PHH+umnn5SamqqGDRvq6quv1t133x3Ut8aHDRumGjVq6PXXX9fatWt14MCBsD+zH0/nMH8mT56szz77TIsWLdL333+vX375Rfv27VNKSoqqVaumVq1a6dJLL9WNN94Y1Bjm5+fr7bfflnTqY3PBvC3v6ZprrtHx48edKy/s3btXZcqUUd26dXXJJZfolltuCeo4a9CggbKysvTee+/pgw8+0OrVq7Vv3z4ZY1SlShWdc845uvrqqzVgwACVK1cupD5GymV8PWuXcu7PxDz22GN6/PHHi7czABCnGjZsqJ9++kkDBw4M+RaUAFBYif1yEQAAAEoWgicAAACsIHgCAADACoInAAAArCB4AgAAwIrT9lvtAAAAsCuuruOZn5+v3bt3q0KFCs7ljgAAABA/jDE6dOiQateu7fN6uL7EVfDcvXu36tWrV9zdAAAAQAA7duwI+SY7cRU8K1SoIOnUhqSnpxdzbwAAAFDYwYMHVa9ePSe3hSKugqf77fX09HSCJwAAQBwL52ORfKsdAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAViQVdwcQPfn5Odqy5WVJUuPGf1FCQnIx9wgAAOD/8IonAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAouIB8DeXl5ysrKkiS1bdtWq1evLrA8MzNTiYmJQa8XTPlTZZLVtOnflJeXpxUrskJcN/QywdThTeH1JIVVj7f6/I1buP0NRyzbCrZum9sbjnD6F8k2ea7rFqgOf+0V1zFke7/a6mMstivUc2qsxfsxCdjAK54AAACwguAJAAAAKwieAAAAsILgCQAAACsIngAAALCC4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsMJljDHF3Qm3gwcPqmLFisrOzlZ6enpxdwfA6eDkEemp2qd+H75bSilXvP0BgDgXSV7jFU8AAABYQfAEAACAFQRPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABYQfAEAACAFUnF3QEUlHP8uF4a2FeSdNdbHyg5NbWYewSUcinlpMezi7sXcYNzEIBY4hVPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABYQfAEAACAFQRPAAAAWEHwBAAAgBUETwAAAFjhMsaY4u6E28GDB1WxYkVlZ2crPT29uLsTXTk50oQ3T/3ef6D0n7cKLh/yJyk52X6/IuG5TcH2P5x1YiWSvsTLdgTTj2iVKQ7x2i/JzvyPdPtjPX7xvH+iqbRsZ2nZDpxSjPszkrzGK54AAACwguAJAAAAKwieAAAAsILgCQAAACsIngAAALCC4AkAAAArCJ4AAACwguAJAAAAK7iAvIeTJ0/qqaeekiQNHz5cKSkpUS2P0DC+pVc09m1JnR+2+l2c41Pc+6a42y/p4m384q0/4ALyAAAAKAEIngAAALCC4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCQAAACsIngAAALCC4AkAAAAruHMRwpKXm6/ln38vSerYq7kSk0re3zBsQ+zqikY74fanNOzXWAhmXMIZu5Iy3iVp20rKmJ4u2B9FceciAAAAxD2CJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKzgAvKWnDx5Uk899ZQkafjw4UpJSSnmHhUU7/0DAADxgQvIAwAAIO4RPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWJBV3B0qDvJwcLZs8zm+ZzH6DdXG9DElSosvldd1OA4YqMTk5qGXRluhyee2fLfEyDqH2zWYd4SjcriS//w+lX962ydZ2xqqd4p5rkTpdxyXe++dPpH2Ph22Phz6URqV1XHnFEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGCFyxhjirsTbgcPHlTFihWVnZ2t9PR0a+3m5hl9mrVXknRlZnUlJXq/gHqw5QDANs5PQGDFeZyUpmM0krzGK54AAACwguAJAAAAKwieAAAAsILgCQAAACsIngAAALCC4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsII7F8VA/sk87X50iSSp9ojzlJCSGNSy4uhPPNftqx1vwm071P7HYnsjqdNz3ZqPdNSeJ5cXKVN7xHmS5Hf8PMsmpCT6HW/Pdjx/97aurz55lve2Ld7GwVe93rbPW19sHW8AoqO0Hb+laXu4cxEAAADiHsETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVnAB+VIqLy9PWVlZkqTMzEwlJpbcC9UCQGkRD+fmeOgDSjYuIA8AAIC4R/AEAACAFQRPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABYQfAEAACAFQRPAAAAWJFU3B0oTvkn87T70SWSpNojzpOkAv9PSEksUiYhJfg7PHiu662Nwmo+0lF7nlzut31/6xdW9//X+fPffZev+UhHJZVP8dnvwm1Wf6C99o5aWeR3z777295gxtCz/cJjUri+QDzX91dXoP3t7fHC+zcSwfbHs0ws2vV83Nd+CrTd3uZCOPvRVx98te+t3XBFYx8X7o+/+SQV3fe+BOpToPH11l7h8pH2wZtgzm/exqdwn3ydH/y1V7hcMHPUX18KC2ZOu8v8/OiSIudmb+Md6nNP4X76O/e5JNX9KEeSZM7O084nvY9nsOeBcMZXCn7Oe9s+T97GP9i54at//vaHrzYDteutHc86fD2PhpI7SgJe8QQAAIAVBE8AAABYQfAEAACAFQRPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABY4TLGmOLuhNvBgwdVsWJFZWdnKz09vbi7AyAO5OXkaNnkcQUe6zRgqBKTk/2W9VXGVzlf6wZbZziiWXcs+xltnn3N7DdYWe9OlBSdfkc6Dv7Wj9UYB6o3lPkaTj/DaT/a22i7Phv70i2Uc5Ekv/+3MR+DEUle4xVPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABYQfAEAACAFQRPAAAAWEHwBAAAgBUETwAAAFjBnYssy8vN1/LPv5ckdezVXIlJp1f2P923P9oYTwCAbdy5CAAAAHGP4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCQAAACsIngAAALCC4AkAAAAruIB8HMnLy1NWVpYkKTMzU4mJicVeVzT7FMs6Yyle+hsv/YgVf9sXzrYXXkdSxOMXz/vAV98C9TmUbfJWNtJ9E8p6wdYZb/vGpmgcK/7mDuMMiQvIAwAAoAQgeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACs4M5FNuSdlL587NTvFzwhJaZ4fyzSOmMlmm2FU5fNbY1ESelnPCvJYxiNvheuQyoZ4+Fr20vy/owGW9sfyXOMZ7lg+hlq+XD6Hqlg6gyl3eKYx3F+7HDnIgAAAMQ9gicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACs4ALyxcHzwrBd/y59NfLU77G8kHycX4w2ZIUvYiwV3a5QLyLsuS981RlM3cH0LVglef8GO0bRnvfxOBbelNSLxQMlWXFdsL6U4QLyAAAAiHsETwAAAFhB8AQAAIAVBE8AAABYQfAEAACAFQRPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAV3LkoBnKOH9dLA/tKku566wMlp6aWiLpttgEAAEom7lwEAACAuEfwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABYQfAEAACAFQRPAAAAWEHwBAAAgBVcQB7F4uTJk3rqqackScOHD1dKSkox9wgAEG9K6nNFSe13sLiAPAAAAOIewRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgxWl756Kc/JOasP1Fn8uH1L9byQnB3WngaO4R/WfnWL9lPOsL1LbnOpKcsv3r3u6zncLL3O0VbsuzXOH6C/8/UBve3FD7Vr23+42w1u9f93alJZWTVHCMfI1doP76W9dbf4Kpz9d2eD7m6/fCc8qzP6HuW2/9DLYOX3PFU+Gx8rdfvQlnLP2Nj7fyhfvvrby/fnhr29+x6W8Mg+mfv+0K1Iav7fB3bPg7f/nqg6/+e7btq25f4x/MsRvK+dZfm/7OmYHmub8+BHOsBjM/vM2zwmWjfc4I1C9vcyucYzGU5zh32UDPncGevwO1Hej4Dnf+eRPMc1Sg4znQvPRc7nlu9nwOjTXuXAQAAIC4R/AEAACAFQRPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABYQfAEAACAFaftBeRtysvN1/LPv5ckdezVXIlJRfN+MGUiKQ8AABANXEAeAAAAcY/gCQAAACsIngAAALCC4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCQAAACsIngAAALCCOxcVs5wTeRp390JJ0tAXuym5TGJc1BXP/YvFdpYU4W57vIxZvPQjGuJlW+KlHwhOvJ2nS+v8Ka3bFS+4cxEAAADiHsETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVnAB+QjlHD+ulwb29brsrrc+UHJqasj1DBs3Ra8OvblAHb6WB9uW5/qFy3pbFslj4bYZzuO+6pMUUnlvYxfqmAfah8G2G+44RGtMi2M+hFImmPGSFNR8CKW/nnWEcoxGaz6GWj7SfeGvbDTmQyy2K1pjEO55KJg+SP7nUSjbGotj3i3S9qJRNlTBnIMDbUuwZSLpc7TmebTGLRxcQB4AAABxj+AJAAAAKwieAAAAsILgCQAAACsIngAAALCC4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsII7F5VQebn5Wv7595Kkjr2aKzGp6N8QwZSJdZ02xGOfQhXuNpSkbffXV2/LPB9z87bMs65A9Xgbo2iMYSz3g2fd7S85Uytn/y+sdsIZm0j6E06/Q9mvoW5rMMvCaSuUtkNloy/Bzgsbx1E0tifc9YOtO9JzT6hzPF7P8dy5CAAAAHGP4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCQAAACsIngAAALCC4AkAAAAruIB8CZefn6MtW16WJDVu/BclJCQXc4/s8zcGNsfndNkXJXU7I+134fUlFanPs0zDhrdp27bXirTnqx+R9M/burFoJxqi1b6N7Qtmf9pW3PsvVkLdrmDLh3JsRKOPsdqOaK8bKS4gDwAAgLhH8AQAAIAVBE8AAABYQfAEAACAFQRPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABYcVrfuSgn/6QmbH9RkjSk/t1KTkiJStlo1xGNtmNRV6B6g2krVv0Jta+x7pNnnf3r3q7/7BwbVP3hjKEkv//31V6o2x3uOEbzuAu1jUBj5W/9QI9526/Bbmsszg3BbGuk4+evvWCP93DOHZH02y3U/oe7ryOdA5H2K5Q+BNOfUISyb2MxtyLdxlg/9xbH81+0cOciAAAAxD2CJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKw4rS8gH6y8vKNasLCVJKl7t3VKTEyzVlco5aNd1l+ZWG5HJOsEs340t6ukisX+8ywTbL2RtBGreeevjmD7dn6X5fp6UUev5SOZf7Ha/mgcE+GWk1RkvVjMhWj2OVrn4Wj0LVp1hXO+jGb7wZYPtz+xOLcX1/NFPDxPcQF5AAAAxD2CJwAAAKwgeAIAAMAKgicAAACsIHgCAADAioiC54UXXqhRo0YFLDd69GhdeOGFkTQFAACAEi4pkpUXLFighg0bBiy3adMmLVy4MJKmAAAAUMJZeas9JydHCQm8qw8AAHA6i+gC8gkJCRo0aJAmTJjgt1y7du20a9cu7dmzx2+5eL2APIKXl5uv5Z9/L0nq2Ku5EpMSvD4WT+K9f8WhJI1JtPtakrYdAIpDJHkt5LfahwwZUuD/ixYtKvKYW25urjZs2KC1a9fqqquuCrUpAAAAlCIhB89JkyY5v7tcLv3www/64Ycf/K5Tu3ZtjRw5MuTOAQAAoPQIOXhOnDhRkmSM0ZAhQ9SlSxfdcsstXsumpKSobt266tSpk5KTkyPrKQAAAEq0kIPnwIEDnd8ff/xxderUqcBjAAAAgDcRXU5p27ZtUeoGAAAASju+rgkAAAArQnrFc/LkyZKkPn36qEKFCs7/gzVgwICQygMAAKD0CCl4Dho0SC6XS506dVKFChWc/weL4AkAAHD6Cil4DhgwQC6XSxUrVizwfwAAACCQiO5cFG3cuQjemNx8nZjznSSpzMVnyRVnd5KJZv9CrctX+XgfMwCRKWnHeCT9jdZ5EdETSV5jbwAAAMAKgicAAACsiOg6nm4nTpzQypUrtWvXLh0/ftxnOb5cBAAAcPqKOHi+9NJLevzxx5WdnR2wLMETAADg9BVR8PzPf/6jv/71r5Kk5s2bq0WLFnwpCAAAAF5FFDz/9a9/yeVyaeLEibyaCQAAAL8i+nLRxo0b1alTJ0InAAAAAoooeKampqphw4ZR6goAAABKs4guIN+zZ0/9/vvvWrFiRVQ6wwXkcTo6efKknnrqKUnS8OHDlZKSUsw9ir7i3EbPtu+77z6NHj26WPphg+e2SvGzvYX7VRrH3p/T4RhHQaV9nxfbBeQffvhhrVq1SjNnzoykGgAAAJwGIvpyUZMmTfTII4+oT58+uuuuu3TFFVeofv36Skjwnmfr168fSXMAAAAowSIKng0bNpTL5ZIxRs8//7yef/55n2VdLpdyc3MjaQ4AAAAlWETBs379+nK5XNHqCwAAAEqxiILntm3botQNAAAAlHYRfbkIAAAACFZEr3hu3749pPJ8uQgAAOD0FZUvFwWDLxcBAACc3mLy5aL8/Hz9/PPPTtBs0KBBJM0AAACgFIjozkX+5ObmatasWfrLX/6iCy64QBMmTAi4js07Fx09mauWj86WJK185CK1f3KeJGnDiEuUlhJRHo+4Xc8y3voT6fJobsOGEZdIUtDt+epbqH321wfPcQ1mjAuX8azLLdrj6Nm+t3Zj2Z6vcQin3VDmQqznpQ2+5k2k8yzW+z+Y7SnufRLNvgR7fiiubY7WeTDW/bHRnltp3l5/bUvBzc14OlalyPJazHqelJSkK664QvXq1VOHDh3UqVMnDR06NFbNAQAAIM7F/FvtrVu3Vvv27fXaa6/FuikAAADEMSuXU6pTp47+97//2WgKAAAAcSrmwdMYo2+//VbJycmxbgoAAABxLKbB89dff9WwYcO0efNmderUKZZNAQAAIM5F9OWixo0b+1x26NAhHThwQMYYpaSk6IknnoikKQAAAJRwMb1Xe0pKirp27aonn3xSHTp0iKQpAAAAlHARBc+tW7f6XJaSkqKMjAwlJZW8a/UBAAAg+mJ2Aflw2LyAfKSO5OWpyVfrJEk/dm2lcomJXpet+8NZarX4O6/lAtUTrT6EWm84Yt2e7e2JRh+iXT6Y+sIZp1DWCbZsNPdXLPd9rI6/WK0frTkQ6bkjlHNcJNscyzEujv0Xy3piVWcszg+hlC0p55JYiOf+RpLXrFxOCQAAACB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKw4re9clHMiT+PuXihJGvpiNyWXSfT6WCzbdRs8qosmPrAo6L6E28/C60nyW4+3vnqWK7zcV9892/G2rfEi1vvf9vwKto1o9MvGtoUqHvt0Oomn8Q90LvNXPtZ9j1VboZ7vo9WWm7/nLV9lImk3UF3xNB/dbO6jaOLORQAAAIh7BE8AAABYQfAEAACAFQRPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABYcVpfQF6SjuYcVcd3OkqSlt+4XJIK/D8tOS3gOu4yvh5H/GKfxZ/9x/ar+9TukqSZ18zUZdMvk8T+KUk4roDSjQvIAwAAIO4RPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWnPZ3LgIAAKVffn6Otmx5WZLUuPFflJCQXMw9Krm4cxEAAADiHsETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAViQVdweKW05+vqb8uEeSdEOj6npv615J0s1Naio5wXsu91zHW7lAyyPpYzTqi0XdodbjWd4tkjGPRv8i2YZo7xdER+F9JCnu9lnhYyGUc4qtOWijHdvnVW/1BvscEEkbgeot6ecVG+MZroSEZDVt+jevy2weY8U11+NF6doaAAAAxC2CJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKlzHGFHcn3A4ePKiKFSsqOztb6enpxd2dkOXkn9SE7S9KkobUv1vJCSl+l0vyW744+hhuXYVFUre3Pvpqq3/d2/WfnWPDbtOz3kjr8ld3MPMh1OW+yngbq2jNr2jOn8L1eY6/m7dtivbc8rbMrX/d25WWVC6stoJtN1aKo81wBbtffM3xQNsX63NvqP0pqYKdU6HOvXicq4HmXSzOqcHUGy9jFUle4xVPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABYQfAEAACAFQRPAAAAWEHwBAAAgBVcQD5G8nJytGzyOElSpwFDlZicbHV9oKRi7pdsvvYf+7Vk8dxf0v/tM/YjJC4gDwAAgBKA4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCQAAACsIngAAALCC4AkAAAArCJ4AAACwgjsXRSg3z+jTrL2SpCszqysp0RVU2cvaZmjm6n1Ffg+ljkBlY7Edx0/mF+h3aorvv1381Rmr7YB/oY57rPdTtOpnPoWG8QLCx/HDnYsAAABQAhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAUXkAeAkiLvpPTlY6d+v+AJKTElPupC6IIZ/+LcR5G2zfwq1biAPAAAAOIewRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBXcuipWTR6Snap/6ffhuKaVc8dRhsz3b/QWCFWhuMndPP+Huc+aKd6V9XEr79oWIOxcBAAAg7hE8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAUXkP//8vLylJWVJUnKzMxUYmKi18dstl+alPbtQ3REOk98rV+c88+zbbe2bdtq9erVxd6fzMxMSYrq2AQ71vFwToh1H0J9XolFf0KpMx72SbQE2pZgzhXhHqelaRx94QLyAAAAiHsETwAAAFhB8AQAAIAVBE8AAABYQfAEAACAFQRPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAV3LkoQkdzjqrjOx0lSctvXK605LRi7lFgJaHPJaGPAACcjrhzEQAAAOIewRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWcAH5UiQvL09ZWVmSpMzMTCUmJoZVJpyykYqkrVDXDbetWIyHrb7DHvYRinsOeGvfX5+C7a+N7SrusQtWNJ9HSso2e+IC8gAAAIh7BE8AAABYQfAEAACAFQRPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABYQfAEAACAFdy5CDF18uRJPfXUU5Kk4cOHKyUlJejlhZdJ8lsXSpdAcwcIh+e8cvM3v5iHKK45EM9zjzsXAQAAIO4RPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFF5BHVHle8Pa+++7T6NGjJf3fxW99XRA3kgvNR9KfeFecFxAO9+L+nuPsb8y91e/t4t6BRDIuwY5vKPsh1vsslP0Sr3M82POAVPSmEb7mSOHyvh7zXBbsfvTXTjDjHGiuh/pYqG1Fo6y/8jbnXTTHIx6fH+KxT95wAXkAAADEPYInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwIrT+s5FOSfyNO7uhZKkoS92U3KZxKiWR+x57hMpdvsllH0fqKzn8sGjumjiA4tC7jtzMT7EYj9wXrKv8BhKKnBecT9uY2wLn9Ni2bavucOcip1Qnh/ieey5cxEAAADiHsETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVpzWF5CP2Mkj0lO1T/0+fLeUUq54+wMApQXnVyBucQF5AAAAxD2CJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMCKpOLuQImWUk56PDv27cTqDh6B6vW23POx+36QRjeNfr8iFc3xCrWuYMvH8q4s4ezXWPcxGnWFUoevsuH2I1pjGkkb4a7jWcbT8N2n/vV3jAdbJtD4BnveKLz+49mh9z/QuIQ6ZsGc5wKdK/31NZR+xUJx3yEq2PYP7/u//eBNoP3va596Wz/UvgVTPthjRgq+Dn9l4xiveAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACscBljTHF3wu3gwYOqWLGisrOzlZ6eXtzdCU/eSenLx079fsETUmJK9OuUfLfhrX1/63f9u/TVyOj2F8DpKxbnwEjFY5+iobi3q7jbR7GJJK/xiicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArODORZLy8o5qwcJWkqTu3dZJUoH/JyamFSmTmJgWdJ3nd1murxd1DLhuqG1EQzDbbou/7S+OsQkkHvtkU6TbH8r6gcpGe18U174tSdtRmuZ/KPPLn3CfP0rTWMaKv30Q7D7zLBeLfRKozWiIl7nCnYsAAAAQ9wieAAAAsILgCQAAACsIngAAALCC4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsIILyJdEeSelLx879fsFT0iJKcXbn2CUxD6Hw9Z2+mqn8ONScP0J1G/P5ZLU9e/SVyMD1xsLofQ1mn0Lpl7b8zza7cWy/+GOX7h9imZd4bQVSTmbfbJdVzy0E+9KwDhwAXkAAADEPYInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAruXCQpLy9PWVlZkqTMzEwlJiYGVbZt27ZavXp1kd896/AsH0z9vtryFEodwdTtr75QxiaSdRA73vaHr30UaN/5W+5tvobSnq9jKND2SAq6T8UxHyMZ03Dqi2VfY6242g80D4M9hsI9riLtc6jn8GDWDfZY91ZnsMdypG1GW3HP/5KEOxcBAAAg7hE8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAUXkI+RvJwcLZs8TpLUacBQJSYnx2QdxA/2HyLFHIodG2NbuA1J1vZnaZ47pXnbSiouIA8AAIC4R/AEAACAFQRPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABYQfAEAACAFQRPAAAAWMGdiyJw8uRJPfXUU5Kk4cOHKyUlJeb1BtNm4TKSwq4v0r4EW1c0ypcUsdguzzrvu+8+jR49OmD94fTD2zqej3njrVy4cylQ+57rhvp4MCI5XkIVrf0TTn3xduxFq++xHoNw6/c8Zt3ibdzd7rvvPqWkpAR1zHurJ5TtCne9w4cPFxnPUOsIVSTnsFi1FUvcuQgAAABxj+AJAAAAKwieAAAAsILgCQAAACsIngAAALCC4AkAAAArCJ4AAACwguAJAAAAK7iAfAl29GSuWj46W5K0YcQlSktJinkbkmLeZjD9SEtJsrL9JZHnuKx85CK1f3KeJHtzhP2A4hTsfLQ9b321F6gfkfYzVtvJcR87hcf26Mlc5zzuqTifk7mAPAAAAOIewRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBXcuQszl5eRo2eRxkqROA4YqMTm5mHsEAMXL9nkx1PY8y0tSZr/BSklLK/Z+IT5w5yIAAADEPYInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArOAC8gBQguUcP66XBvaVJN311gdKTk0t5h6hOMXjfIjHPiEyXEAeAAAAcY/gCQAAACsIngAAALCC4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCQAAACsIngAAALCCOxcBAAAgaNy5CAAAAHGP4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCQAAACsIngAAALCC4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCQAAACsIngAAALCC4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCQAAACsIngAAALCC4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCQAAACsIngAAALCC4AkAAAArkoq7A56MMZKkgwcPFnNPAAAA4I07p7lzWyjiKngeOnRIklSvXr1i7gkAAAD8OXTokCpWrBjSOi4TTlyNkfz8fO3evVsVKlSQy+Wy3v7BgwdVr1497dixQ+np6dbbj2eMjXeMi3eMi2+MjXeMi2+MjXeMi2+xHhtjjA4dOqTatWsrISG0T23G1SueCQkJqlu3bnF3Q+np6UxiHxgb7xgX7xgX3xgb7xgX3xgb7xgX32I5NqG+0unGl4sAAABgBcETAAAAVhA8PZQpU0aPPfaYypQpU9xdiTuMjXeMi3eMi2+MjXeMi2+MjXeMi2/xPDZx9eUiAAAAlF684gkAAAArCJ4AAACwguAJAAAAKwieAAAAsKJEBM+vvvpKV155pWrXri2Xy6WPPvqowPJBgwbJ5XIV+Ln00ksLlPnf//6n3r17q1q1akpPT1eXLl305ZdfFihTuA6Xy6X33nvPZ78WLFjgdR2Xy6WsrCxJ0rZt27wuX7ZsWYkZF0maNGmSzjnnHKWmpqp69eq64447/Pbt+PHjuuOOO1S1alWVL19e1157rX755ZcCZbZv365evXopLS1N1atX1/3336/c3NzwBqOQeB2bAwcO6C9/+YuaNWumsmXLqn79+rrrrruUnZ1doFyoczFY8TouktS9e/cibd92220FypyOc8bXOcTlcun99993ypXkOTNp0iSf27h3716ffTtw4IBuuukmpaenq1KlSrrlllt0+PDhAmW+/fZbnX/++UpNTVW9evU0atSoiMfELV7HZtu2bbrlllvUqFEjlS1bVk2aNNFjjz2mkydPFihTkp+bwp0zDRs2LFL+mWeeKVDmdJwzNvNMXN25yJcjR46odevWGjJkiK655hqvZS699FJNnDjR+X/hSwhcccUVOuOMMzR//nyVLVtW//rXv3TFFVfoxx9/VM2aNZ1yEydOLLCTK1Wq5LNf5513nn7++ecCj/3jH//QvHnz1L59+wKPz507V2eddZbz/6pVq/re4CDZGpcxY8bo+eef13PPPaeOHTvqyJEj2rZtm9++3XPPPfr888/1/vvvq2LFirrzzjt1zTXXaPHixZKkvLw89erVSzVr1tSSJUv0888/a8CAAUpOTtZTTz0VwaicEq9js3v3bu3evVujR49Wy5Yt9dNPP+m2227T7t279cEHHxQoG8pcDFa8jovbrbfeqhEjRjj/T0tLc34/XedMvXr1ipxnxo0bp+eee06XXXZZgcdL6py5/vrrizy5Dho0SMePH1f16tV99u2mm27Szz//rDlz5ignJ0eDBw/W0KFD9c4770g6ddvAnj17qkePHnrttde0bt06DRkyRJUqVdLQoUPDHRJHvI7N999/r/z8fL3++utq2rSp1q9fr1tvvVVHjhzR6NGjC5Qtqc9N4c4ZSRoxYoRuvfVW5/8VKlRwfj9d54zVPGNKGEnmww8/LPDYwIEDTe/evX2us2/fPiPJfPXVV85jBw8eNJLMnDlz/NYdipMnT5qMjAwzYsQI57GtW7caSWbNmjVh1xuMWI3LgQMHTNmyZc3cuXOD7svvv/9ukpOTzfvvv+88tnHjRiPJLF261BhjzIwZM0xCQoLZs2ePU+bVV1816enp5sSJE0G3FYx4Ghtvpk6dalJSUkxOTo7fPkdbvI1Lt27dzN133+1zOXPm/7Rp08YMGTIkYJ+jLZbnX0979+41ycnJZvLkyT7r3bBhg5FksrKynMdmzpxpXC6X2bVrlzHGmLFjx5rKlSsXmB8PPvigadasmb/NDEs8jY03o0aNMo0aNXL+X9KfmwoLdlwaNGhgXnjhBZ/LmTOnxDLPlIi32oOxYMECVa9eXc2aNdOwYcO0f/9+Z1nVqlXVrFkzTZ48WUeOHFFubq5ef/11Va9eXe3atStQzx133KFq1aqpQ4cOmjBhgkwIlzn95JNPtH//fg0ePLjIsquuukrVq1dXly5d9Mknn4S/oSGKdFzmzJmj/Px87dq1Sy1atFDdunX1xz/+UTt27PDZ5qpVq5STk6MePXo4jzVv3lz169fX0qVLJUlLly5Vq1atVKNGDafMJZdcooMHD+q7776L9jB4VRxj4012drbS09OVlFTwDYhI5mIkinNc3n77bVWrVk1nn322Hn74YR09etRZxpw5ZdWqVVq7dq1uueWWIstK6pwpbPLkyUpLS1Pfvn19trl06VJVqlSpwKsxPXr0UEJCgpYvX+6U6dq1q1JSUpwyl1xyiTZt2qTffvst0s0OSnGMjTfZ2dmqUqVKkcdL6nNTYaGMyzPPPKOqVavq3HPP1XPPPVfg4zrMmVNimmciiq3FQF7+Qnj33XfNxx9/bL799lvz4YcfmhYtWpjMzEyTm5vrlNmxY4dp166dcblcJjEx0dSqVcusXr26QD0jRowwixYtMqtXrzbPPPOMKVOmjHnxxReD7ttll11mLrvssgKP7du3zzz//PNm2bJlZsWKFebBBx80LpfLfPzxx6FvvB+xGpenn37aJCcnm2bNmplZs2aZpUuXmosuusg0a9bM56tMb7/9tklJSSnyeGZmpnnggQeMMcbceuutpmfPngWWHzlyxEgyM2bMCHcYvIqnsSls3759pn79+mb48OEFHo90LgYj3sbl9ddfN7NmzTLffvutmTJliqlTp47p06ePs5w5c8qwYcNMixYtijxekudMYS1atDDDhg3z25eRI0eaM888s8jjGRkZZuzYscYYYy6++GIzdOjQAsu/++47I8ls2LAh0OaGJJ7GprDNmzeb9PR0M27cOOexkv7cVFiw4/L888+bL7/80nzzzTfm1VdfNZUqVTL33HOPs5w5c0os80ypCJ6F/fjjj0aS83ZWfn6+ueqqq8xll11mFi1aZFatWmWGDRtm6tSpY3bv3u2znn/84x+mbt26QfVrx44dJiEhwXzwwQcBy/bv39906dIlqHqDFatxGTlypJFkZs+e7dSzd+9ek5CQYGbNmuW1nZIQPAuzNTaesrOzTYcOHcyll15qTp486bdsKHMxWPE6Lm7z5s0zkswPP/xgjGHOGGPM0aNHTcWKFc3o0aMDli1Jc8bTkiVLjCSzcuVKv+2UhOBZmK2x8bRz507TpEkTc8sttwQsW5KemzyFMy5u48ePN0lJSeb48ePGGOaMMbHPM6UyeBpjTLVq1cxrr71mjDFm7ty5JiEhwWRnZxco07RpU/P000/7rOOzzz4zkpwJ6c+IESNMRkZGwABhjDGvvPKKqVmzZsByoYjVuEyYMMFIMjt27ChQpnr16gX+evbkDgy//fZbgcfr169vxowZY4w59aTYunXrAsu3bNliJPn9yy0c8TQ2bgcPHjSdO3c2F110kTl27FjAvoUyF4MVj+Pi6fDhw0aSE8hO9zljjDGTJ082ycnJZu/evQHLlqQ542nIkCGmTZs2AdsYP368qVSpUoHHcnJyTGJiopk+fbox5tSTYuHPy82fP99IMgcOHAjYRijiaWzcdu3aZc444wzTv39/k5eXF7B8SXpu8hTquHhav369kWS+//57YwxzxpjY55lS8xlPTzt37tT+/ftVq1YtSXI+J5aQUHBzExISlJ+f77OetWvXqnLlykW+UVaYMUYTJ050vmEbyNq1a52+2RTOuPzhD3+QJG3atMlZfuDAAf36669q0KCB13batWun5ORkzZs3z3ls06ZN2r59uzp37ixJ6ty5s9atW1fg0g5z5sxRenq6WrZsGemmhszW2Ej/963JlJQUffLJJ0pNTQ3Yv2DnYrTZHJfC1q5dK0lO26fznHEbP368rrrqKmVkZAQsW5LmjNvhw4c1depUr59fLaxz5876/ffftWrVKuex+fPnKz8/Xx07dnTKfPXVV8rJyXHKzJkzR82aNVPlypXD28AI2BobSdq1a5e6d++udu3aaeLEiUXa8KYkPTe5hTouha1du1YJCQnOt71P5zkjWcozIcXUYnLo0CGzZs0as2bNGiPJjBkzxqxZs8b89NNP5tChQ+a+++4zS5cuNVu3bjVz5841bdu2NWeccYbzl/6+fftM1apVzTXXXGPWrl1rNm3aZO677z6TnJxs1q5da4wx5pNPPjFvvPGGWbdundm8ebMZO3asSUtLM48++qjTj+XLl5tmzZqZnTt3Fujf3LlzjSSzcePGIn2fNGmSeeedd8zGjRvNxo0bzciRI01CQoKZMGFCiRgXY4zp3bu3Oeuss8zixYvNunXrzBVXXGFatmzp/DW0c+dO06xZM7N8+XJnndtuu83Ur1/fzJ8/36xcudJ07tzZdO7c2Vmem5trzj77bNOzZ0+zdu1aM2vWLJORkWEefvjhiMclnscmOzvbdOzY0bRq1cr88MMP5ueff3Z+3J/hCWYulrZx+eGHH8yIESPMypUrzdatW83HH39sGjdubLp27erUebrOGbfNmzcbl8tlZs6cWaTvpWHOGGPMm2++aVJTU4u8W2KM9/PvpZdeas4991yzfPlys2jRInPGGWeYfv36Oct///13U6NGDdO/f3+zfv16895775m0tDTz+uuvRzwu8Tw2O3fuNE2bNjUXXXSR2blzZ4HzjFtpeG4KdVyWLFliXnjhBbN27Vrz448/milTppiMjAwzYMAAZ53Tdc642cgzJSJ4fvnll0ZSkZ+BAweao0ePmp49e5qMjAyTnJxsGjRoYG699dYCl1wxxpisrCzTs2dPU6VKFVOhQgXTqVOnAp8LmzlzpmnTpo0pX768KVeunGndurV57bXXCrw94e7H1q1bC9Tdr18/c95553nt+6RJk0yLFi1MWlqaSU9PNx06dChwmaF4HxdjToWlIUOGmEqVKpkqVaqYPn36mO3btzvL3ZdY+PLLL53Hjh07Zm6//XZTuXJlk5aWZvr06VPgpGeMMdu2bTOXXXaZKVu2rKlWrZq59957C1xSqDSOja9+ec6rYOZiaRuX7du3m65du5oqVaqYMmXKmKZNm5r777+/yNtJp+OccXv44YdNvXr1vM6D0jBnjDGmc+fO5sYbb/TbD8/z7/79+02/fv1M+fLlTXp6uhk8eLA5dOhQgfW++eYb06VLF1OmTBlTp04d88wzz0Q8JoX7FG9jM3HiRJ/nGbfS8NwU6risWrXKdOzY0VSsWNGkpqaaFi1amKeeeqrIx1FOxznjZiPPuIyxdL0NAAAAnNZK5Wc8AQAAEH8IngAAALCC4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCQAAACsIngAAALCC4Amg1Nq2bZtcLpcaNmxY3F2JWH5+vtq3b6+aNWvqyJEjYdczZcoUuVwujR07Noq9A4DgEDwBlFgNGzaUy+XStm3birsrMTd+/HitWrVK//jHP1SuXLmw67nxxhvVqlUr/eMf/9CBAwei2EMACIzgCaDUqlOnjjZu3Kh58+YVd1cicuzYMf39739X7dq1NXTo0IjqSkhI0GOPPaYDBw7oySefjFIPASA4BE8ApVZycrKaN2+uJk2aFHdXIjJlyhTt27dPAwYMUHJycsT1XXXVVcrIyND48eN1+PDhKPQQAIJD8ARQ4kyaNEkul0s//fSTJKlRo0ZyuVzOz4IFCyT5/4ynu6x0Kth16NBB5cuXV0ZGhvr166ft27dLkowxeuWVV9SmTRuVK1dO1apV06BBg7R3716f/fvf//6nP//5z2rSpIlSU1NVsWJFde3aVVOmTAlre1955RVJ0qBBg7wu37x5s4YMGaJGjRqpTJkyKl++vBo0aKBevXpp4sSJRconJyfrxhtv1MGDB/Wf//wnrD4BQDhcxhhT3J0AgFAsWrRIb775pj744AMdOXJE1157rcqXL+8sf+ihh9S8eXNt27ZNjRo1UoMGDYp8DtQdOh966CGNHj1aXbt2VZUqVbRixQpt375d9erV0zfffKPbbrtNn3zyibp3766yZctq8eLF2rt3r8455xxlZWUpJSWlQL3vv/++BgwYoOPHj6t58+Zq0aKFsrOztXz5ch05ckSDBw/WhAkTgt7WrVu3qnHjxqpbt6527NhRZPn69ev1hz/8QQcPHlSzZs101llnKTExUTt37tS6devUpEkTrV27tsh6n3/+ua644gr17NlTs2fPDro/ABARAwAlVIMGDYwks3XrVq/Lt27daiSZBg0aFFkmyUgyVatWNWvXrnUeP3r0qOnSpYuRZFq1amWaNGlitm3b5izft2+fadq0qZFkpkyZUqDOb7/91pQpU8akpqaaadOmFVi2bds206pVKyPJvPXWW0Fv45tvvmkkmeuuu87r8sGDBxtJ5sknnyyy7OjRo2bhwoVe19u/f79xuVwmLS3NnDhxIuj+AEAkeKsdwGltxIgRat26tfP/smXL6m9/+5skad26dXrppZfUoEEDZ3m1atU0bNgwSSrypaWRI0fqxIkTevLJJ3XNNdcUWNagQQONHz9ekvTSSy8F3b81a9ZIklq0aOF1+S+//CJJuvzyy4ssK1u2rLp27ep1vSpVqqhmzZo6evSovv/++6D7AwCRIHgCOK15C2xnnHGGJCkpKUk9e/b0uXz37t3OY/n5+Zo5c6Yk6frrr/faVvv27VW+fHmtWbNGx48fD6p/7mBZtWpVr8s7dOggSRo2bJhmz54ddL2edbrbAIBYI3gCOK3Vr1+/yGPuz4vWqlVLSUlJRZZXqFBBkgqEvP379+vgwYOSpHr16hX4spP7JyEhQYcPH1Z+fr72798fVP+ys7MlSenp6V6X33///erRo4eWL1+uSy+9VOnp6crMzNS9996rrKwsv3W76/ztt9+C6gsARKroGRUATiMJCb7//va3rLD8/Hzn94EDBwYsX6ZMmaDqrVSpkiQ5obawtLQ0zZkzR1lZWZo1a5aWLFmiJUuWaOXKlRozZoxuv/12/fvf//a6rjvUVq5cOai+AECkCJ4AEAXVqlVT2bJldezYMY0ePVrVqlWLSr3Vq1eXpICvkGZmZiozM1OSlJubq48++kgDBgzQ2LFj1bdvX11wwQVF1nHXWaNGjaj0FQAC4a12ACWW+1JGubm5xdwTKTExURdffLEkaerUqVGrt23btpKkDRs2BL1OUlKS+vbtq0suuUSSvF5Oaf/+/dqzZ4/S0tJ8fnEJAKKN4AmgxKpbt64k6bvvvivmnpzy2GOPKSUlRffff7/eeuutAm+/u61fv17Tp08Puk73K5VLly71unzs2LHatGlTkcf37NmjlStXSlKBb+W7LVmyRJLUpUuXqNwNCQCCQfAEUGJde+21kqSbb75Z1157rf70pz/pT3/6k9cgZkPbtm2duxMNGjRIDRo00CWXXKKbb75Zl19+uerVq6dWrVqF9Ipoo0aNdM4552jXrl3auHFjkeXjxo1T8+bN1bhxY1111VW6+eabdckll6hx48bauXOnLrzwQl111VVF1ps7d64k6eqrrw5vYwEgDHzGE0CJNWzYMB06dEhTpkzRjBkznG+Z33zzzWrWrFmx9Om6665TZmamXnrpJc2ZM0eLFy9WXl6eatSooaZNm+rOO+9U3759Q6rzzjvv1NChQzVp0iQ9++yzBZaNHDlSn3/+uZYtW6Zly5YpOztb1atXV8eOHTV48GD169evyDfzc3Jy9M477yg9PV39+/ePeJsBIFjcMhMA4tzRo0fVsGFDJSUladu2bUVu0xmqadOmqW/fvrrnnns0ZsyYKPUSAALjrXYAiHNpaWkaOXKkfv75Z40bNy6iuvLz8/XEE0+oSpUqeuSRR6LUQwAIDq94AkAJkJ+frw4dOmjnzp368ccfVa5cubDqmTJlivr3769///vfuv3226PcSwDwj+AJAAAAK3irHQAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABW/D9qjoNWER2NGQAAAABJRU5ErkJggg==\n", + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAp4AAALLCAYAAABQNYLXAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8rg+JYAAAACXBIWXMAAA9hAAAPYQGoP6dpAABhOElEQVR4nO3dd3wVVeL///dNIwQINVTpIkURpIMIKIgFFVFcxUJzRVFX17X7cS2sWBBxLWtBKbJYFgULSpEiKD2UKCgiUqSJIGjokHJ+f/C7871Jbi8nN+H1fDzyeCR3zpxz5syZue/cMuMyxhgBAAAAMZZQ3B0AAADAqYHgCQAAACsIngAAALCC4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCQAAACsIngAAALCC4BmBBQsWyOVyyeVyacGCBUWWDx48WC6XSw0aNLDeN8Svbdu26dZbb1Xjxo2VmprqzKFPPvmkuLtW7Nxj8cQTTxR3V6LiiSeecLYJKC0mTpzozOutW7cWd3dQwhA8AYu2bdumtm3bauzYsdq8ebOOHz9e3F0CgFPW8ePH9fHHH+vhhx9Wr169dMYZZ6hKlSpKTk5W1apV1aVLFz322GPasWOH33oaNGjghPFgf/yF9u+++07Dhg3TGWecoXLlyqlChQpq0aKF7r//fv3yyy9Bb9+sWbN03XXXqVGjRkpLS1Nqaqrq1q2rvn376n//+5/y8/ODritaCJ4oMUrDK8hPPfWUfv/9dyUlJem5557T0qVLtXbtWq1du1Y9e/Ys7u7FhPuEPHjw4OLuClBibN261QkoEydOjHl7gd7BK622b9+uq666Ss8++6zmzZunjRs36o8//lBubq7279+vpUuX6l//+peaNWumd955J2rtVqxYUTVr1vS67PHHH1fr1q311ltvaePGjTpy5IgOHTqk9evXa/To0WrZsqWmTp3qt/7jx4+rf//+uuSSS/S///1PW7Zs0dGjR3X8+HHt2LFDn332ma677jr16NFDf/75Z9S2KxhJVlsrZXr06CFjTHF3AyXI3LlzJUlXXnmlHnjggWLuTfzheALi3+DBg0vVP5LVq1fX+eefr/bt26t+/fqqVauWkpOTtXPnTn3xxRd69913dfjwYQ0ZMkQZGRm69NJLi9Tx5Zdf6sSJE37bmTt3ru655x5J0l/+8helpqYWKfPss89qxIgRkqRatWrp/vvvV5cuXSRJS5Ys0ahRo7R7925df/31mjdvnrp27eq1rbvuussJp9WrV9cDDzygNm3aKDk5WWvXrtVzzz2nX375Rd98842uu+46zZo1K/gBixDBE7Bo586dkqQzzjijmHsCAGjUqJF2797t83PY/fr107Bhw9S1a1fl5OTo0Ucf9Ro8gzmn/+tf/3J+HzhwYJHlO3bscD7fXrt2bWVmZqp27drO8o4dO+ovf/mLOnTooF27dumOO+7QmjVrlJBQ8M3r3377TW+//bYkqXLlylq1apVOO+00Z3nXrl11ww03qFWrVtq6datmz56tlStXql27dgG3IRp4qx2wyP0fcXJycjH3BACQkJAQ8Mt/HTp00AUXXCBJWrNmjQ4dOhRyO9nZ2frss88knQy73l6p/OCDD5zP/T/55JMFQqdbnTp19OSTT0o6+TnQGTNmFCmzfPly57ObQ4YMKRA63dLT051XXyVp6dKlIW9TuEp88Ny1a5ceeughtWnTRhUrVlRycrJq1Kihli1basCAAZo4caIOHDhQZL3C356dO3eurrjiCtWqVUupqalq1KiR7rzzTucVKm+i8ZmYOXPmqHz58nK5XGrWrJm2b99epMwnn3yia665RvXq1VNqaqoqVaqkdu3a6cknn9Qff/wRVrtuPXr0kMvlUo8ePSRJGzdu1J133qkmTZooLS2tyAegf/31V7322mvq37+/mjRponLlyqlMmTKqU6dO0B9WPnbsmF5++WX16NFDGRkZSk5OVpUqVdS0aVNdcsklGjNmTIE23d8Mdn++5pdffvH6QW1fbb366qvq2bOnatasqZSUFFWvXl29evXSuHHjlJub67OfhT+buGrVKg0ePFgNGzZUmTJlgv6msuc3QN2efPLJAn339rbV3r179eijj+qcc85RpUqVlJqaqgYNGuimm27SokWL/LYZrb57CvVYc88t9wfh33nnnSL7zD3v3Px9q73wN2lPnDihMWPGqF27dqpYsaKqVKmiHj166Isvviiw3sGDBzVq1Cidc845Sk9PV6VKlXThhRdq3rx5Prc12G/tRvo5vGC/xV/4OC0s1GMqFIXnUmZmpgYMGKC6des6X1QYMmSIfvzxR591FD5X5ufna/z48Tr//PNVo0YNJSQkeD0GVq9erdtuu01NmzZV+fLlVa5cOTVt2lTDhw/XTz/95Lfff/75p0aOHKnOnTurcuXKSk5OVkZGhlq0aKF+/frp9ddf12+//eZz/WieOzZs2KBbbrlFDRo0UJkyZVSjRg3169dPy5Yt87q+y+VSw4YNnb+HDBlS5NgpPGc2b96sF154QZdffrkaNGigsmXLqmzZsqpfv76uvfZan2+luufw+eef7zx2/vnnF2nPc34He3xE8xwW6hhGW4UKFZzfw/lS6JQpU3Ts2DFJ3l/tlKSVK1c6v19yySU+67r44oud3z/66KMiyz3f8m/UqJHPeho3bux1nZgzJdjXX39t0tPTjSS/P9OnTy+yrnvZ448/bp544gmf61asWNF8/fXXXtv/6quvnHJfffVVkeWDBg0ykkz9+vW9rv/hhx+alJQUI8m0adPG7Nmzp8Dy/fv3mwsuuMDvtlWvXt0sXbo05LFz6969u5Fkunfvbj755BNTrly5Im1s2bLFGGNMbm6uSUhICDjeF154oTl48KDX9nbt2mVatGgRsI57773XWefxxx8PWN7bVM7KyjL169f3u0779u3N7t27vfbVve6gQYPM66+/bpKSkgK26c2ECRMC9n3QoEEF1pk9e3bAuX3HHXeYvLy8mPbdLZxjzT23/P107969QDuex6W/cfz2229Nx44dfdY7ZswYY4wxv/zyiznzzDO9lnG5XGby5Mlet9ezLff892bLli1OuQkTJhRZ7jl3vfG3vZ48j9PCwjmmQuE5l8aNG+d1LkkyZcqUMVOmTPFah+e5cubMmaZXr15+j4G8vDxzzz33GJfL5XN7kpKSzJtvvum1vR9++MHUrl074Ji88sorXteP5rlj2rRpJi0tzWsdiYmJ5oMPPiiyfjDnO885s3nz5qDWufHGG01OTk6BtjznsL8fz/kdzPERzXNYOGMYTXv27DGVK1c2kky1atXCqqNr167OeWfTpk1ey3geF4X3k6cTJ0445Ro2bFhk+Xfffecs/8c//uGznpdeeskp5y0nxUqJDZ7Hjh1zTiwVKlQwDzzwgJk5c6ZZtWqVWbp0qXnvvffMnXfeaerUqeM3eLZr185IMk2bNjXjxo0zmZmZZu7cuebWW291QlZ6errZtm1bkToiCZ5vvfWWU3+3bt1MdnZ2ke1r06aNc2DddNNN5v333zfLli0z33zzjRk5cqSpWrWqkWQqV65stm7dGtY4up/QGjZsaMqXL28yMjLMs88+axYvXmyWLVtmXnnlFbN3715jjDE5OTkmISHBXHDBBeb55583s2bNMqtWrTILFiww48ePN507d3bGY+DAgV7bu/rqqwucBKdNm2aWLVtmMjMzzWeffWYee+wx06pVqwJPkr/99ptZu3at6du3r5FkateubdauXVvkx9PGjRtNxYoVnf338MMPm48//tisXLnSzJ4929xxxx3OE2jHjh3NiRMnivTVfeJr0aKFSUxMNA0aNDCvvvqqWbZsmVm0aJF55plnghrjP/74w+mje9uHDx9eoO87duxwyq9Zs8b5hyQ5Odncc8895quvvjIrVqwwb775pmnYsKFTzwMPPOC1zWj13Zjwj7XNmzebtWvXOuv27du3yD7bvHlzgba8Pam6eT7ZdezY0SQlJZnbb7/dzJkzx6xcudK8/fbbTlsJCQlm7dq1pm3btqZs2bLmoYceMgsWLDCZmZnm3//+tzM3KlSoYH777Te/bcV78AznmAqFey61atXKJCcnm9q1a5tXXnnFLF++3CxcuNA8+OCDpkyZMs58zczMLFKH57ny7LPPNpLMFVdcYaZNm2ZWrVplZsyYUSA83H777U75bt26mfHjx5sFCxaYFStWmLfeeqvAPxOffvppkfbatm3r9Of2228306dPN5mZmWb58uVm6tSp5v777zenn3661+AZzXNHmzZtTGpqqmnYsKFz/C1dutQ88cQTJjU11Wmj8IsOa9euNbNnz3a28amnnipy7HjO240bN5qUlBRz+eWXm5dfftnMnTvXrF692sydO9e89tprBcbrscceK9DWiRMnzNq1a8348eOdMuPHjy/S3h9//OGsE+j4iOY5LNwxjNSxY8fM5s2bzdixY03jxo0L7ItQbd682fkn6rzzzvNZ7sorr3Ta+f33332W27t3r1PO5XKZw4cPFynTpUsXI8lUqVLF7Ny5s8jyAwcOOPuhUaNG5vjx4yFvV7hKbPCcN29eUEk9JyenSKgzpuB/lG3atPH6Ct2kSZOcMtdcc02R5eEGz+eee85Z77LLLjNHjhwpsu4jjzxiJJlKlSqZlStXet22rVu3mlq1ahlJ5vrrr/cxAv55vipVu3Zt88svv/gsm5+fbzZu3Oi3vscee8w5GH766acCy44ePWqSk5ONFPjVl3379hV5LNAryJ7cB90555zjBOfCZs6c6YT/sWPHFlnu+YpHy5YtC5x4wxVM0Gjfvr3zD8fs2bOLLN+/f7/zCldCQoJZt25dTPse6bHm+cpFIMEGT5fLZT7++OMiZb799ltnn2ZkZJgyZcqYZcuWFSn3xRdfOHW5Xx311VY8B89Ij6lgeM6l+vXrm19//bVImfnz5zthrH379kWWe54rJZlHH33UZ3tffvmlU+7tt9/2Wubo0aPOu0H169cv8OrQpk2bnPV9vaJpzMnz2f79+4s8Hu1zR9u2bb0eF5MnT/Y7BwPNLU+HDh0yu3bt8rk8Pz/fDB482Egy5cqVM3/++WeRMoGezzwFOj6ifQ4LdwxDVXieFv4ZOHBgWAHN813Vt956y2e5hx9+2Ck3depUn+WmTp1aoF8bNmwoUmbDhg1OsKxRo4Z54YUXzFdffWW++eYb8/rrrzvLqlWrFtG7puEoscHz3XffdQbd24QMxHOn+Qp2xhhzySWXGOnk2zqFT7jhBM8HH3zQWeeGG27w+nL6wYMHnf+4/Z04jTHmtddec/6rPHTokP+N9sIzeE6aNCnk9QvLzc011apVM5LM6NGjCyzbuXOn05a3VykCCTZ4fv3110473333nd+yf/nLX4wk06VLlyLLPE98vj5uEapAQWP58uVOmdtuu81nPYsWLXLK3X777THte6THWiyC57XXXuuzjm7dujnlHnzwwYD96tevn9+24jl4RnpMBcNzLn300Uc+yw0fPtwpV/hVT89z5RlnnGFyc3N91uMOlFdffbXffv3www9OnV9++aXz+OLFi53Hv/322yC38qRYnDt89SE/P995hd7bHAwleAZj3759JjEx0ed+jFbwjMU5LNwxDJWv4NmgQYMCcyxU7ldMy5Yt6/ccunTpUqfNVq1amaNHjxYpc/ToUdOqVaugMszvv/9u/vWvf5ny5csX2abk5GRz3333me3bt4e9XeEqsV8uqlWrlvP7hAkTwq6nZcuWatu2rc/lQ4cOlSTl5uZGdFHd/Px8DRs2TM8995wk6c4779R///tfJSUVvaLVwoULlZ2dLUnq37+/33q7desmScrJydGqVavC7l9KSoquueaakNbJz8/Xrl27tGHDBq1bt07r1q3T+vXrnW/QffvttwXKV61aVSkpKZKk//73v34/nB8J9zcHmzZtqpYtW/ot6x6/zMxMn/2pW7euzjvvvOh20gf3dT4l6eabb/ZZ7txzz1Xz5s2LrFNYNPoerWMtmq677jqfy1q1ahVUubPPPlvSyS9llFS2jinp5GVZ+vbt63O5+1wp+Z+T1157rRITE70uO3DggHOeDXTua968uapVqyap4DdyPedrqF/4iva5o2XLls48K8zlcumcc86RFP05mJOTox07dmj9+vXOuXnXrl2qWrWqpKLn5miK9jnM5hi2b9/euaHHypUrNW3aNA0ePFjbt2/XoEGDNG7cuJDrXLJkiTZt2iRJ6tu3r9LT032W7dSpky677DJJJ/dR9+7dNW/ePB05ckRHjhzRvHnz1L17d3377bfOcS9JR48e9Vrf9OnT9e6773r9Fn5OTo6mTJmi9957z/r1k0ts8Ozatavzba2///3v6tChg5555hktXrw4pG9ntW/f3u/yDh06OL+vXbs2rL7m5uZqwIABeuuttyRJjz76qF555RWf3yz2/GZbrVq1/N5y66yzznLK7t69O6z+SVKTJk28Xsy2MGOMJk+erPPPP1/ly5dXnTp11KxZM7Vs2dL5ycrKkiT9/vvvBdYtU6aMrr32Wkknv4l3+umn64EHHtCMGTOieucE9/ht2LAh4C3L7rzzTkknD8L9+/d7rc/XSS8W1q1bJ+nkPwKtW7f2W7Zjx46STl6JwNecj0bfo3WsRZO/a+ZVqlQppHIHDx6MVress3VMSdI555zj9R9lt9atWztPhv7Olf7m5Jo1a5yrYgwYMCDg8es+x3ie+xo2bOj8s/Xiiy/qzDPP1GOPPab58+fryJEjfrcx2ueOZs2a+W2vSpUqkqIzB3NycvSf//xHnTp1Uvny5VW3bl21aNGiwLl5z549koqem6Mp2ucwm2NYrlw5nXXWWTrrrLPUtm1b9evXTxMmTNDs2bO1f/9+/fWvf3Uu7h6sSZMmOb8PGjQoYPl33nnHySUrVqxQr169VK5cOZUrV069evXSihUr1KdPHyegSgW/ce927733OlebuPLKK7V48WIdOnRIR48e1erVqzVkyBBt27ZNDz74oPr376+8vLyQtisSJTZ4Jicna/r06c5/TJmZmXrkkUfUtWtXVapUSRdffLHee++9gINZvXp1v8tr1Kjh/O7r5BLIzp07NWXKFEnSpZdeWuAist64Tw6hCnRS9ady5coByxw7dkx9+vTRTTfdpAULFvj8L8vN2/JXX31Vl19+uaSTl0V6/vnn1adPH1WtWlXt27fX888/77zaG65oj18wYxMt7jlWpUoVv0/ykpzbrRljfF5WKxp9j9axFk1paWk+l3leTDmYcjb7HQs2jikp8LkyKSnJCQH+zpX+5mS0jt33339fnTt3liT98MMP+te//qWePXuqUqVK6tatm9544w3n0jaxaN/N3/yTojcH9+/fr86dO+vOO+/U8uXLA/5DGOjcHWlfpOidw2yNoT89e/bU3XffLenkpfD8XTrM0/Hjx53n/lq1aunCCy8MuE6VKlX09ddfa9SoUWratGmBZfXr19cLL7ygzz77rMCcK3xMffHFFxozZoykk3eZ+vjjj9WlSxeVK1dOqampOuecczR+/Hj985//lCRNmzZNr732WlDbFA0l+s5FLVq00Nq1azV9+nRNnz5dX3/9tX7++WcdPXpUs2fP1uzZszVmzBjNmDHD50kznOsZhqpGjRo6/fTTtXjxYs2YMUMvvPCC7r33Xp/lPQ+g1atXB32xcW8XiQ2Wr7e+PI0cOVIzZ86UJHXv3l133HGH2rRpo5o1a6ps2bLOCaBbt2765ptvvL58n56ers8++0wrVqzQlClTtGDBAmVlZSkvL08rV67UypUrNXr0aH3yySfOE0eo3OPXqlUrTZ48Oej16tSp4/XxYMYm2qI1L6PV92gca4gNG8eUZGdOep773nzzTedWgYEUfuKtU6eOlixZonnz5mnatGlauHChfvjhB+Xk5Oibb77RN998o9GjR2vGjBkFXhWP9rnDlrvvvtv5qNWVV16poUOH6uyzz1b16tWVmprq7Lt69epp+/btVt5atfHcalPfvn01atQo5efna9q0aXrkkUcCrjN9+nQnUF9//fVBn49TU1N1//336/7779cff/yh33//Xenp6QVeCNu4caOkk8d/3bp1C6zvvmuRy+XSU0895bOdRx55RC+++KIOHTqk8ePH629/+1tQ/YtUiQ6e0smT2JVXXqkrr7xS0skLnM+aNUv/+c9/tGrVKq1atUq33nqrPv74Y6/r+7uAcOHl7v/mQ5WamqqZM2eqd+/eWrZsme677z4lJibq73//u9fy7s/hSFJGRkZEgTJajDHOZD7vvPM0f/78IrfpcgvmleEOHTo4H2M4ePCgFixYoIkTJ2ratGnas2ePrr76am3atElly5YNua/u8Tt06FCBjyKUBO45tm/fPuXm5vp9xcD99qLL5bLyqmykx1pJ4jm3/d0Q4fDhwxG143K5ZIwJeNOFYNqJ5TElBT5X5ubmFni1Kxye5760tLSIj9+ePXuqZ8+ekk4eU3PnztXYsWM1f/58bdq0Sddee63WrFlTpP2SdO44cOCA/ve//0mSbrjhBr+BOdIbjgQjns9hkcjIyHB+d98UI5BQ32b3pnLlykXGZv/+/dqyZYskqV27dkVC/vr16yWdfJfC3z9FqampOvPMM7V8+fKgX8WNhhL7VrsvtWrV0pAhQ7R06VK1adNGkvT555/7fGshMzPTb32eyyM5EVWoUEGzZs1yPrtxzz336NVXX/Va1v1haUlavHhx2G1G0/79+52TxDXXXOMzdB46dEgbNmwIqe4KFSro8ssv19SpU3XXXXdJOhlqCt/ZItj/oD0/bB7J516Lg3uOnThxwvmsrC8rVqyQdPLzuZ4fNLcl2GOtJL7y4fmZKX9P1oHunhNsO/7aMMbo559/DrneYI6pUGRlZfn98tK3337rvMUb7rmydevWznyJ9rmvatWquvbaazVv3jxdccUVkk5uk/uVIym+zh3BHjcbN25UTk6OJDmf9/Xmxx9/9Hurx2gdpyXpHBYKz7sYli9fPmD5vXv3OneLat26dcAvq4Vi2rRpzj+r3va5O+wH82VD99wJ9LGIaCp1wdMtOTlZ3bt3l3Ry8H190H7t2rUF/uMtbPz48ZJOvtrj63Z1wapYsaK+/PJL51v0f/vb3/T6668XKderVy/ncy0vv/yy9W+ceeM5gf29+vL2229H9M1a96sTUtEPwLu//BTodmXuJxVjjF566aWw+1IcevXq5fzunnveLF26VD/88EORdYpDoGMt2P0WTzxvV+j5Zb/C3n///ai046+NmTNnRvRFIX/HVCj279+v6dOn+1zuOV/DnZMZGRnq1KmTJOm9997T3r17w6onEF9jEk/nDs8ve/o7doI9N7/xxhtRaS+QkngOC8aHH37o/B5MiHz//fedUBfuq53eHDt2TE8//bSkk6+GXn/99UXKuM8r+/btc1799Gb//v3Ol8E8z3mxVmKD5zfffOP3VYATJ05o4cKFkk7+d+L5Mnlhw4YN83rAvvfee5oxY4akk5+b8bxMR7gqVaqkOXPmOP9Z33HHHc633T3LuL8xuWTJEt1zzz1+34r77bffnLfBYyUjI8P5FvD777/v9cSUmZnpfFjZm82bNzv7xJcvv/zS+b3wgeAe/z179vj9BmPv3r2dtxyff/5558Pdvrg/uxgPOnTooHbt2kmS3nrrLa/3E8/Oztatt94q6eRbwsOHD49pnyI91tz7zX1JkZLgrLPOct4yfPXVV73O9ylTphR4MgqHO7AvX77c6yt8u3fv9vu5q0iPqVD94x//8PqW+8KFCzV27FhJUtu2bQNeLcSfRx99VNLJt5D79+/vN3QfP35c//nPfwp8USgrK8vvK23GGOfyPS6XSw0aNHCWxdO5w/NSWf6OndNPP915tfKdd97x+kLF9OnTfb7D5ub5/BbJsRqP5zB/3n///YBfvpsyZYrefPNNSSdfQHL/g+KP+232pKQkr+HQl927d/t8vj969KgGDBjgvM3+wgsveH311f1lQ+nklUi8fdksPz9fd911l7PM81vyMWf9yqFR8vjjj5uEhATTvXt3M2rUKOf2jYsWLTLjx483HTp0cC6UevfddxdZ373MfcvMZs2amQkTJpiVK1eaefPmmeHDhzt3pqhQoYLXi0hHcsvM33//3bkIrMvlMuPGjSuw/NixYwXuRd2qVSvz6quvmkWLFpk1a9aY+fPnm1deecX07dvXpKSkmLZt24Y1jv5uxVfYHXfcUWDc3nvvPecWo//4xz9MamqqqVatmjnjjDO81ukerxYtWpj/+7//Mx9//LFZsWKFWbFihZk6dapzQWZJpnXr1iY/P7/A+nPmzHGWX3/99Wbp0qVm48aNzo+nn3/+2VSpUsUpf/nll5vJkyeb5cuXm5UrV5oZM2aYkSNHmk6dOhnJ+11fQrnwebDc/fF3wXDP282lpKSYe++917nd49ixY02jRo2cegLdbi4afY/0WPu///s/Z/kzzzxjsrKynH3meatQY4K/gLy/i7oHumi7W6AbEnjeRaRLly7mk08+MatXrzYzZ840Q4cONQkJCc5dbhTmBeTXrVvn3PGncuXK5sUXXzSZmZlm8eLFZtSoUaZmzZqmatWqpkmTJjE5poJR+JaZderUMa+++qpZsWKF+eabb8zDDz/s3LowKSnJ652iQrk4uTHG3H333U75mjVrmieeeMLMnTvXrFmzxixatMhMnDjR3Hzzzc79sz3vPOeeJ+3btzcjRowwn3/+uVm5cqVze9cLL7zQqbtv375F2rZ57gg0B88991wjyVStWtW899575ocffnCOHc87UfXp08fpb69evczUqVOdvt58880mMTHRNGnSxGRkZPjt12mnnWakk7dQ/vTTT82PP/7otHfgwIEiY+zrWLR5DgvljnbedO/e3ZQvX97ceOONZuzYsWbhwoUmKyvLLF682IwfP95ceumlTl9dLpeZOHFiwDq///57Z53LLrsspP48//zzpkGDBuahhx4yn3/+uVm9erVZuHChGT16dIFbd/71r3/1Wcfx48dN8+bNnbItW7Y0Y8eOdebwpEmTCtziukaNGj7v0hULJTp4ugfN30/fvn293pLS8wnOX13p6elmwYIFXvsQSfA05uT9Vlu2bGmkk7cNe+eddwosP3DggLnqqquC2s7zzz8/5DE0JrTg+eeff5rWrVv77EOVKlXMwoULfdYZ6HZk7p9mzZoVuYe3Mcbk5eU5J3tvP4Vt2LDBnHXWWUG1+eSTTxZZv7iCpzHGzJ4926Snp/vt8x133GHy8vK8rh/t4BnJsbZjx44CT+SeP4XniL/xsR08Dx8+7He+9ejRw6xbt875O5zgaYwxY8aM8XtMff311zE7poLhOZfeeustJygX/klJSTHvv/++1zpCDZ75+fnmySef9NmW50+5cuUKzDvPeeLvp0uXLj7vh23r3BFoDn7++efOPb4L/3geI9u2bTP16tXz2cd69eqZ77//PmC/3HfC8/bjOb+DORZtncOiETyD2c+VK1c27777blB1et6hcMqUKSH15/nnn/fbj6SkJPPQQw8F/Cdy69atRe5w5O2nYcOGZs2aNSH1MVIl9lvt9913n84++2zNnTtXa9as0a5du5xrsNWsWVMdOnTQwIED1adPn4B1PfHEE+rcubNeeeUVrVy5Un/88Ydq166tSy+9VA8//HDMvlVerVo1zZs3T+eff76+//57DRkyRImJibrhhhsknfyCwNSpU7Vo0SK98847+uabb7Rr1y4dPXpU6enpaty4sTp06KA+ffqod+/eMemjp4oVK2rx4sUaM2aMpkyZoo0bNyopKUl169ZVnz59dPfdd/sdq/POO08LFizQ7NmztWzZMm3fvl2//fabjh07pipVqqhVq1a66qqrNHjwYJUpU6bI+gkJCfryyy81atQoTZ8+XZs2bdLhw4d9fgb2jDPOUFZWlqZMmaKpU6cqMzNTe/fuVV5enqpWraqmTZuqa9eu6tevn/PlmHjRu3dv/fzzz/r3v/+tGTNmaPPmzTp+/Lhq1Kih8847T7fddpu6du1qpS+RHmt16tTRihUr9Mwzz2jhwoXasWOH12soxpu0tDTNnz9fL774oj744AP9/PPPSk5OVtOmTTVo0CDddttt2r59e8Tt3HPPPWrRooVefPFFrVixQkeOHHHOPw888IDq1avnc91Ij6lQ/fWvf9VZZ52lF198UYsWLdLvv/+ujIwM9ezZUw8++KBatGgRcRvSybfAH3vsMd1000164403NH/+fG3evFnZ2dlKS0tT3bp1dc4556h3797q169fgW/qDxgwQDVq1NCcOXOUmZmpnTt36rffflNubq6qV6+uNm3a6Nprr9V1113n80uS8XLu6NOnj+bNm6eXXnrJ6YP7c4Oe6tatq9WrV+u5557Tp59+ql9++UWpqalq0KCBrrzySt19991BfWt8+PDhqlGjht58801lZWVp//79YX9mP57OYf5MmjRJn3/+uRYtWqQff/xRv/32m/bu3auUlBRVq1ZNLVu21MUXX6zrr78+qDHMz8/Xu+++K+nkx+aCeVve01VXXaVjx445V17Ys2ePypQpo9NOO00XXXSRbr755qCOs/r16yszM1MffPCBPvroI61evVp79+6VMUZVqlTR2WefrSuvvFIDBw5UuXLlQupjpFzG17N2Kef+TMzjjz+uJ554ong7AwBxqkGDBvrll180aNCgkG9BCQCFldgvFwEAAKBkIXgCAADACoInAAAArCB4AgAAwAqCJwAAAKw4Zb/VDgAAALvi6jqe+fn52rVrlypUqOBc7ggAAADxwxijgwcPqnbt2j6vh+tLXAXPXbt2qW7dusXdDQAAAASwffv2kG+yE1fBs0KFCpJObkh6enox9wYAAACFHThwQHXr1nVyWyjiKni6315PT08neAIAAMSxcD4WybfaAQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBsxQ5nJenml9lqeZXWTqcl1fc3QEAACiA4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCQAAACsIngAAALCC4AkAAAArCJ4AAACwIqm4O1Aa5eUd0YKFLSVJ53Vdrm8WdSywvEf3tUpMTAt6vWDK9+i+VuUS07T7/Nb//+NnhLRuOGWCqcObwutJCqseb/X5G7dw+xuOWLYVbN02tzcc4fQvkm3yXNctUB3+2iuuY8j2frXVx1hsV6jn1FiL92MSsIFXPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABghcsYY4q7E24HDhxQxYoVlZ2drfT09OLuDoBTwYnD0tO1T/7+yC4ppVzx9gcA4lwkeY1XPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWJBV3B1CQyc3X8TnfS5LKXHimXEn8bwDEVEo56Yns4u5F3OAcBCCWOKMAAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAruXGRJXk6Olk0aK0lqP2CIMt+fUGB5p4HDlJicLFdSglIvaVkcXQyZ5za5+x+LdWIlkr7Ey3YE049olSkO8dovyc78j3T7w1k/lHNQPO+faCot21latgMnldT9ySueAAAAsILgCQAAACsIngAAALCC4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCQAAACtcxhhT3J1wO3DggCpWrKjs7Gylp6dbbz8n/4TGb3tJkjS03t1KTkiJanmEhvEtvaKxb0vq/LDV7+Icn+LeN8XdfkkXb+MXb/1BZHmNVzwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAV3LkJY8k/kaddjSyRJtUd0UUJKYjH3KHRsQ+zqikY74fanNOzXWAhmXMIZu5Iy3iVp20rKmJ4q2B9FceciAAAAxD2CJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKzgAvKW5OSf0PhtL0mShta7W8kJKcXco4LivX8AACA+cAF5AAAAxD2CJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMCKpOLuQGngedcfX2467faA6xa+Y9CpdDeheB6HaLRfXNtQuF1Jfv8OpV/etsnWdsaqneKea5E6Vccl3vvnT6R9j4dtj4c+lEaldVx5xRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABghcsYY4q7E24HDhxQxYoVlZ2drfT0dGvt5p/I067HlkiSao/oooSUxIjKAYBtnJ+AwIrzOClNx2gkeY1XPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBXcuioGc/HxN3rRbknRj45pKTkgIallx9Cee6/bVjjfhth1q/2OxvZHU6bnudQ2r64Mte4qUubFxTUnyO36eZZMTEvyOt2c7nr97W9dXnzzLe9sWb+Pgq15v2+etL7aONwDRUdqO39K0Pdy5CAAAAHGP4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCQAAACsIngAAALCC4AkAAAAruIB8KZVz7JheHtRfknTXOx8pOTW1mHsEAIiHc3M89AElGxeQBwAAQNwjeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsSCruDhSnvLwjWrCwpSSpR/e1klTg78TEtCJlEhPTwqrfWxuFndd1ub5Z1NFv+/7WL6z1rSfr/HrRmT7LnNd1uVJSqvnsd+E2u3ReoCVLexT53bPv/rY3mDH0bL/wmBSuLxDP9f3VFWh/e3u88P6NRLD98SwTi3Y9H/e1nwJtt7e5EM5+9NUHX+17azdc0djHhfvjbz5JRfe9L4H6FGh8vbVXuHykffAmmPObt/Ep3Cdf5wd/7RUuF8wc9deXwoKZ0+4yXy9pWeTc7G28Q33uKdxPf+e+hGSp9a3rJUkm4ZDmzT+zSLlA7frbD6GeA8LZPk/exj/YueGrf/72h682A7XrrR3POnw9j4aSO0oCXvEEAACAFQRPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABYQfAEAACAFQRPAAAAWOEyxpji7oTbgQMHVLFiRWVnZys9Pb24uwMgDuSfyNOux5YUeKz2iC5KSEn0W9ZXGV/lfK0bbJ3hiGbdsexntHn2teajHbX7qeWSotPvSMfB3/qxGuNA9YYyX8PpZzjtR3sbbddnY1+6hXIukuT3bxvzMRiR5DVe8QQAAIAVBE8AAABYQfAEAACAFQRPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABYQfAEAACAFdy5yLKcY8f08qD+kqS73vlIyampxdwju0717Y82xhMAYBt3LgIAAEDcI3gCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsIHgCAADACi4gH0/yTkhfPX7y9/OflBJTir+uaPYplnXGUrz0N176ESv+ti+cbS+8jhT5+MXzPvDVt0B9DmWbvJWNdN+Esl6wdcbbvrEpGseKv7nDOENcQB4AAAAlAMETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAV3LrLgyIlctXhstiTphxEXKS0lyetjkdYZK9FsK5y6bG5rJEpKP+NZSR7DaPS9cB2SSsR4+Nr2krw/o8HW9kfyHONZLph+hlo+nL5HKpg6Q2m3OOZxvB873LkIAAAAcY/gCQAAACsIngAAALCC4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCQAAACu4gHwxyD9yRBvatJUkNVm8SBvP7SpJarp6lRLS0sKuy9/6wZYrKTy3x63wdgWzzb72ha86g6k7mL4FqyTv32DHKNrzPh7HwpvC/ZRUIvoNlGSxOD+UlHNONHEBeQAAAMQ9gicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsIHgCAADACu5cFAM5+Sc0fttLkqSh9e5WckJKiajbZhsAAKBk4s5FAAAAiHsETwAAAFhB8AQAAIAVBE8AAABYQfAEAACAFQRPAAAAWEHwBAAAgBUETwAAAFjBBeRRLPJycrRs0lhJUqeBw5SYnFzMPQIAxJuS+lxRUvsdLC4gDwAAgLhH8AQAAIAVBE8AAABYQfAEAACAFQRPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABYccreuejIiVy1eGy2z+U/jLhIaSlJQdX1+6FjavfUPL9lPOsL1LbnOpKcsisf7emzncLL3O0VbsuzXOH6C/8dqA1vvnmgh84btSCs9Vc+2lPVyqdKKjhGvsYuUH/9reutP8HU52s7PB/z9XvhOeXZn1D3rbd+BluHr7niqfBY+duv3oQzlv7Gx1v5wv33Vt5fP7y17e/Y9DeGwfTP33YFasPXdvg7Nvydv3z1wVf/Pdv2Vbev8Q/m2A3lfOuvTX/nzEDz3F8fgjlWg5kf3uZZ4bLRPmcE6pe3uRXOsRjKc5y7bKDnzmDP34HaDnR8hzv/vAnmOSrQ8RxoXnou9zw3ez6Hxhp3LgIAAEDcI3gCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsIHgCAADAilP2AvJWnTgsPV375O+P7JJSyoVXJpLyAAAAUcAF5AEAABD3CJ4AAACwguAJAAAAKwieAAAAsILgCQAAACsIngAAALCC4AkAAAArCJ4AAACwguAJAAAAK5KKuwOnhJRy0hPZXhfl5+do8+ZXJEmNHvtdCQnJYddZoK5Gfwu+Lj+iWWe06orFdpYU4W57vIxZvPQjGuJlW+KlHwhOvJ2nS+v8Ka3bVRrwiicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsIHgCAADACpcxxhR3J9wOHDigihUrKjs7W+np6cXdnaDk5hlNz9zjddnl7asrKdEVcj2XtMnQzNV7C9Tha3mwbXmuX7ist2WRPBZum+E87qs+SSGV9zZ2oY55oH0YbLvhjkO0xrQ45kMoZYIZL0lBzYdQ+utZRyjHaLTmY6jlI90X/spGYz7EYruiNQbhnoeC6YPkfx6Fsq2xOObdIm0vGmVDFcw5ONC2BFsmkj5Ha55Ha9zCEUle4xVPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABYQfAEAACAFQRPAAAAWEHwBAAAgBUETwAAAFjBnYtKqLzcfC3/4kdJUsc+zZSYVPR/iGDKxLpOG+KxT6EKdxtK0rb766u3ZZ6PuXlb5llXoHq8jVE0xjCW+8Gz7nYXnaGVs38Kq51wxiaS/oTT71D2a6jbGsyycNoKpe1Q2ehLsPPCxnEUje0Jd/1g64703BPqHI/Xczx3LgIAAEDcI3gCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsIHgCAADACi4gX9KdOCw9Xfvk74/sklLKFW9/ioO/MbA5PqfKviip2xlpvwuvLxWtz7PMfT9Lo08v2p6vfkTSP2/rxqKdaIhW+za2L5j9aVtx779YCXW7gi0fyrERjT7GajuivW6EuIA8AAAA4h7BEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGDFKX3nohMnTujpp5+WJD3yyCNKSUmJStlo1xGNtmNRV6B6g2krVv0Jta+x7pNnnffdd59Gjx4dVP3hjKEkv3/7ai/U7Q53HKN53IXaRqCx8rd+oMe87ddgtzUW54ZgtjXS8fPXXrDHezjnjkj67RZq/8Pd15HOgUj7FUofgulPKELZt7GYW5FuY6yfe4vj+S9auHMRAAAA4h7BEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFac0heQD1ZOfr4mb9otSbqxcU0lJ4Sf10OtK5Ty0S7rr0wstyOSdYJZP5rbVVLFYv95lgm23kjaiNW881dHsH27rmF1fbBlj9fykcy/WG1/NI6JcMtJKrJeLOZCNPscrfNwNPoWrbrCOV9Gs/1gy4fbn1ic24vr+SIenqe4gDwAAADiHsETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGBFRMHzggsu0KhRowKWGz16tC644IJImgIAAEAJlxTJygsWLFCDBg0CltuwYYMWLlwYSVMAAAAo4ay81Z6Tk6OEUno9RAAAAAQnogvIJyQkaPDgwRo/frzfcm3bttXOnTu1e/duv+Xi9QLyCJ7JzdfxOd9LkspceKZcSQleH4sn8d6/4lCSxiTafS1J2w4AxSGSvBbyW+1Dhw4t8PeiRYuKPOaWm5urH374QVlZWbriiitCbQoAAAClSMjBc+LEic7vLpdLP//8s37++We/69SuXVsjR44MuXMAAAAoPUIOnhMmTJAkGWM0dOhQde3aVTfffLPXsikpKTrttNPUqVMnJScnR9ZTAAAAlGghB89BgwY5vz/xxBPq1KlTgccAAAAAbyK6nNLWrVuj1A0AAACUdnxdEwAAAFaE9IrnpEmTJEn9+vVThQoVnL+DNXDgwJDKAwAAoPQIKXgOHjxYLpdLnTp1UoUKFZy/g0XwBAAAOHWFFDwHDhwol8ulihUrFvgbAAAACCSiOxdFG3cugjc5+fmavOnkXa9ubFxTyXF2+9Vo9i/UunyVj/cxAxCZknaMR9LfaJ0XET2R5DX2BgAAAKwgeAIAAMCKiK7j6Xb8+HGtXLlSO3fu1LFjx3yW48tFAAAAp66Ig+fLL7+sJ554QtnZ2QHLEjwBAABOXREFz//+97/6+9//Lklq1qyZmjdvzpeCAAAA4FVEwfPf//63XC6XJkyYwKuZAAAA8CuiLxetX79enTp1InQCAAAgoIiCZ2pqqho0aBClrgAAAKA0i+gC8r1799aff/6pFStWRKUzXEAep6LcPKPpmXskSZe3r66kxNJ3N7Di3EbPti9pk6GZq/cWSz9s8NxWKX62t3C/SuPY+3MqHOMoqLTv82K7gPzDDz+sVatWaebMmZFUAwAAgFNARF8uaty4sR599FH169dPd911ly677DLVq1dPCT5uT1WvXr1ImgMAAEAJFlHwbNCggVwul4wxeuGFF/TCCy/4LOtyuZSbmxtJcwAAACjBIgqe9erVk8tVuj63AAAAgNiIKHhu3bo1St0AAABAaRfRl4sAAACAYEX0iue2bdtCKs+XiwAAAE5dUflyUTD4chEAAMCpLSZfLsrPz9evv/7qBM369etH0gwAAABKgYjuXORPbm6uZs2apb/97W86//zzNX78+IDr2LxzUf6JPO16bIkkqeajHbX7qeWSpNojuighJbFY2/Us460/kS6P5jbUHtFFkoJuz1ffQu2zvz54jmswY1y4jGddbtEeR8/2vbUby/Z8jUM47YYyF2I9L23wNW8inWex3v/BbE9x75No9iXY80NxbXO0zoOx7o+N9txK8/b6a1sKbm7G07EqRZbXInrF02/FSUm67LLLVLduXXXo0EGdOnXSsGHDYtUcAAAA4lzMv9XeqlUrtWvXTm+88UasmwIAAEAcs3I5pTp16uinn36y0RQAAADiVMyDpzFG3333nZKTk2PdFAAAAOJYTIPn77//ruHDh2vjxo3q1KlTLJsCAABAnIvoy0WNGjXyuezgwYPav3+/jDFKSUnRk08+GUlTAAAAKOFieq/2lJQUdevWTU899ZQ6dOgQSVMAAAAo4SIKnlu2bPG5LCUlRRkZGUpKitkVmwAAAFCCxOwC8uGweQH5SJ04cUJPP/20JOmRRx5RSkqK12X33XefRo8e7bVcoHqi1YdQ6w1HrNuzvT3R6EO0ywdTXzjjFMo6wZaN5v6K5b6P1fEXq/WjNQciPXeEco6LZJtjOcbFsf9iWU+s6ozF+SGUsiXlXBIL8dzfSPKalcspAQAAAARPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABYQfAEAACAFQRPAAAAWEHwBAAAgBWn9J2LTG6+js/5XpJU5sIz5UpK8PpYLNt1S7mguU7MXx90X8LtZ+H1JPmtx1tfPcsVXu6r757teNvWeBHr/W97fgXbRjT6ZWPbQhWPfTqVxNP4BzqX+Ssf677Hqq1Qz/fRasvN3/OWrzKRtBuorniaj24291E0ceciAAAAxD2CJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKw4pS8gL0lHco6o43sdJUnLr18uSQX+TktOC7iOu4yvxxG/2GfxZ9/RfeoxpYckaeZVM3XJtEsksX9KEo4roHTjAvIAAACIewRPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABYQfAEAACAFQRPAAAAWEHwBAAAgBWn/J2LAABA6ZebZzQ9c48k6fL21ZWU6CrmHpVc3LkIAAAAcY/gCQAAACsIngAAALCC4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCQAAACuSirsDxS0vN1/Lv/hRktTuojO0cvZPkqSOfZopMcl7Lvdcx1u5QMsj6WM06otF3aHW41neLZIxj0b/ItmGaO8XREfhfSQp7vZZ4WMhlHOKrTloox3b51Vv9Qb7HBBJG4HqLennFRvjGa6kRJf6darhdZnNY6y45nq8KF1bAwAAgLhF8AQAAIAVBE8AAABYQfAEAACAFQRPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABY4TLGmOLuhNuBAwdUsWJFZWdnKz09vbi7E7L8I0e0oU1bSVLT1auUkJbmd7kkv+WLo4/h1lVYJHV766OvtposXqSN53YNu03PeiOty1/dwcyHUJf7KuNtrKI1v6I5fwrX5zn+bt62Kdpzy9sytyaLFympatWw2gq23VgpjjbDFex+8TXHA21frM+9ofanpAp2ToU69+Jxrgaad7E4pwZTb7yMVSR5jVc8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFZwAflYyTshffX4yd/Pf1JKTLG7PlBSMfdLNl/7j/1asnjuL+n/7TP2I8QF5AEAAFACEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVnDnogjl5+do8+ZXJEmNGv1NCQnJQZVt0OA2bd36RpHfQ6kjUNlYbEdu7pEC/U5KSgurzlhtB/wLddxjvZ+iVT/zKTSMFxA+jh/uXAQAAIASgOAJAAAAKwieAAAAsILgCQAAACsIngAAALCC4AkAAAArCJ4AAACwguAJAAAAK7iAPACUEIfz8tT467WSpE3dWqpcYmJc1IXQBTP+xbmPIm2b+VW6cQF5AAAAxD2CJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAK7lwUI9G4a4PtOz9wpwqUVoHmJnP31BPuPmeueFfax6W0b1+ouHMRAAAA4h7BEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFZwAfn/X15OjpZNGitJ6jRwmBKTk70+ZrP90qS0bx+iI9J54mv94px/nm27tR8wRJnvTyj2/nQaOEySojo2wY51PJwTYt2HUJ9XYtGfUOqMh30SLYG2JZhzRbjHaWkaR1+4gDwAAADiHsETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAV3LopQzrFjenlQf0nSXe98pOTU1GLuUWAloc8loY8AAJyKuHMRAAAA4h7BEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFZwAfnSJO+E9NXjJ38//0kpMSW8MuGUjVQkbYW6brhtxWI8bPUd9rCPUNxzwFv7/voUbH9tbFdxj12wovk8UlK22QMXkAcAAEDcI3gCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArODORYip3Dyj6Zl7JEmXt6+upERX0MsLL5Pkty6ULoHmDhAOz3nl5m9+MQ9RXHMgnucedy4CAABA3CN4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAouII+oOpyXp8Zfr5UkrT33TLVc/L0kaVO3liqXmFhgufuxwut5Pu6tXm/Lw+1PvAt3u2PdduFlkryOs78x91a/52PBimRcgh3fUPZDrPdZKPslXud4sOcBSUHPkcLlfT3muSzY/eivnWDGOdBcD/WxUNuKRll/5W3Ou2iORzw+P8Rjn7zhAvIAAACIewRPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABYQfAEAACAFQRPAAAAWEHwBAAAgBWn9J2L8vLylJmZKUlq3769EgPcFSDU8og9z30ixW6/hLLvA5X1XN6mTRutXr065L4zF+NDLPYD5yX7Co+hpALnFffjNsa28Dktlm37mjvMqdgJ5fkhnseeOxcBAAAg7hE8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYMUpfQH5SOXl5GjZpLGSpE4DhykxObmYewQApQPnVyB+cQF5AAAAxD2CJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAK7lxUAuSfyNOux5ZIkmqP6KKElEQr9Xpb7vlYzUc7avdTy6Per0hFc7xCrSvY8rHap8HUXRx9jEZdodThq2y4/YjWmEbSRrjreJbxVHtEF0nye4wHWybQ+AZ73gh0zgmm/4HGJdQxC+Y8F6jf/voaSr9iobjaDbX93EMnnP3gTaD972ufels/1L4FUz7YY0byPU9CnVOxxJ2LAAAAEPcIngAAALCC4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCQAAACsIngAAALCCC8hH2eG8PDX+eq0kaVO3liqXGPkFXQvXKclnG97a97f+2nPPVMvF30e1vwBOXbE4B0YqHvsUDcW9XcXdPooPF5AHAABA3CN4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKzgzkWSco7naezdCyVJw17qLkkF/k4uk1ikTHIZ/3do8Cw/ZFRXTXhgUcB1Q20jGoLZdlv8bX9xjE0g8dgnmyLd/lDWD1Q22vuiuPZtSdqO0jT/Q5lf/oT7/FGaxjJW/O2DYPeZZ7lY7JNAbUZDvMwV7lwEAACAuEfwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABYQfAEAACAFQRPAAAAWEHwBAAAgBVcQL4Eys/P0ebNr0iSGjX6mxISkou5R4GVxD6Hw9Z2+mqn8OOSgupPoH57LpekBg1u09atbwSsNxZC6Ws0+xZMvbbnebTbi2X/wx2/cPsUzbrCaSuScjb7ZLuueGgn3pWEceAC8gAAAIh7BE8AAABYQfAEAACAFQRPAAAAWEHwBAAAgBUETwAAAFhB8AQAAIAVBE8AAABYQfAEAACAFdy5SFLOsWN6eVB/SdJd73yk5NTUoMoOHztZrw+7scjvnnV4lg+mfl9teQqljmDq9ldfKGMTyTqIHW/7w9c+CrTv/C33Nl9Dac/XMRRoeyQF3afimI+RjGk49cWyr7FWXO0HmofBHkPhHleR9jnUc3gw6wZ7rHurM9hjOdI2o624539Jwp2LAAAAEPcIngAAALCC4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCQAAACsIngAAALCCC8jHSE7+CY3f9pIkaWi9u5WckBKTdRA/2H+IFHModmyMbeE2JFnbn6V57pTmbSupuIA8AAAA4h7BEwAAAFYQPAEAAGAFwRMAAABWEDwBAABgBcETAAAAVhA8AQAAYAXBEwAAAFYQPAEAAGAFdy6KwJGcI+r4XkdJ0vLrlystOS3m9QbTZuEyksKuL9K+BFtXNMqXFLHYLs86F/xlgXpM6RGw/nD64W0dz8e88VYu3LkUqH3PdUN9PBiRHC+hitb+Cae+eDv2otX3WI9BuPV7HrNu8Tbubgv+skBlk8oGdcx7qyeU7Qp3vX1H9xUZz1DrCFUk57BYtRVL3LkIAAAAcY/gCQAAACsIngAAALCC4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCQAAACu4gHwJlpOfr8mbdkuSbmxcU8kJ0f8/onAbkmLeZjD9SE5IsLL9JZHnuFzXsLo+2LJHkr05wn5AcQp2Ptqet77aC9SPSPsZq+3kuI+dwmObm5/vnMc9FedzMheQBwAAQNwjeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACs4M5FiDnucAEABcXLnZOCKS+dvAta2aSkYu8X4gN3LgIAAEDcI3gCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsIHgCAADACi4gDwAlWG6e0fTMPZKky9tXV1Kiq5h7hOIUj/MhHvuEyHABeQAAAMQ9gicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsIHgCAADACu5cBAAAgKBx5yIAAADEPYInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArCB4AgAAwAqCJwAAAKwgeAIAAMAKgicAAACsIHgCAADACoInAAAArEgq7g54MsZIkg4cOFDMPQEAAIA37pzmzm2hiKvgefDgQUlS3bp1i7knAAAA8OfgwYOqWLFiSOu4TDhxNUby8/O1a9cuVahQQS6Xy3r7Bw4cUN26dbV9+3alp6dbbz+eMTbeMS7eMS6+MTbeMS6+MTbeMS6+xXpsjDE6ePCgateurYSE0D61GVeveCYkJOi0004r7m4oPT2dSewDY+Md4+Id4+IbY+Md4+IbY+Md4+JbLMcm1Fc63fhyEQAAAKwgeAIAAMAKgqeHMmXK6PHHH1eZMmWKuytxh7HxjnHxjnHxjbHxjnHxjbHxjnHxLZ7HJq6+XAQAAIDSi1c8AQAAYAXBEwAAAFYQPAEAAGAFwRMAAABWlIjg+fXXX+vyyy9X7dq15XK59MknnxRYPnjwYLlcrgI/F198cYEyP/30k/r27atq1aopPT1dXbt21VdffVWgTOE6XC6XPvjgA5/9WrBggdd1XC6XMjMzJUlbt271unzZsmUlZlwkaeLEiTr77LOVmpqq6tWr64477vDbt2PHjumOO+5Q1apVVb58eV199dX67bffCpTZtm2b+vTpo7S0NFWvXl3333+/cnNzwxuMQuJ1bPbv36+//e1vatq0qcqWLat69erprrvuUnZ2doFyoc7FYMXruEhSjx49irR92223FShzKs4ZX+cQl8ulDz/80ClXkufMxIkTfW7jnj17fPZt//79uuGGG5Senq5KlSrp5ptv1qFDhwqU+e6773TeeecpNTVVdevW1ahRoyIeE7d4HZutW7fq5ptvVsOGDVW2bFk1btxYjz/+uE6cOFGgTEl+bgp3zjRo0KBI+WeffbZAmVNxztjMM3F15yJfDh8+rFatWmno0KG66qqrvJa5+OKLNWHCBOfvwpcQuOyyy9SkSRPNnz9fZcuW1b///W9ddtll2rRpk2rWrOmUmzBhQoGdXKlSJZ/96tKli3799dcCj/3zn//UvHnz1K5duwKPz507V2eeeabzd9WqVX1vcJBsjcuYMWP0wgsv6Pnnn1fHjh11+PBhbd261W/f7rnnHn3xxRf68MMPVbFiRd1555266qqrtHjxYklSXl6e+vTpo5o1a2rJkiX69ddfNXDgQCUnJ+vpp5+OYFROitex2bVrl3bt2qXRo0erRYsW+uWXX3Tbbbdp165d+uijjwqUDWUuBitex8Xtlltu0YgRI5y/09LSnN9P1TlTt27dIueZsWPH6vnnn9cll1xS4PGSOmeuvfbaIk+ugwcP1rFjx1S9enWffbvhhhv066+/as6cOcrJydGQIUM0bNgwvffee5JO3jawd+/e6tWrl9544w2tXbtWQ4cOVaVKlTRs2LBwh8QRr2Pz448/Kj8/X2+++aZOP/10rVu3TrfccosOHz6s0aNHFyhbUp+bwp0zkjRixAjdcsstzt8VKlRwfj9V54zVPGNKGEnm448/LvDYoEGDTN++fX2us3fvXiPJfP31185jBw4cMJLMnDlz/NYdihMnTpiMjAwzYsQI57EtW7YYSWbNmjVh1xuMWI3L/v37TdmyZc3cuXOD7suff/5pkpOTzYcffug8tn79eiPJLF261BhjzIwZM0xCQoLZvXu3U+b111836enp5vjx40G3FYx4GhtvpkyZYlJSUkxOTo7fPkdbvI1L9+7dzd133+1zOXPm/2ndurUZOnRowD5HWyzPv5727NljkpOTzaRJk3zW+8MPPxhJJjMz03ls5syZxuVymZ07dxpjjHnttddM5cqVC8yPBx980DRt2tTfZoYlnsbGm1GjRpmGDRs6f5f056bCgh2X+vXrmxdffNHncubMSbHMMyXirfZgLFiwQNWrV1fTpk01fPhw7du3z1lWtWpVNW3aVJMmTdLhw4eVm5urN998U9WrV1fbtm0L1HPHHXeoWrVq6tChg8aPHy8TwmVOP/vsM+3bt09DhgwpsuyKK65Q9erV1bVrV3322Wfhb2iIIh2XOXPmKD8/Xzt37lTz5s112mmn6S9/+Yu2b9/us81Vq1YpJydHvXr1ch5r1qyZ6tWrp6VLl0qSli5dqpYtW6pGjRpOmYsuukgHDhzQ999/H+1h8Ko4xsab7OxspaenKymp4BsQkczFSBTnuLz77ruqVq2azjrrLD388MM6cuSIs4w5c9KqVauUlZWlm2++uciykjpnCps0aZLS0tLUv39/n20uXbpUlSpVKvBqTK9evZSQkKDly5c7Zbp166aUlBSnzEUXXaQNGzbojz/+iHSzg1IcY+NNdna2qlSpUuTxkvrcVFgo4/Lss8+qatWqOuecc/T8888X+LgOc+akmOaZiGJrMZCX/xDef/998+mnn5rvvvvOfPzxx6Z58+amffv2Jjc31ymzfft207ZtW+NyuUxiYqKpVauWWb16dYF6RowYYRYtWmRWr15tnn32WVOmTBnz0ksvBd23Sy65xFxyySUFHtu7d6954YUXzLJly8yKFSvMgw8+aFwul/n0009D33g/YjUuzzzzjElOTjZNmzY1s2bNMkuXLjU9e/Y0TZs29fkq07vvvmtSUlKKPN6+fXvzwAMPGGOMueWWW0zv3r0LLD98+LCRZGbMmBHuMHgVT2NT2N69e029evXMI488UuDxSOdiMOJtXN58800za9Ys891335nJkyebOnXqmH79+jnLmTMnDR8+3DRv3rzI4yV5zhTWvHlzM3z4cL99GTlypDnjjDOKPJ6RkWFee+01Y4wxF154oRk2bFiB5d9//72RZH744YdAmxuSeBqbwjZu3GjS09PN2LFjncdK+nNTYcGOywsvvGC++uor8+2335rXX3/dVKpUydxzzz3OcubMSbHMM6UieBa2adMmI8l5Oys/P99cccUV5pJLLjGLFi0yq1atMsOHDzd16tQxu3bt8lnPP//5T3PaaacF1a/t27ebhIQE89FHHwUse9NNN5muXbsGVW+wYjUuI0eONJLM7NmznXr27NljEhISzKxZs7y2UxKCZ2G2xsZTdna26dChg7n44ovNiRMn/JYNZS4GK17HxW3evHlGkvn555+NMcwZY4w5cuSIqVixohk9enTAsiVpznhasmSJkWRWrlzpt52SEDwLszU2nnbs2GEaN25sbr755oBlS9Jzk6dwxsVt3LhxJikpyRw7dswYw5wxJvZ5plQGT2OMqVatmnnjjTeMMcbMnTvXJCQkmOzs7AJlTj/9dPPMM8/4rOPzzz83kpwJ6c+IESNMRkZGwABhjDGvvvqqqVmzZsByoYjVuIwfP95IMtu3by9Qpnr16gX+e/bkDgx//PFHgcfr1atnxowZY4w5+aTYqlWrAss3b95sJPn9zy0c8TQ2bgcOHDCdO3c2PXv2NEePHg3Yt1DmYrDicVw8HTp0yEhyAtmpPmeMMWbSpEkmOTnZ7NmzJ2DZkjRnPA0dOtS0bt06YBvjxo0zlSpVKvBYTk6OSUxMNNOmTTPGnHxSLPx5ufnz5xtJZv/+/QHbCEU8jY3bzp07TZMmTcxNN91k8vLyApYvSc9NnkIdF0/r1q0zksyPP/5ojGHOGBP7PFNqPuPpaceOHdq3b59q1aolSc7nxBISCm5uQkKC8vPzfdaTlZWlypUrF/lGWWHGGE2YMMH5hm0gWVlZTt9sCmdczj33XEnShg0bnOX79+/X77//rvr163ttp23btkpOTta8efOcxzZs2KBt27apc+fOkqTOnTtr7dq1BS7tMGfOHKWnp6tFixaRbmrIbI2N9P++NZmSkqLPPvtMqampAfsX7FyMNpvjUlhWVpYkOW2fynPGbdy4cbriiiuUkZERsGxJmjNuhw4d0pQpU7x+frWwzp07688//9SqVaucx+bPn6/8/Hx17NjRKfP1118rJyfHKTNnzhw1bdpUlStXDm8DI2BrbCRp586d6tGjh9q2basJEyYUacObkvTc5BbquBSWlZWlhIQE59vep/KckSzlmZBiajE5ePCgWbNmjVmzZo2RZMaMGWPWrFljfvnlF3Pw4EFz3333maVLl5otW7aYuXPnmjZt2pgmTZo4/+nv3bvXVK1a1Vx11VUmKyvLbNiwwdx3330mOTnZZGVlGWOM+eyzz8xbb71l1q5dazZu3Ghee+01k5aWZh577DGnH8uXLzdNmzY1O3bsKNC/uXPnGklm/fr1Rfo+ceJE895775n169eb9evXm5EjR5qEhAQzfvz4EjEuxhjTt29fc+aZZ5rFixebtWvXmssuu8y0aNHC+W9ox44dpmnTpmb58uXOOrfddpupV6+emT9/vlm5cqXp3Lmz6dy5s7M8NzfXnHXWWaZ3794mKyvLzJo1y2RkZJiHH3444nGJ57HJzs42HTt2NC1btjQ///yz+fXXX50f92d4gpmLpW1cfv75ZzNixAizcuVKs2XLFvPpp5+aRo0amW7dujl1nqpzxm3jxo3G5XKZmTNnFul7aZgzxhjz9ttvm9TU1CLvlhjj/fx78cUXm3POOccsX77cLFq0yDRp0sQMGDDAWf7nn3+aGjVqmJtuusmsW7fOfPDBByYtLc28+eabEY9LPI/Njh07zOmnn2569uxpduzYUeA841YanptCHZclS5aYF1980WRlZZlNmzaZyZMnm4yMDDNw4EBnnVN1zrjZyDMlInh+9dVXRlKRn0GDBpkjR46Y3r17m4yMDJOcnGzq169vbrnllgKXXDHGmMzMTNO7d29TpUoVU6FCBdOpU6cCnwubOXOmad26tSlfvrwpV66cadWqlXnjjTcKvD3h7seWLVsK1D1gwADTpUsXr32fOHGiad68uUlLSzPp6emmQ4cOBS4zFO/jYszJsDR06FBTqVIlU6VKFdOvXz+zbds2Z7n7EgtfffWV89jRo0fN7bffbipXrmzS0tJMv379Cpz0jDFm69at5pJLLjFly5Y11apVM/fee2+BSwqVxrHx1S/PeRXMXCxt47Jt2zbTrVs3U6VKFVOmTBlz+umnm/vvv7/I20mn4pxxe/jhh03dunW9zoPSMGeMMaZz587m+uuv99sPz/Pvvn37zIABA0z58uVNenq6GTJkiDl48GCB9b799lvTtWtXU6ZMGVOnTh3z7LPPRjwmhfsUb2MzYcIEn+cZt9Lw3BTquKxatcp07NjRVKxY0aSmpprmzZubp59+usjHUU7FOeNmI8+4jLF0vQ0AAACc0krlZzwBAAAQfwieAAAAsILgCQAAACsIngAAALCC4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCaDU2rp1q1wulxo0aFDcXYlYfn6+2rVrp5o1a+rw4cNh1zN58mS5XC699tprUewdAASH4AmgxGrQoIFcLpe2bt1a3F2JuXHjxmnVqlX65z//qXLlyoVdz/XXX6+WLVvqn//8p/bv3x/FHgJAYARPAKVWnTp1tH79es2bN6+4uxKRo0eP6v/+7/9Uu3ZtDRs2LKK6EhIS9Pjjj2v//v166qmnotRDAAgOwRNAqZWcnKxmzZqpcePGxd2ViEyePFl79+7VwIEDlZycHHF9V1xxhTIyMjRu3DgdOnQoCj0EgOAQPAGUOBMnTpTL5dIvv/wiSWrYsKFcLpfzs2DBAkn+P+PpLiudDHYdOnRQ+fLllZGRoQEDBmjbtm2SJGOMXn31VbVu3VrlypVTtWrVNHjwYO3Zs8dn/3766Sfdeuutaty4sVJTU1WxYkV169ZNkydPDmt7X331VUnS4MGDvS7fuHGjhg4dqoYNG6pMmTIqX7686tevrz59+mjChAlFyicnJ+v666/XgQMH9N///jesPgFAOFzGGFPcnQCAUCxatEhvv/22PvroIx0+fFhXX321ypcv7yx/6KGH1KxZM23dulUNGzZU/fr1i3wO1B06H3roIY0ePVrdunVTlSpVtGLFCm3btk1169bVt99+q9tuu02fffaZevToobJly2rx4sXas2ePzj77bGVmZiolJaVAvR9++KEGDhyoY8eOqVmzZmrevLmys7O1fPlyHT58WEOGDNH48eOD3tYtW7aoUaNGOu2007R9+/Yiy9etW6dzzz1XBw4cUNOmTXXmmWcqMTFRO3bs0Nq1a9W4cWNlZWUVWe+LL77QZZddpt69e2v27NlB9wcAImIAoISqX7++kWS2bNnidfmWLVuMJFO/fv0iyyQZSaZq1aomKyvLefzIkSOma9euRpJp2bKlady4sdm6dauzfO/eveb00083kszkyZML1Pndd9+ZMmXKmNTUVDN16tQCy7Zu3WpatmxpJJl33nkn6G18++23jSRzzTXXeF0+ZMgQI8k89dRTRZYdOXLELFy40Ot6+/btMy6Xy6SlpZnjx48H3R8AiARvtQM4pY0YMUKtWrVy/i5btqz+8Y9/SJLWrl2rl19+WfXr13eWV6tWTcOHD5ekIl9aGjlypI4fP66nnnpKV111VYFl9evX17hx4yRJL7/8ctD9W7NmjSSpefPmXpf/9ttvkqRLL720yLKyZcuqW7duXterUqWKatasqSNHjujHH38Muj8AEAmCJ4BTmrfA1qRJE0lSUlKSevfu7XP5rl27nMfy8/M1c+ZMSdK1117rta127dqpfPnyWrNmjY4dOxZU/9zBsmrVql6Xd+jQQZI0fPhwzZ49O+h6Pet0twEAsUbwBHBKq1evXpHH3J8XrVWrlpKSkoosr1ChgiQVCHn79u3TgQMHJEl169Yt8GUn909CQoIOHTqk/Px87du3L6j+ZWdnS5LS09O9Lr///vvVq1cvLV++XBdffLHS09PVvn173XvvvcrMzPRbt7vOP/74I6i+AECkip5RAeAUkpDg+/9vf8sKy8/Pd34fNGhQwPJlypQJqt5KlSpJkhNqC0tLS9OcOXOUmZmpWbNmacmSJVqyZIlWrlypMWPG6Pbbb9d//vMfr+u6Q23lypWD6gsARIrgCQBRUK1aNZUtW1ZHjx7V6NGjVa1atajUW716dUkK+App+/bt1b59e0lSbm6uPvnkEw0cOFCvvfaa+vfvr/PPP7/IOu46a9SoEZW+AkAgvNUOoMRyX8ooNze3mHsiJSYm6sILL5QkTZkyJWr1tmnTRpL0ww8/BL1OUlKS+vfvr4suukiSvF5Oad++fdq9e7fS0tJ8fnEJAKKN4AmgxDrttNMkSd9//30x9+Skxx9/XCkpKbr//vv1zjvvFHj73W3dunWaNm1a0HW6X6lcunSp1+WvvfaaNmzYUOTx3bt3a+XKlZJU4Fv5bkuWLJEkde3aNSp3QwKAYBA8AZRYV199tSTpxhtv1NVXX62//vWv+utf/+o1iNnQpk0b5+5EgwcPVv369XXRRRfpxhtv1KWXXqq6deuqZcuWIb0i2rBhQ5199tnauXOn1q9fX2T52LFj1axZMzVq1EhXXHGFbrzxRl100UVq1KiRduzYoQsuuEBXXHFFkfXmzp0rSbryyivD21gACAOf8QRQYg0fPlwHDx7U5MmTNWPGDOdb5jfeeKOaNm1aLH265ppr1L59e7388suaM2eOFi9erLy8PNWoUUOnn3667rzzTvXv3z+kOu+8804NGzZMEydO1HPPPVdg2ciRI/XFF19o2bJlWrZsmbKzs1W9enV17NhRQ4YM0YABA4p8Mz8nJ0fvvfee0tPTddNNN0W8zQAQLG6ZCQBx7siRI2rQoIGSkpK0devWIrfpDNXUqVPVv39/3XPPPRozZkyUegkAgfFWOwDEubS0NI0cOVK//vqrxo4dG1Fd+fn5evLJJ1WlShU9+uijUeohAASHVzwBoATIz89Xhw4dtGPHDm3atEnlypULq57Jkyfrpptu0n/+8x/dfvvtUe4lAPhH8AQAAIAVvNUOAAAAKwieAAAAsILgCQAAACsIngAAALCC4AkAAAArCJ4AAACwguAJAAAAKwieAAAAsILgCQAAACv+P+7uGJDO16qlAAAAAElFTkSuQmCC\n", "text/plain": [ "
    " ] @@ -3648,10 +3648,10 @@ "id": "b1bfb6b1", "metadata": { "papermill": { - "duration": 0.062341, - "end_time": "2023-01-24T16:50:40.107665", + "duration": 0.052013, + "end_time": "2023-01-25T18:56:16.217979", "exception": false, - "start_time": "2023-01-24T16:50:40.045324", + "start_time": "2023-01-25T18:56:16.165966", "status": "completed" }, "tags": [] @@ -3666,16 +3666,16 @@ "id": "5b1096d1", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:50:40.235902Z", - "iopub.status.busy": "2023-01-24T16:50:40.235335Z", - "iopub.status.idle": "2023-01-24T16:50:41.803735Z", - "shell.execute_reply": "2023-01-24T16:50:41.803035Z" + "iopub.execute_input": "2023-01-25T18:56:16.326069Z", + "iopub.status.busy": "2023-01-25T18:56:16.325384Z", + "iopub.status.idle": "2023-01-25T18:56:18.813599Z", + "shell.execute_reply": "2023-01-25T18:56:18.812612Z" }, "papermill": { - "duration": 1.633982, - "end_time": "2023-01-24T16:50:41.805541", + "duration": 2.545194, + "end_time": "2023-01-25T18:56:18.816230", "exception": false, - "start_time": "2023-01-24T16:50:40.171559", + "start_time": "2023-01-25T18:56:16.271036", "status": "completed" }, "tags": [] @@ -3954,10 +3954,10 @@ "id": "b86845dd", "metadata": { "papermill": { - "duration": 0.062411, - "end_time": "2023-01-24T16:50:41.931644", + "duration": 0.062257, + "end_time": "2023-01-25T18:56:18.933980", "exception": false, - "start_time": "2023-01-24T16:50:41.869233", + "start_time": "2023-01-25T18:56:18.871723", "status": "completed" }, "tags": [] @@ -3972,16 +3972,16 @@ "id": "3d6b45d3", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:50:42.060017Z", - "iopub.status.busy": "2023-01-24T16:50:42.059290Z", - "iopub.status.idle": "2023-01-24T16:50:42.110768Z", - "shell.execute_reply": "2023-01-24T16:50:42.110070Z" + "iopub.execute_input": "2023-01-25T18:56:19.051741Z", + "iopub.status.busy": "2023-01-25T18:56:19.051366Z", + "iopub.status.idle": "2023-01-25T18:56:19.137292Z", + "shell.execute_reply": "2023-01-25T18:56:19.136311Z" }, "papermill": { - "duration": 0.117534, - "end_time": "2023-01-24T16:50:42.112396", + "duration": 0.146531, + "end_time": "2023-01-25T18:56:19.140492", "exception": false, - "start_time": "2023-01-24T16:50:41.994862", + "start_time": "2023-01-25T18:56:18.993961", "status": "completed" }, "tags": [] @@ -4233,10 +4233,10 @@ "id": "7effe272", "metadata": { "papermill": { - "duration": 0.06281, - "end_time": "2023-01-24T16:50:42.239355", + "duration": 0.057574, + "end_time": "2023-01-25T18:56:19.254145", "exception": false, - "start_time": "2023-01-24T16:50:42.176545", + "start_time": "2023-01-25T18:56:19.196571", "status": "completed" }, "tags": [] @@ -4253,16 +4253,16 @@ "id": "6791a12f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:50:42.399763Z", - "iopub.status.busy": "2023-01-24T16:50:42.399186Z", - "iopub.status.idle": "2023-01-24T16:50:43.853630Z", - "shell.execute_reply": "2023-01-24T16:50:43.852924Z" + "iopub.execute_input": "2023-01-25T18:56:19.365410Z", + "iopub.status.busy": "2023-01-25T18:56:19.365033Z", + "iopub.status.idle": "2023-01-25T18:56:21.251720Z", + "shell.execute_reply": "2023-01-25T18:56:21.250665Z" }, "papermill": { - "duration": 1.520452, - "end_time": "2023-01-24T16:50:43.855460", + "duration": 1.945628, + "end_time": "2023-01-25T18:56:21.253973", "exception": false, - "start_time": "2023-01-24T16:50:42.335008", + "start_time": "2023-01-25T18:56:19.308345", "status": "completed" }, "tags": [] @@ -4681,7 +4681,7 @@ "Coordinates:\n", " * stimulus_presentation_id (stimulus_presentation_id) int64 3647 .....\n", " * time_relative_to_stimulus_onset (time_relative_to_stimulus_onset) float64 ...\n", - " * unit_id (unit_id) int64 951814884 ... 951814312
  • " ], "text/plain": [ "
  • " ], "text/plain": [ "\n", "\n", "
    \n", - " \n", + " \n", "
    \n", - " \n", + " oninput=\"animb68742e6a8b347f4a90854acfb618814.set_frame(parseInt(this.value));\">\n", "
    \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", "
    \n", - "
    \n", - " \n", - " \n", - " Once\n", + " \n", - " \n", - " Loop\n", + " \n", - " \n", + " \n", "
    \n", "
    \n", "
    \n", @@ -6669,9 +6669,9 @@ " /* Instantiate the Animation class. */\n", " /* The IDs given should match those used in the template above. */\n", " (function() {\n", - " var img_id = \"_anim_imgfbb7d60173454364a4a5b6af5d5c56b9\";\n", - " var slider_id = \"_anim_sliderfbb7d60173454364a4a5b6af5d5c56b9\";\n", - " var loop_select_id = \"_anim_loop_selectfbb7d60173454364a4a5b6af5d5c56b9\";\n", + " var img_id = \"_anim_imgb68742e6a8b347f4a90854acfb618814\";\n", + " var slider_id = \"_anim_sliderb68742e6a8b347f4a90854acfb618814\";\n", + " var loop_select_id = \"_anim_loop_selectb68742e6a8b347f4a90854acfb618814\";\n", " var frames = new Array(500);\n", " \n", " frames[0] = \"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAoAAAAHgCAYAAAA10dzkAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90\\\n", @@ -150068,7 +150068,7 @@ " /* set a timeout to make sure all the above elements are created before\n", " the object is initialized. */\n", " setTimeout(function() {\n", - " animfbb7d60173454364a4a5b6af5d5c56b9 = new Animation(frames, img_id, slider_id, 33.0,\n", + " animb68742e6a8b347f4a90854acfb618814 = new Animation(frames, img_id, slider_id, 33.0,\n", " loop_select_id);\n", " }, 0);\n", " })()\n", @@ -150094,10 +150094,10 @@ "id": "4955d182", "metadata": { "papermill": { - "duration": 0.318061, - "end_time": "2023-01-24T16:51:40.611060", + "duration": 0.344907, + "end_time": "2023-01-25T18:57:29.366591", "exception": false, - "start_time": "2023-01-24T16:51:40.292999", + "start_time": "2023-01-25T18:57:29.021684", "status": "completed" }, "tags": [] @@ -150112,16 +150112,16 @@ "id": "a2f8ad04", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:51:41.245234Z", - "iopub.status.busy": "2023-01-24T16:51:41.244823Z", - "iopub.status.idle": "2023-01-24T16:51:42.100604Z", - "shell.execute_reply": "2023-01-24T16:51:42.099942Z" + "iopub.execute_input": "2023-01-25T18:57:30.035654Z", + "iopub.status.busy": "2023-01-25T18:57:30.034604Z", + "iopub.status.idle": "2023-01-25T18:57:31.295977Z", + "shell.execute_reply": "2023-01-25T18:57:31.294982Z" }, "papermill": { - "duration": 1.175008, - "end_time": "2023-01-24T16:51:42.102379", + "duration": 1.60294, + "end_time": "2023-01-25T18:57:31.298183", "exception": false, - "start_time": "2023-01-24T16:51:40.927371", + "start_time": "2023-01-25T18:57:29.695243", "status": "completed" }, "tags": [] @@ -150346,16 +150346,16 @@ "id": "7ba5a498", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:51:43.055116Z", - "iopub.status.busy": "2023-01-24T16:51:43.054355Z", - "iopub.status.idle": "2023-01-24T16:51:43.456390Z", - "shell.execute_reply": "2023-01-24T16:51:43.455653Z" + "iopub.execute_input": "2023-01-25T18:57:32.851682Z", + "iopub.status.busy": "2023-01-25T18:57:32.851223Z", + "iopub.status.idle": "2023-01-25T18:57:33.345341Z", + "shell.execute_reply": "2023-01-25T18:57:33.344368Z" }, "papermill": { - "duration": 1.039607, - "end_time": "2023-01-24T16:51:43.458007", + "duration": 0.823441, + "end_time": "2023-01-25T18:57:33.347733", "exception": false, - "start_time": "2023-01-24T16:51:42.418400", + "start_time": "2023-01-25T18:57:32.524292", "status": "completed" }, "tags": [] @@ -150382,10 +150382,10 @@ "id": "dd0d0f5d", "metadata": { "papermill": { - "duration": 0.316831, - "end_time": "2023-01-24T16:51:44.090412", + "duration": 0.326401, + "end_time": "2023-01-25T18:57:34.015679", "exception": false, - "start_time": "2023-01-24T16:51:43.773581", + "start_time": "2023-01-25T18:57:33.689278", "status": "completed" }, "tags": [] @@ -150402,16 +150402,16 @@ "id": "e972efc6", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:51:44.727564Z", - "iopub.status.busy": "2023-01-24T16:51:44.726803Z", - "iopub.status.idle": "2023-01-24T16:51:44.735876Z", - "shell.execute_reply": "2023-01-24T16:51:44.735327Z" + "iopub.execute_input": "2023-01-25T18:57:34.668797Z", + "iopub.status.busy": "2023-01-25T18:57:34.668193Z", + "iopub.status.idle": "2023-01-25T18:57:34.680827Z", + "shell.execute_reply": "2023-01-25T18:57:34.679953Z" }, "papermill": { - "duration": 0.3289, - "end_time": "2023-01-24T16:51:44.737386", + "duration": 0.341174, + "end_time": "2023-01-25T18:57:34.683084", "exception": false, - "start_time": "2023-01-24T16:51:44.408486", + "start_time": "2023-01-25T18:57:34.341910", "status": "completed" }, "tags": [] @@ -150532,16 +150532,16 @@ "id": "6a9af9c4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:51:45.382585Z", - "iopub.status.busy": "2023-01-24T16:51:45.381987Z", - "iopub.status.idle": "2023-01-24T16:51:45.386680Z", - "shell.execute_reply": "2023-01-24T16:51:45.385509Z" + "iopub.execute_input": "2023-01-25T18:57:35.335214Z", + "iopub.status.busy": "2023-01-25T18:57:35.334654Z", + "iopub.status.idle": "2023-01-25T18:57:35.340934Z", + "shell.execute_reply": "2023-01-25T18:57:35.340070Z" }, "papermill": { - "duration": 0.332929, - "end_time": "2023-01-24T16:51:45.388124", + "duration": 0.336989, + "end_time": "2023-01-25T18:57:35.343031", "exception": false, - "start_time": "2023-01-24T16:51:45.055195", + "start_time": "2023-01-25T18:57:35.006042", "status": "completed" }, "scrolled": false, @@ -150563,10 +150563,10 @@ "id": "bbc37d2a", "metadata": { "papermill": { - "duration": 0.316467, - "end_time": "2023-01-24T16:51:46.021146", + "duration": 0.323977, + "end_time": "2023-01-25T18:57:35.988427", "exception": false, - "start_time": "2023-01-24T16:51:45.704679", + "start_time": "2023-01-25T18:57:35.664450", "status": "completed" }, "tags": [] @@ -150581,16 +150581,16 @@ "id": "61a89971", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:51:46.653861Z", - "iopub.status.busy": "2023-01-24T16:51:46.653287Z", - "iopub.status.idle": "2023-01-24T16:51:46.668956Z", - "shell.execute_reply": "2023-01-24T16:51:46.668242Z" + "iopub.execute_input": "2023-01-25T18:57:36.645534Z", + "iopub.status.busy": "2023-01-25T18:57:36.644970Z", + "iopub.status.idle": "2023-01-25T18:57:36.668804Z", + "shell.execute_reply": "2023-01-25T18:57:36.667797Z" }, "papermill": { - "duration": 0.333355, - "end_time": "2023-01-24T16:51:46.670526", + "duration": 0.355843, + "end_time": "2023-01-25T18:57:36.670898", "exception": false, - "start_time": "2023-01-24T16:51:46.337171", + "start_time": "2023-01-25T18:57:36.315055", "status": "completed" }, "tags": [] @@ -150628,16 +150628,16 @@ "id": "cac48fda", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:51:47.304132Z", - "iopub.status.busy": "2023-01-24T16:51:47.303540Z", - "iopub.status.idle": "2023-01-24T16:51:47.354338Z", - "shell.execute_reply": "2023-01-24T16:51:47.353747Z" + "iopub.execute_input": "2023-01-25T18:57:37.333015Z", + "iopub.status.busy": "2023-01-25T18:57:37.332285Z", + "iopub.status.idle": "2023-01-25T18:57:37.396569Z", + "shell.execute_reply": "2023-01-25T18:57:37.395012Z" }, "papermill": { - "duration": 0.369479, - "end_time": "2023-01-24T16:51:47.356163", + "duration": 0.404785, + "end_time": "2023-01-25T18:57:37.399170", "exception": false, - "start_time": "2023-01-24T16:51:46.986684", + "start_time": "2023-01-25T18:57:36.994385", "status": "completed" }, "tags": [] @@ -150686,10 +150686,10 @@ "id": "b1f5fd6d", "metadata": { "papermill": { - "duration": 0.31714, - "end_time": "2023-01-24T16:51:47.989659", + "duration": 0.32449, + "end_time": "2023-01-25T18:57:38.047538", "exception": false, - "start_time": "2023-01-24T16:51:47.672519", + "start_time": "2023-01-25T18:57:37.723048", "status": "completed" }, "tags": [] @@ -150706,19 +150706,19 @@ "id": "64903ea4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:51:48.628482Z", - "iopub.status.busy": "2023-01-24T16:51:48.627777Z", - "iopub.status.idle": "2023-01-24T16:51:48.631324Z", - "shell.execute_reply": "2023-01-24T16:51:48.630794Z" + "iopub.execute_input": "2023-01-25T18:57:38.698757Z", + "iopub.status.busy": "2023-01-25T18:57:38.697781Z", + "iopub.status.idle": "2023-01-25T18:57:38.702940Z", + "shell.execute_reply": "2023-01-25T18:57:38.702103Z" }, "local_metadata": { "scrolled": false }, "papermill": { - "duration": 0.324471, - "end_time": "2023-01-24T16:51:48.632736", + "duration": 0.328996, + "end_time": "2023-01-25T18:57:38.705167", "exception": false, - "start_time": "2023-01-24T16:51:48.308265", + "start_time": "2023-01-25T18:57:38.376171", "status": "completed" }, "remote_metadata": {}, @@ -150738,16 +150738,16 @@ "id": "dbbec1ca", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:51:49.276145Z", - "iopub.status.busy": "2023-01-24T16:51:49.275569Z", - "iopub.status.idle": "2023-01-24T16:51:49.375142Z", - "shell.execute_reply": "2023-01-24T16:51:49.374446Z" + "iopub.execute_input": "2023-01-25T18:57:39.386277Z", + "iopub.status.busy": "2023-01-25T18:57:39.385560Z", + "iopub.status.idle": "2023-01-25T18:57:39.501492Z", + "shell.execute_reply": "2023-01-25T18:57:39.500519Z" }, "papermill": { - "duration": 0.427782, - "end_time": "2023-01-24T16:51:49.377176", + "duration": 0.443274, + "end_time": "2023-01-25T18:57:39.503574", "exception": false, - "start_time": "2023-01-24T16:51:48.949394", + "start_time": "2023-01-25T18:57:39.060300", "status": "completed" }, "tags": [] @@ -150787,10 +150787,10 @@ "id": "018a578a", "metadata": { "papermill": { - "duration": 0.320636, - "end_time": "2023-01-24T16:51:50.022900", + "duration": 0.330672, + "end_time": "2023-01-25T18:57:40.157982", "exception": false, - "start_time": "2023-01-24T16:51:49.702264", + "start_time": "2023-01-25T18:57:39.827310", "status": "completed" }, "tags": [] @@ -150903,18 +150903,18 @@ }, "papermill": { "default_parameters": {}, - "duration": 440.245228, - "end_time": "2023-01-24T16:51:51.677805", + "duration": 426.364382, + "end_time": "2023-01-25T18:57:43.310636", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/ecephys_session.ipynb", - "output_path": "/tmp/tmpiq895oet/scratch_nb.ipynb", + "output_path": "/tmp/tmp9s8lhe90/scratch_nb.ipynb", "parameters": { "DOWNLOAD_LFP": false, - "output_dir": "/tmp/tmpiq895oet", + "output_dir": "/tmp/tmp9s8lhe90", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T16:44:31.432577", + "start_time": "2023-01-25T18:50:36.946254", "version": "2.4.0" }, "vscode": { diff --git a/doc_template/examples_root/examples/nb/image_download.ipynb b/doc_template/examples_root/examples/nb/image_download.ipynb index c427137ed..df471463a 100644 --- a/doc_template/examples_root/examples/nb/image_download.ipynb +++ b/doc_template/examples_root/examples/nb/image_download.ipynb @@ -5,10 +5,10 @@ "id": "2456f682", "metadata": { "papermill": { - "duration": 0.008274, - "end_time": "2023-01-24T17:28:27.995376", + "duration": 0.011283, + "end_time": "2023-01-25T19:40:37.353752", "exception": false, - "start_time": "2023-01-24T17:28:27.987102", + "start_time": "2023-01-25T19:40:37.342469", "status": "completed" }, "tags": [] @@ -22,10 +22,10 @@ "id": "aa152753", "metadata": { "papermill": { - "duration": 0.007038, - "end_time": "2023-01-24T17:28:28.009791", + "duration": 0.009264, + "end_time": "2023-01-25T19:40:37.372545", "exception": false, - "start_time": "2023-01-24T17:28:28.002753", + "start_time": "2023-01-25T19:40:37.363281", "status": "completed" }, "tags": [] @@ -55,16 +55,16 @@ "id": "feb9508f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:28.025535Z", - "iopub.status.busy": "2023-01-24T17:28:28.024965Z", - "iopub.status.idle": "2023-01-24T17:28:29.989905Z", - "shell.execute_reply": "2023-01-24T17:28:29.989232Z" + "iopub.execute_input": "2023-01-25T19:40:37.392554Z", + "iopub.status.busy": "2023-01-25T19:40:37.391977Z", + "iopub.status.idle": "2023-01-25T19:40:40.093803Z", + "shell.execute_reply": "2023-01-25T19:40:40.092782Z" }, "papermill": { - "duration": 1.975003, - "end_time": "2023-01-24T17:28:29.991777", + "duration": 2.714964, + "end_time": "2023-01-25T19:40:40.096506", "exception": false, - "start_time": "2023-01-24T17:28:28.016774", + "start_time": "2023-01-25T19:40:37.381542", "status": "completed" }, "tags": [] @@ -93,10 +93,10 @@ "id": "33e64839", "metadata": { "papermill": { - "duration": 0.007372, - "end_time": "2023-01-24T17:28:30.006952", + "duration": 0.009045, + "end_time": "2023-01-25T19:40:40.115705", "exception": false, - "start_time": "2023-01-24T17:28:29.999580", + "start_time": "2023-01-25T19:40:40.106660", "status": "completed" }, "tags": [] @@ -111,16 +111,16 @@ "id": "8c6564d3", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:30.023023Z", - "iopub.status.busy": "2023-01-24T17:28:30.022203Z", - "iopub.status.idle": "2023-01-24T17:28:30.027663Z", - "shell.execute_reply": "2023-01-24T17:28:30.027024Z" + "iopub.execute_input": "2023-01-25T19:40:40.135774Z", + "iopub.status.busy": "2023-01-25T19:40:40.134857Z", + "iopub.status.idle": "2023-01-25T19:40:40.141776Z", + "shell.execute_reply": "2023-01-25T19:40:40.140997Z" }, "papermill": { - "duration": 0.015056, - "end_time": "2023-01-24T17:28:30.029215", + "duration": 0.019655, + "end_time": "2023-01-25T19:40:40.143868", "exception": false, - "start_time": "2023-01-24T17:28:30.014159", + "start_time": "2023-01-25T19:40:40.124213", "status": "completed" }, "tags": [] @@ -152,10 +152,10 @@ "id": "0ce82812", "metadata": { "papermill": { - "duration": 0.007082, - "end_time": "2023-01-24T17:28:30.043307", + "duration": 0.009382, + "end_time": "2023-01-25T19:40:40.161950", "exception": false, - "start_time": "2023-01-24T17:28:30.036225", + "start_time": "2023-01-25T19:40:40.152568", "status": "completed" }, "tags": [] @@ -170,16 +170,16 @@ "id": "9e1dd281", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:30.058976Z", - "iopub.status.busy": "2023-01-24T17:28:30.058321Z", - "iopub.status.idle": "2023-01-24T17:28:30.061735Z", - "shell.execute_reply": "2023-01-24T17:28:30.061104Z" + "iopub.execute_input": "2023-01-25T19:40:40.181900Z", + "iopub.status.busy": "2023-01-25T19:40:40.181266Z", + "iopub.status.idle": "2023-01-25T19:40:40.185929Z", + "shell.execute_reply": "2023-01-25T19:40:40.185160Z" }, "papermill": { - "duration": 0.012915, - "end_time": "2023-01-24T17:28:30.063204", + "duration": 0.01769, + "end_time": "2023-01-25T19:40:40.188475", "exception": false, - "start_time": "2023-01-24T17:28:30.050289", + "start_time": "2023-01-25T19:40:40.170785", "status": "completed" }, "tags": [] @@ -195,10 +195,10 @@ "id": "7319ea7e", "metadata": { "papermill": { - "duration": 0.007104, - "end_time": "2023-01-24T17:28:30.077423", + "duration": 0.009421, + "end_time": "2023-01-25T19:40:40.206906", "exception": false, - "start_time": "2023-01-24T17:28:30.070319", + "start_time": "2023-01-25T19:40:40.197485", "status": "completed" }, "tags": [] @@ -217,16 +217,16 @@ "id": "352963a8", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:30.092988Z", - "iopub.status.busy": "2023-01-24T17:28:30.092490Z", - "iopub.status.idle": "2023-01-24T17:28:30.096029Z", - "shell.execute_reply": "2023-01-24T17:28:30.095124Z" + "iopub.execute_input": "2023-01-25T19:40:40.227150Z", + "iopub.status.busy": "2023-01-25T19:40:40.226357Z", + "iopub.status.idle": "2023-01-25T19:40:40.230618Z", + "shell.execute_reply": "2023-01-25T19:40:40.229840Z" }, "papermill": { - "duration": 0.012986, - "end_time": "2023-01-24T17:28:30.097406", + "duration": 0.016865, + "end_time": "2023-01-25T19:40:40.232665", "exception": false, - "start_time": "2023-01-24T17:28:30.084420", + "start_time": "2023-01-25T19:40:40.215800", "status": "completed" }, "tags": [ @@ -244,16 +244,16 @@ "id": "e1370bf8", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:30.132683Z", - "iopub.status.busy": "2023-01-24T17:28:30.132245Z", - "iopub.status.idle": "2023-01-24T17:28:30.135484Z", - "shell.execute_reply": "2023-01-24T17:28:30.134878Z" + "iopub.execute_input": "2023-01-25T19:40:40.278861Z", + "iopub.status.busy": "2023-01-25T19:40:40.278107Z", + "iopub.status.idle": "2023-01-25T19:40:40.282490Z", + "shell.execute_reply": "2023-01-25T19:40:40.281629Z" }, "papermill": { - "duration": 0.012614, - "end_time": "2023-01-24T17:28:30.136931", + "duration": 0.016831, + "end_time": "2023-01-25T19:40:40.284582", "exception": false, - "start_time": "2023-01-24T17:28:30.124317", + "start_time": "2023-01-25T19:40:40.267751", "status": "completed" }, "tags": [] @@ -269,10 +269,10 @@ "id": "30e3f265", "metadata": { "papermill": { - "duration": 0.007257, - "end_time": "2023-01-24T17:28:30.151158", + "duration": 0.008821, + "end_time": "2023-01-25T19:40:40.302126", "exception": false, - "start_time": "2023-01-24T17:28:30.143901", + "start_time": "2023-01-25T19:40:40.293305", "status": "completed" }, "tags": [] @@ -287,16 +287,16 @@ "id": "50bd3e9a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:30.166697Z", - "iopub.status.busy": "2023-01-24T17:28:30.166101Z", - "iopub.status.idle": "2023-01-24T17:28:30.169396Z", - "shell.execute_reply": "2023-01-24T17:28:30.168772Z" + "iopub.execute_input": "2023-01-25T19:40:40.323582Z", + "iopub.status.busy": "2023-01-25T19:40:40.323042Z", + "iopub.status.idle": "2023-01-25T19:40:40.327290Z", + "shell.execute_reply": "2023-01-25T19:40:40.326495Z" }, "papermill": { - "duration": 0.012683, - "end_time": "2023-01-24T17:28:30.170867", + "duration": 0.018056, + "end_time": "2023-01-25T19:40:40.329350", "exception": false, - "start_time": "2023-01-24T17:28:30.158184", + "start_time": "2023-01-25T19:40:40.311294", "status": "completed" }, "tags": [] @@ -311,10 +311,10 @@ "id": "1992a6b3", "metadata": { "papermill": { - "duration": 0.007029, - "end_time": "2023-01-24T17:28:30.184922", + "duration": 0.0095, + "end_time": "2023-01-25T19:40:40.348508", "exception": false, - "start_time": "2023-01-24T17:28:30.177893", + "start_time": "2023-01-25T19:40:40.339008", "status": "completed" }, "tags": [] @@ -329,16 +329,16 @@ "id": "052c2a61", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:30.200234Z", - "iopub.status.busy": "2023-01-24T17:28:30.199763Z", - "iopub.status.idle": "2023-01-24T17:28:31.206058Z", - "shell.execute_reply": "2023-01-24T17:28:31.205412Z" + "iopub.execute_input": "2023-01-25T19:40:40.369185Z", + "iopub.status.busy": "2023-01-25T19:40:40.368642Z", + "iopub.status.idle": "2023-01-25T19:40:41.410034Z", + "shell.execute_reply": "2023-01-25T19:40:41.409156Z" }, "papermill": { - "duration": 1.023768, - "end_time": "2023-01-24T17:28:31.215656", + "duration": 1.061515, + "end_time": "2023-01-25T19:40:41.419417", "exception": false, - "start_time": "2023-01-24T17:28:30.191888", + "start_time": "2023-01-25T19:40:40.357902", "status": "completed" }, "tags": [] @@ -348,7 +348,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 17:28:30,201 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/section_image_download/70945123?downsample=3\n" + "2023-01-25 19:40:40,370 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/section_image_download/70945123?downsample=3\n" ] }, { @@ -373,10 +373,10 @@ "id": "8c0ab6d3", "metadata": { "papermill": { - "duration": 0.020518, - "end_time": "2023-01-24T17:28:31.256921", + "duration": 0.021586, + "end_time": "2023-01-25T19:40:41.463535", "exception": false, - "start_time": "2023-01-24T17:28:31.236403", + "start_time": "2023-01-25T19:40:41.441949", "status": "completed" }, "tags": [] @@ -393,16 +393,16 @@ "id": "4d44fef1", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:31.300317Z", - "iopub.status.busy": "2023-01-24T17:28:31.299502Z", - "iopub.status.idle": "2023-01-24T17:28:31.303180Z", - "shell.execute_reply": "2023-01-24T17:28:31.302641Z" + "iopub.execute_input": "2023-01-25T19:40:41.509673Z", + "iopub.status.busy": "2023-01-25T19:40:41.509025Z", + "iopub.status.idle": "2023-01-25T19:40:41.513573Z", + "shell.execute_reply": "2023-01-25T19:40:41.512789Z" }, "papermill": { - "duration": 0.026927, - "end_time": "2023-01-24T17:28:31.304504", + "duration": 0.030926, + "end_time": "2023-01-25T19:40:41.515621", "exception": false, - "start_time": "2023-01-24T17:28:31.277577", + "start_time": "2023-01-25T19:40:41.484695", "status": "completed" }, "tags": [] @@ -419,10 +419,10 @@ "id": "19d5c1f0", "metadata": { "papermill": { - "duration": 0.020803, - "end_time": "2023-01-24T17:28:31.345892", + "duration": 0.021326, + "end_time": "2023-01-25T19:40:41.558411", "exception": false, - "start_time": "2023-01-24T17:28:31.325089", + "start_time": "2023-01-25T19:40:41.537085", "status": "completed" }, "tags": [] @@ -437,16 +437,16 @@ "id": "3513f7b2", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:31.388665Z", - "iopub.status.busy": "2023-01-24T17:28:31.388108Z", - "iopub.status.idle": "2023-01-24T17:28:31.510974Z", - "shell.execute_reply": "2023-01-24T17:28:31.509922Z" + "iopub.execute_input": "2023-01-25T19:40:41.604309Z", + "iopub.status.busy": "2023-01-25T19:40:41.603446Z", + "iopub.status.idle": "2023-01-25T19:40:41.686054Z", + "shell.execute_reply": "2023-01-25T19:40:41.684971Z" }, "papermill": { - "duration": 0.146422, - "end_time": "2023-01-24T17:28:31.512867", + "duration": 0.108809, + "end_time": "2023-01-25T19:40:41.688746", "exception": false, - "start_time": "2023-01-24T17:28:31.366445", + "start_time": "2023-01-25T19:40:41.579937", "status": "completed" }, "tags": [] @@ -461,10 +461,10 @@ "id": "0fabcd7f", "metadata": { "papermill": { - "duration": 0.020704, - "end_time": "2023-01-24T17:28:31.554332", + "duration": 0.021637, + "end_time": "2023-01-25T19:40:41.732512", "exception": false, - "start_time": "2023-01-24T17:28:31.533628", + "start_time": "2023-01-25T19:40:41.710875", "status": "completed" }, "tags": [] @@ -479,16 +479,16 @@ "id": "3b4097f0", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:31.597615Z", - "iopub.status.busy": "2023-01-24T17:28:31.596928Z", - "iopub.status.idle": "2023-01-24T17:28:35.748053Z", - "shell.execute_reply": "2023-01-24T17:28:35.747463Z" + "iopub.execute_input": "2023-01-25T19:40:41.787888Z", + "iopub.status.busy": "2023-01-25T19:40:41.787172Z", + "iopub.status.idle": "2023-01-25T19:40:46.782019Z", + "shell.execute_reply": "2023-01-25T19:40:46.780708Z" }, "papermill": { - "duration": 4.176221, - "end_time": "2023-01-24T17:28:35.751443", + "duration": 5.023949, + "end_time": "2023-01-25T19:40:46.788100", "exception": false, - "start_time": "2023-01-24T17:28:31.575222", + "start_time": "2023-01-25T19:40:41.764151", "status": "completed" }, "tags": [] @@ -498,7 +498,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 17:28:31,598 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/projection_image_download/297225716?downsample=3&range=0,825,0,943,0,4095\n" + "2023-01-25 19:40:41,789 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/projection_image_download/297225716?downsample=3&range=0,825,0,943,0,4095\n" ] }, { @@ -523,10 +523,10 @@ "id": "518a2d76", "metadata": { "papermill": { - "duration": 0.032328, - "end_time": "2023-01-24T17:28:35.817143", + "duration": 0.035494, + "end_time": "2023-01-25T19:40:46.858676", "exception": false, - "start_time": "2023-01-24T17:28:35.784815", + "start_time": "2023-01-25T19:40:46.823182", "status": "completed" }, "tags": [] @@ -541,16 +541,16 @@ "id": "6ae7f50c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:35.883598Z", - "iopub.status.busy": "2023-01-24T17:28:35.883049Z", - "iopub.status.idle": "2023-01-24T17:28:38.575303Z", - "shell.execute_reply": "2023-01-24T17:28:38.574625Z" + "iopub.execute_input": "2023-01-25T19:40:46.925506Z", + "iopub.status.busy": "2023-01-25T19:40:46.924949Z", + "iopub.status.idle": "2023-01-25T19:40:50.053867Z", + "shell.execute_reply": "2023-01-25T19:40:50.052858Z" }, "papermill": { - "duration": 2.727457, - "end_time": "2023-01-24T17:28:38.576927", + "duration": 3.165403, + "end_time": "2023-01-25T19:40:50.056122", "exception": false, - "start_time": "2023-01-24T17:28:35.849470", + "start_time": "2023-01-25T19:40:46.890719", "status": "completed" }, "tags": [] @@ -560,7 +560,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 17:28:35,885 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/projection_image_download/297225716?downsample=3&projection=true\n" + "2023-01-25 19:40:46,927 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/projection_image_download/297225716?downsample=3&projection=true\n" ] }, { @@ -591,10 +591,10 @@ "id": "1bc5c675", "metadata": { "papermill": { - "duration": 0.03555, - "end_time": "2023-01-24T17:28:38.648583", + "duration": 0.036533, + "end_time": "2023-01-25T19:40:50.131276", "exception": false, - "start_time": "2023-01-24T17:28:38.613033", + "start_time": "2023-01-25T19:40:50.094743", "status": "completed" }, "tags": [] @@ -611,16 +611,16 @@ "id": "0449ab15", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:38.720976Z", - "iopub.status.busy": "2023-01-24T17:28:38.720422Z", - "iopub.status.idle": "2023-01-24T17:28:38.724072Z", - "shell.execute_reply": "2023-01-24T17:28:38.723448Z" + "iopub.execute_input": "2023-01-25T19:40:50.207544Z", + "iopub.status.busy": "2023-01-25T19:40:50.206659Z", + "iopub.status.idle": "2023-01-25T19:40:50.211915Z", + "shell.execute_reply": "2023-01-25T19:40:50.211024Z" }, "papermill": { - "duration": 0.041475, - "end_time": "2023-01-24T17:28:38.725580", + "duration": 0.046392, + "end_time": "2023-01-25T19:40:50.213872", "exception": false, - "start_time": "2023-01-24T17:28:38.684105", + "start_time": "2023-01-25T19:40:50.167480", "status": "completed" }, "tags": [] @@ -637,10 +637,10 @@ "id": "f319d69f", "metadata": { "papermill": { - "duration": 0.035515, - "end_time": "2023-01-24T17:28:38.796643", + "duration": 0.040781, + "end_time": "2023-01-25T19:40:50.290711", "exception": false, - "start_time": "2023-01-24T17:28:38.761128", + "start_time": "2023-01-25T19:40:50.249930", "status": "completed" }, "tags": [] @@ -657,16 +657,16 @@ "id": "d2390ece", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:38.869203Z", - "iopub.status.busy": "2023-01-24T17:28:38.868641Z", - "iopub.status.idle": "2023-01-24T17:28:38.871918Z", - "shell.execute_reply": "2023-01-24T17:28:38.871396Z" + "iopub.execute_input": "2023-01-25T19:40:50.368205Z", + "iopub.status.busy": "2023-01-25T19:40:50.367510Z", + "iopub.status.idle": "2023-01-25T19:40:50.371731Z", + "shell.execute_reply": "2023-01-25T19:40:50.370939Z" }, "papermill": { - "duration": 0.041352, - "end_time": "2023-01-24T17:28:38.873437", + "duration": 0.045358, + "end_time": "2023-01-25T19:40:50.373953", "exception": false, - "start_time": "2023-01-24T17:28:38.832085", + "start_time": "2023-01-25T19:40:50.328595", "status": "completed" }, "tags": [] @@ -682,16 +682,16 @@ "id": "0c9bde87", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:38.946044Z", - "iopub.status.busy": "2023-01-24T17:28:38.945365Z", - "iopub.status.idle": "2023-01-24T17:28:40.404982Z", - "shell.execute_reply": "2023-01-24T17:28:40.404389Z" + "iopub.execute_input": "2023-01-25T19:40:50.448824Z", + "iopub.status.busy": "2023-01-25T19:40:50.448270Z", + "iopub.status.idle": "2023-01-25T19:40:52.103852Z", + "shell.execute_reply": "2023-01-25T19:40:52.102849Z" }, "papermill": { - "duration": 1.513814, - "end_time": "2023-01-24T17:28:40.422776", + "duration": 1.712406, + "end_time": "2023-01-25T19:40:52.122801", "exception": false, - "start_time": "2023-01-24T17:28:38.908962", + "start_time": "2023-01-25T19:40:50.410395", "status": "completed" }, "tags": [] @@ -701,7 +701,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 17:28:38,947 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/atlas_image_download/112282603?downsample=6&annotation=false\n" + "2023-01-25 19:40:50,450 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/atlas_image_download/112282603?downsample=6&annotation=false\n" ] }, { @@ -726,10 +726,10 @@ "id": "61073cbf", "metadata": { "papermill": { - "duration": 0.070414, - "end_time": "2023-01-24T17:28:40.565018", + "duration": 0.068206, + "end_time": "2023-01-25T19:40:52.260896", "exception": false, - "start_time": "2023-01-24T17:28:40.494604", + "start_time": "2023-01-25T19:40:52.192690", "status": "completed" }, "tags": [] @@ -744,16 +744,16 @@ "id": "162226fa", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:40.707143Z", - "iopub.status.busy": "2023-01-24T17:28:40.706564Z", - "iopub.status.idle": "2023-01-24T17:28:41.868247Z", - "shell.execute_reply": "2023-01-24T17:28:41.867667Z" + "iopub.execute_input": "2023-01-25T19:40:52.399927Z", + "iopub.status.busy": "2023-01-25T19:40:52.399341Z", + "iopub.status.idle": "2023-01-25T19:40:53.669096Z", + "shell.execute_reply": "2023-01-25T19:40:53.668218Z" }, "papermill": { - "duration": 1.242913, - "end_time": "2023-01-24T17:28:41.878392", + "duration": 1.350379, + "end_time": "2023-01-25T19:40:53.679368", "exception": false, - "start_time": "2023-01-24T17:28:40.635479", + "start_time": "2023-01-25T19:40:52.328989", "status": "completed" }, "tags": [] @@ -763,7 +763,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 17:28:40,708 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/atlas_image_download/112282603?downsample=6&annotation=true\n" + "2023-01-25 19:40:52,402 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/atlas_image_download/112282603?downsample=6&annotation=true\n" ] }, { @@ -792,10 +792,10 @@ "id": "211fe38d", "metadata": { "papermill": { - "duration": 0.091147, - "end_time": "2023-01-24T17:28:42.062153", + "duration": 0.087528, + "end_time": "2023-01-25T19:40:53.854894", "exception": false, - "start_time": "2023-01-24T17:28:41.971006", + "start_time": "2023-01-25T19:40:53.767366", "status": "completed" }, "tags": [] @@ -812,16 +812,16 @@ "id": "5ce37916", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:42.246189Z", - "iopub.status.busy": "2023-01-24T17:28:42.245635Z", - "iopub.status.idle": "2023-01-24T17:28:46.040374Z", - "shell.execute_reply": "2023-01-24T17:28:46.039716Z" + "iopub.execute_input": "2023-01-25T19:40:54.031665Z", + "iopub.status.busy": "2023-01-25T19:40:54.030800Z", + "iopub.status.idle": "2023-01-25T19:40:58.228995Z", + "shell.execute_reply": "2023-01-25T19:40:58.227905Z" }, "papermill": { - "duration": 3.889178, - "end_time": "2023-01-24T17:28:46.042238", + "duration": 4.290549, + "end_time": "2023-01-25T19:40:58.231447", "exception": false, - "start_time": "2023-01-24T17:28:42.153060", + "start_time": "2023-01-25T19:40:53.940898", "status": "completed" }, "tags": [] @@ -831,7 +831,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 17:28:42,247 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/svg_download/112282603\n" + "2023-01-25 19:40:54,033 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/svg_download/112282603\n" ] } ], @@ -848,16 +848,16 @@ "id": "3f525f1a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:46.226961Z", - "iopub.status.busy": "2023-01-24T17:28:46.226365Z", - "iopub.status.idle": "2023-01-24T17:28:46.237002Z", - "shell.execute_reply": "2023-01-24T17:28:46.236460Z" + "iopub.execute_input": "2023-01-25T19:40:58.413653Z", + "iopub.status.busy": "2023-01-25T19:40:58.413083Z", + "iopub.status.idle": "2023-01-25T19:40:58.426314Z", + "shell.execute_reply": "2023-01-25T19:40:58.425058Z" }, "papermill": { - "duration": 0.105326, - "end_time": "2023-01-24T17:28:46.239846", + "duration": 0.10836, + "end_time": "2023-01-25T19:40:58.428803", "exception": false, - "start_time": "2023-01-24T17:28:46.134520", + "start_time": "2023-01-25T19:40:58.320443", "status": "completed" }, "scrolled": false, @@ -886,10 +886,10 @@ "id": "1a04c7c4", "metadata": { "papermill": { - "duration": 0.095577, - "end_time": "2023-01-24T17:28:46.430900", + "duration": 0.090277, + "end_time": "2023-01-25T19:40:58.611169", "exception": false, - "start_time": "2023-01-24T17:28:46.335323", + "start_time": "2023-01-25T19:40:58.520892", "status": "completed" }, "tags": [] @@ -906,16 +906,16 @@ "id": "b849dcac", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:46.622588Z", - "iopub.status.busy": "2023-01-24T17:28:46.622012Z", - "iopub.status.idle": "2023-01-24T17:28:46.834521Z", - "shell.execute_reply": "2023-01-24T17:28:46.833901Z" + "iopub.execute_input": "2023-01-25T19:40:58.794211Z", + "iopub.status.busy": "2023-01-25T19:40:58.793316Z", + "iopub.status.idle": "2023-01-25T19:40:59.028473Z", + "shell.execute_reply": "2023-01-25T19:40:59.027476Z" }, "papermill": { - "duration": 0.310719, - "end_time": "2023-01-24T17:28:46.836584", + "duration": 0.329515, + "end_time": "2023-01-25T19:40:59.031059", "exception": false, - "start_time": "2023-01-24T17:28:46.525865", + "start_time": "2023-01-25T19:40:58.701544", "status": "completed" }, "tags": [] @@ -1153,10 +1153,10 @@ "id": "dab531cb", "metadata": { "papermill": { - "duration": 0.098411, - "end_time": "2023-01-24T17:28:47.033709", + "duration": 0.096005, + "end_time": "2023-01-25T19:40:59.221948", "exception": false, - "start_time": "2023-01-24T17:28:46.935298", + "start_time": "2023-01-25T19:40:59.125943", "status": "completed" }, "tags": [] @@ -1171,16 +1171,16 @@ "id": "e30c314a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:47.233188Z", - "iopub.status.busy": "2023-01-24T17:28:47.232491Z", - "iopub.status.idle": "2023-01-24T17:28:47.237876Z", - "shell.execute_reply": "2023-01-24T17:28:47.237363Z" + "iopub.execute_input": "2023-01-25T19:40:59.413468Z", + "iopub.status.busy": "2023-01-25T19:40:59.412376Z", + "iopub.status.idle": "2023-01-25T19:40:59.419952Z", + "shell.execute_reply": "2023-01-25T19:40:59.419114Z" }, "papermill": { - "duration": 0.107057, - "end_time": "2023-01-24T17:28:47.239523", + "duration": 0.105728, + "end_time": "2023-01-25T19:40:59.422071", "exception": false, - "start_time": "2023-01-24T17:28:47.132466", + "start_time": "2023-01-25T19:40:59.316343", "status": "completed" }, "tags": [] @@ -1211,10 +1211,10 @@ "id": "1f1a1ff4", "metadata": { "papermill": { - "duration": 0.098702, - "end_time": "2023-01-24T17:28:47.436691", + "duration": 0.096028, + "end_time": "2023-01-25T19:40:59.612407", "exception": false, - "start_time": "2023-01-24T17:28:47.337989", + "start_time": "2023-01-25T19:40:59.516379", "status": "completed" }, "tags": [] @@ -1233,16 +1233,16 @@ "id": "6a35e3a7", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:47.636292Z", - "iopub.status.busy": "2023-01-24T17:28:47.635737Z", - "iopub.status.idle": "2023-01-24T17:28:47.639741Z", - "shell.execute_reply": "2023-01-24T17:28:47.639064Z" + "iopub.execute_input": "2023-01-25T19:40:59.804878Z", + "iopub.status.busy": "2023-01-25T19:40:59.803817Z", + "iopub.status.idle": "2023-01-25T19:40:59.809421Z", + "shell.execute_reply": "2023-01-25T19:40:59.808470Z" }, "papermill": { - "duration": 0.105292, - "end_time": "2023-01-24T17:28:47.641215", + "duration": 0.104238, + "end_time": "2023-01-25T19:40:59.811880", "exception": false, - "start_time": "2023-01-24T17:28:47.535923", + "start_time": "2023-01-25T19:40:59.707642", "status": "completed" }, "tags": [] @@ -1261,10 +1261,10 @@ "id": "2f5721f8", "metadata": { "papermill": { - "duration": 0.099284, - "end_time": "2023-01-24T17:28:47.839321", + "duration": 0.109821, + "end_time": "2023-01-25T19:41:00.022969", "exception": false, - "start_time": "2023-01-24T17:28:47.740037", + "start_time": "2023-01-25T19:40:59.913148", "status": "completed" }, "tags": [] @@ -1279,16 +1279,16 @@ "id": "a99b2255", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:48.039320Z", - "iopub.status.busy": "2023-01-24T17:28:48.038584Z", - "iopub.status.idle": "2023-01-24T17:28:48.371399Z", - "shell.execute_reply": "2023-01-24T17:28:48.370694Z" + "iopub.execute_input": "2023-01-25T19:41:00.219053Z", + "iopub.status.busy": "2023-01-25T19:41:00.218060Z", + "iopub.status.idle": "2023-01-25T19:41:00.449499Z", + "shell.execute_reply": "2023-01-25T19:41:00.448496Z" }, "papermill": { - "duration": 0.434616, - "end_time": "2023-01-24T17:28:48.372956", + "duration": 0.333301, + "end_time": "2023-01-25T19:41:00.452324", "exception": false, - "start_time": "2023-01-24T17:28:47.938340", + "start_time": "2023-01-25T19:41:00.119023", "status": "completed" }, "tags": [] @@ -1314,10 +1314,10 @@ "id": "f56f7341", "metadata": { "papermill": { - "duration": 0.098538, - "end_time": "2023-01-24T17:28:48.570566", + "duration": 0.094264, + "end_time": "2023-01-25T19:41:00.652126", "exception": false, - "start_time": "2023-01-24T17:28:48.472028", + "start_time": "2023-01-25T19:41:00.557862", "status": "completed" }, "tags": [] @@ -1332,16 +1332,16 @@ "id": "e7f21489", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:28:48.770573Z", - "iopub.status.busy": "2023-01-24T17:28:48.769842Z", - "iopub.status.idle": "2023-01-24T17:30:22.131212Z", - "shell.execute_reply": "2023-01-24T17:30:22.130520Z" + "iopub.execute_input": "2023-01-25T19:41:00.844369Z", + "iopub.status.busy": "2023-01-25T19:41:00.843525Z", + "iopub.status.idle": "2023-01-25T19:42:44.697052Z", + "shell.execute_reply": "2023-01-25T19:42:44.695217Z" }, "papermill": { - "duration": 93.463892, - "end_time": "2023-01-24T17:30:22.133414", + "duration": 103.952493, + "end_time": "2023-01-25T19:42:44.699545", "exception": false, - "start_time": "2023-01-24T17:28:48.669522", + "start_time": "2023-01-25T19:41:00.747052", "status": "completed" }, "scrolled": true, @@ -1371,10 +1371,10 @@ "id": "f721fb3b", "metadata": { "papermill": { - "duration": 0.100305, - "end_time": "2023-01-24T17:30:22.335128", + "duration": 0.09408, + "end_time": "2023-01-25T19:42:44.890503", "exception": false, - "start_time": "2023-01-24T17:30:22.234823", + "start_time": "2023-01-25T19:42:44.796423", "status": "completed" }, "tags": [] @@ -1389,16 +1389,16 @@ "id": "9c55cbe8", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:30:22.534916Z", - "iopub.status.busy": "2023-01-24T17:30:22.534177Z", - "iopub.status.idle": "2023-01-24T17:30:22.538611Z", - "shell.execute_reply": "2023-01-24T17:30:22.537920Z" + "iopub.execute_input": "2023-01-25T19:42:45.084314Z", + "iopub.status.busy": "2023-01-25T19:42:45.083719Z", + "iopub.status.idle": "2023-01-25T19:42:45.089464Z", + "shell.execute_reply": "2023-01-25T19:42:45.088478Z" }, "papermill": { - "duration": 0.105548, - "end_time": "2023-01-24T17:30:22.540161", + "duration": 0.105054, + "end_time": "2023-01-25T19:42:45.091519", "exception": false, - "start_time": "2023-01-24T17:30:22.434613", + "start_time": "2023-01-25T19:42:44.986465", "status": "completed" }, "tags": [] @@ -1423,16 +1423,16 @@ "id": "5bacf854", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:30:22.739304Z", - "iopub.status.busy": "2023-01-24T17:30:22.738590Z", - "iopub.status.idle": "2023-01-24T17:30:23.436041Z", - "shell.execute_reply": "2023-01-24T17:30:23.435465Z" + "iopub.execute_input": "2023-01-25T19:42:45.284449Z", + "iopub.status.busy": "2023-01-25T19:42:45.283608Z", + "iopub.status.idle": "2023-01-25T19:42:46.173919Z", + "shell.execute_reply": "2023-01-25T19:42:46.173048Z" }, "papermill": { - "duration": 0.800098, - "end_time": "2023-01-24T17:30:23.439048", + "duration": 0.989158, + "end_time": "2023-01-25T19:42:46.176194", "exception": false, - "start_time": "2023-01-24T17:30:22.638950", + "start_time": "2023-01-25T19:42:45.187036", "status": "completed" }, "tags": [] @@ -1465,10 +1465,10 @@ "id": "55c991aa", "metadata": { "papermill": { - "duration": 0.106714, - "end_time": "2023-01-24T17:30:23.652531", + "duration": 0.101475, + "end_time": "2023-01-25T19:42:46.379973", "exception": false, - "start_time": "2023-01-24T17:30:23.545817", + "start_time": "2023-01-25T19:42:46.278498", "status": "completed" }, "tags": [] @@ -1487,16 +1487,16 @@ "id": "dce2bb81", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:30:23.867405Z", - "iopub.status.busy": "2023-01-24T17:30:23.866814Z", - "iopub.status.idle": "2023-01-24T17:30:24.671949Z", - "shell.execute_reply": "2023-01-24T17:30:24.671256Z" + "iopub.execute_input": "2023-01-25T19:42:46.586267Z", + "iopub.status.busy": "2023-01-25T19:42:46.585720Z", + "iopub.status.idle": "2023-01-25T19:42:46.905015Z", + "shell.execute_reply": "2023-01-25T19:42:46.903891Z" }, "papermill": { - "duration": 0.915017, - "end_time": "2023-01-24T17:30:24.673877", + "duration": 0.425323, + "end_time": "2023-01-25T19:42:46.907487", "exception": false, - "start_time": "2023-01-24T17:30:23.758860", + "start_time": "2023-01-25T19:42:46.482164", "status": "completed" }, "tags": [] @@ -1512,16 +1512,16 @@ "id": "edf9d439", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:30:24.888349Z", - "iopub.status.busy": "2023-01-24T17:30:24.887782Z", - "iopub.status.idle": "2023-01-24T17:30:24.891744Z", - "shell.execute_reply": "2023-01-24T17:30:24.891189Z" + "iopub.execute_input": "2023-01-25T19:42:47.128619Z", + "iopub.status.busy": "2023-01-25T19:42:47.127720Z", + "iopub.status.idle": "2023-01-25T19:42:47.133532Z", + "shell.execute_reply": "2023-01-25T19:42:47.132378Z" }, "papermill": { - "duration": 0.113012, - "end_time": "2023-01-24T17:30:24.893363", + "duration": 0.117637, + "end_time": "2023-01-25T19:42:47.135893", "exception": false, - "start_time": "2023-01-24T17:30:24.780351", + "start_time": "2023-01-25T19:42:47.018256", "status": "completed" }, "tags": [] @@ -1545,16 +1545,16 @@ "id": "229ffd17", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:30:25.107612Z", - "iopub.status.busy": "2023-01-24T17:30:25.107050Z", - "iopub.status.idle": "2023-01-24T17:30:25.123636Z", - "shell.execute_reply": "2023-01-24T17:30:25.122976Z" + "iopub.execute_input": "2023-01-25T19:42:47.336745Z", + "iopub.status.busy": "2023-01-25T19:42:47.335902Z", + "iopub.status.idle": "2023-01-25T19:42:47.360462Z", + "shell.execute_reply": "2023-01-25T19:42:47.359153Z" }, "papermill": { - "duration": 0.12567, - "end_time": "2023-01-24T17:30:25.125144", + "duration": 0.126113, + "end_time": "2023-01-25T19:42:47.362595", "exception": false, - "start_time": "2023-01-24T17:30:24.999474", + "start_time": "2023-01-25T19:42:47.236482", "status": "completed" }, "tags": [] @@ -1772,17 +1772,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 118.432047, - "end_time": "2023-01-24T17:30:25.549184", + "duration": 131.693035, + "end_time": "2023-01-25T19:42:47.993307", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/image_download.ipynb", - "output_path": "/tmp/tmpjch74om8/scratch_nb.ipynb", + "output_path": "/tmp/tmpyuk95jww/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmpjch74om8", + "output_dir": "/tmp/tmpyuk95jww", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T17:28:27.117137", + "start_time": "2023-01-25T19:40:36.300272", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/mouse_connectivity.ipynb b/doc_template/examples_root/examples/nb/mouse_connectivity.ipynb index 59ac23ee1..02487c6b7 100644 --- a/doc_template/examples_root/examples/nb/mouse_connectivity.ipynb +++ b/doc_template/examples_root/examples/nb/mouse_connectivity.ipynb @@ -5,10 +5,10 @@ "id": "dd3abd51", "metadata": { "papermill": { - "duration": 0.005399, - "end_time": "2023-01-24T17:52:29.999389", + "duration": 0.007331, + "end_time": "2023-01-25T20:06:37.440819", "exception": false, - "start_time": "2023-01-24T17:52:29.993990", + "start_time": "2023-01-25T20:06:37.433488", "status": "completed" }, "pycharm": { @@ -32,16 +32,16 @@ "id": "84e9d701", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:30.011336Z", - "iopub.status.busy": "2023-01-24T17:52:30.010857Z", - "iopub.status.idle": "2023-01-24T17:52:30.014082Z", - "shell.execute_reply": "2023-01-24T17:52:30.013466Z" + "iopub.execute_input": "2023-01-25T20:06:37.457723Z", + "iopub.status.busy": "2023-01-25T20:06:37.457049Z", + "iopub.status.idle": "2023-01-25T20:06:37.461741Z", + "shell.execute_reply": "2023-01-25T20:06:37.460763Z" }, "papermill": { - "duration": 0.010848, - "end_time": "2023-01-24T17:52:30.015515", + "duration": 0.015892, + "end_time": "2023-01-25T20:06:37.463996", "exception": false, - "start_time": "2023-01-24T17:52:30.004667", + "start_time": "2023-01-25T20:06:37.448104", "status": "completed" }, "pycharm": { @@ -61,16 +61,16 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2023-01-24T17:52:30.027538Z", - "iopub.status.busy": "2023-01-24T17:52:30.027000Z", - "iopub.status.idle": "2023-01-24T17:52:30.030078Z", - "shell.execute_reply": "2023-01-24T17:52:30.029491Z" + "iopub.execute_input": "2023-01-25T20:06:37.479898Z", + "iopub.status.busy": "2023-01-25T20:06:37.479585Z", + "iopub.status.idle": "2023-01-25T20:06:37.483260Z", + "shell.execute_reply": "2023-01-25T20:06:37.482328Z" }, "papermill": { - "duration": 0.010542, - "end_time": "2023-01-24T17:52:30.031472", + "duration": 0.013932, + "end_time": "2023-01-25T20:06:37.485426", "exception": false, - "start_time": "2023-01-24T17:52:30.020930", + "start_time": "2023-01-25T20:06:37.471494", "status": "completed" }, "pycharm": { @@ -90,16 +90,16 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2023-01-24T17:52:30.043457Z", - "iopub.status.busy": "2023-01-24T17:52:30.042892Z", - "iopub.status.idle": "2023-01-24T17:52:35.737424Z", - "shell.execute_reply": "2023-01-24T17:52:35.736777Z" + "iopub.execute_input": "2023-01-25T20:06:37.501754Z", + "iopub.status.busy": "2023-01-25T20:06:37.500982Z", + "iopub.status.idle": "2023-01-25T20:06:43.522054Z", + "shell.execute_reply": "2023-01-25T20:06:43.520983Z" }, "papermill": { - "duration": 5.702434, - "end_time": "2023-01-24T17:52:35.739176", + "duration": 6.032327, + "end_time": "2023-01-25T20:06:43.524435", "exception": false, - "start_time": "2023-01-24T17:52:30.036742", + "start_time": "2023-01-25T20:06:37.492108", "status": "completed" }, "pycharm": { @@ -166,16 +166,16 @@ "metadata": { "collapsed": false, "execution": { - "iopub.execute_input": "2023-01-24T17:52:35.752859Z", - "iopub.status.busy": "2023-01-24T17:52:35.752078Z", - "iopub.status.idle": "2023-01-24T17:52:35.801781Z", - "shell.execute_reply": "2023-01-24T17:52:35.801104Z" + "iopub.execute_input": "2023-01-25T20:06:43.541532Z", + "iopub.status.busy": "2023-01-25T20:06:43.541015Z", + "iopub.status.idle": "2023-01-25T20:06:43.608865Z", + "shell.execute_reply": "2023-01-25T20:06:43.607800Z" }, "papermill": { - "duration": 0.059, - "end_time": "2023-01-24T17:52:35.804115", + "duration": 0.078937, + "end_time": "2023-01-25T20:06:43.611912", "exception": false, - "start_time": "2023-01-24T17:52:35.745115", + "start_time": "2023-01-25T20:06:43.532975", "status": "completed" }, "pycharm": { @@ -241,16 +241,16 @@ "id": "c3e53606", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:35.817400Z", - "iopub.status.busy": "2023-01-24T17:52:35.816725Z", - "iopub.status.idle": "2023-01-24T17:52:35.864010Z", - "shell.execute_reply": "2023-01-24T17:52:35.863313Z" + "iopub.execute_input": "2023-01-25T20:06:43.629100Z", + "iopub.status.busy": "2023-01-25T20:06:43.628746Z", + "iopub.status.idle": "2023-01-25T20:06:43.693975Z", + "shell.execute_reply": "2023-01-25T20:06:43.692946Z" }, "papermill": { - "duration": 0.056124, - "end_time": "2023-01-24T17:52:35.866271", + "duration": 0.077921, + "end_time": "2023-01-25T20:06:43.697688", "exception": false, - "start_time": "2023-01-24T17:52:35.810147", + "start_time": "2023-01-25T20:06:43.619767", "status": "completed" }, "pycharm": { @@ -315,10 +315,10 @@ "id": "c6495ce7", "metadata": { "papermill": { - "duration": 0.007179, - "end_time": "2023-01-24T17:52:35.879737", + "duration": 0.007638, + "end_time": "2023-01-25T20:06:43.713653", "exception": false, - "start_time": "2023-01-24T17:52:35.872558", + "start_time": "2023-01-25T20:06:43.706015", "status": "completed" }, "pycharm": { @@ -336,16 +336,16 @@ "id": "6b7f7707", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:35.892826Z", - "iopub.status.busy": "2023-01-24T17:52:35.892306Z", - "iopub.status.idle": "2023-01-24T17:52:41.146322Z", - "shell.execute_reply": "2023-01-24T17:52:41.145707Z" + "iopub.execute_input": "2023-01-25T20:06:43.731427Z", + "iopub.status.busy": "2023-01-25T20:06:43.730884Z", + "iopub.status.idle": "2023-01-25T20:06:49.161992Z", + "shell.execute_reply": "2023-01-25T20:06:49.160968Z" }, "papermill": { - "duration": 5.262385, - "end_time": "2023-01-24T17:52:41.147942", + "duration": 5.442867, + "end_time": "2023-01-25T20:06:49.164192", "exception": false, - "start_time": "2023-01-24T17:52:35.885557", + "start_time": "2023-01-25T20:06:43.721325", "status": "completed" }, "pycharm": { @@ -448,10 +448,10 @@ "id": "604f9be4", "metadata": { "papermill": { - "duration": 0.006514, - "end_time": "2023-01-24T17:52:41.160898", + "duration": 0.007698, + "end_time": "2023-01-25T20:06:49.182151", "exception": false, - "start_time": "2023-01-24T17:52:41.154384", + "start_time": "2023-01-25T20:06:49.174453", "status": "completed" }, "pycharm": { @@ -475,16 +475,16 @@ "id": "3ce6e3f5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:41.174606Z", - "iopub.status.busy": "2023-01-24T17:52:41.173939Z", - "iopub.status.idle": "2023-01-24T17:52:41.278725Z", - "shell.execute_reply": "2023-01-24T17:52:41.278107Z" + "iopub.execute_input": "2023-01-25T20:06:49.201104Z", + "iopub.status.busy": "2023-01-25T20:06:49.200424Z", + "iopub.status.idle": "2023-01-25T20:06:49.284918Z", + "shell.execute_reply": "2023-01-25T20:06:49.283854Z" }, "papermill": { - "duration": 0.11352, - "end_time": "2023-01-24T17:52:41.280405", + "duration": 0.097334, + "end_time": "2023-01-25T20:06:49.287625", "exception": false, - "start_time": "2023-01-24T17:52:41.166885", + "start_time": "2023-01-25T20:06:49.190291", "status": "completed" }, "pycharm": { @@ -816,10 +816,10 @@ "id": "cf2ede90", "metadata": { "papermill": { - "duration": 0.006517, - "end_time": "2023-01-24T17:52:41.293783", + "duration": 0.008891, + "end_time": "2023-01-25T20:06:49.306225", "exception": false, - "start_time": "2023-01-24T17:52:41.287266", + "start_time": "2023-01-25T20:06:49.297334", "status": "completed" }, "pycharm": { @@ -837,16 +837,16 @@ "id": "196b7149", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:41.308145Z", - "iopub.status.busy": "2023-01-24T17:52:41.307624Z", - "iopub.status.idle": "2023-01-24T17:52:41.329844Z", - "shell.execute_reply": "2023-01-24T17:52:41.329162Z" + "iopub.execute_input": "2023-01-25T20:06:49.325716Z", + "iopub.status.busy": "2023-01-25T20:06:49.324966Z", + "iopub.status.idle": "2023-01-25T20:06:49.356943Z", + "shell.execute_reply": "2023-01-25T20:06:49.355884Z" }, "papermill": { - "duration": 0.031209, - "end_time": "2023-01-24T17:52:41.331481", + "duration": 0.044073, + "end_time": "2023-01-25T20:06:49.359251", "exception": false, - "start_time": "2023-01-24T17:52:41.300272", + "start_time": "2023-01-25T20:06:49.315178", "status": "completed" }, "pycharm": { @@ -1085,10 +1085,10 @@ "id": "1e75e057", "metadata": { "papermill": { - "duration": 0.006821, - "end_time": "2023-01-24T17:52:41.345174", + "duration": 0.010215, + "end_time": "2023-01-25T20:06:49.378132", "exception": false, - "start_time": "2023-01-24T17:52:41.338353", + "start_time": "2023-01-25T20:06:49.367917", "status": "completed" }, "pycharm": { @@ -1106,16 +1106,16 @@ "id": "67863891", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:41.359885Z", - "iopub.status.busy": "2023-01-24T17:52:41.359416Z", - "iopub.status.idle": "2023-01-24T17:52:41.458666Z", - "shell.execute_reply": "2023-01-24T17:52:41.457931Z" + "iopub.execute_input": "2023-01-25T20:06:49.397340Z", + "iopub.status.busy": "2023-01-25T20:06:49.395927Z", + "iopub.status.idle": "2023-01-25T20:06:49.529776Z", + "shell.execute_reply": "2023-01-25T20:06:49.528334Z" }, "papermill": { - "duration": 0.108542, - "end_time": "2023-01-24T17:52:41.460397", + "duration": 0.145722, + "end_time": "2023-01-25T20:06:49.532248", "exception": false, - "start_time": "2023-01-24T17:52:41.351855", + "start_time": "2023-01-25T20:06:49.386526", "status": "completed" }, "pycharm": { @@ -1154,10 +1154,10 @@ "id": "cbb9fe4b", "metadata": { "papermill": { - "duration": 0.006821, - "end_time": "2023-01-24T17:52:41.474467", + "duration": 0.009355, + "end_time": "2023-01-25T20:06:49.551197", "exception": false, - "start_time": "2023-01-24T17:52:41.467646", + "start_time": "2023-01-25T20:06:49.541842", "status": "completed" }, "pycharm": { @@ -1177,16 +1177,16 @@ "id": "242f67ea", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:41.489485Z", - "iopub.status.busy": "2023-01-24T17:52:41.488973Z", - "iopub.status.idle": "2023-01-24T17:53:53.107226Z", - "shell.execute_reply": "2023-01-24T17:53:53.103054Z" + "iopub.execute_input": "2023-01-25T20:06:49.570660Z", + "iopub.status.busy": "2023-01-25T20:06:49.569976Z", + "iopub.status.idle": "2023-01-25T20:07:49.857642Z", + "shell.execute_reply": "2023-01-25T20:07:49.856718Z" }, "papermill": { - "duration": 71.630794, - "end_time": "2023-01-24T17:53:53.111989", + "duration": 60.308317, + "end_time": "2023-01-25T20:07:49.868218", "exception": false, - "start_time": "2023-01-24T17:52:41.481195", + "start_time": "2023-01-25T20:06:49.559901", "status": "completed" }, "pycharm": { @@ -1226,16 +1226,16 @@ "id": "4db9c33b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:53:53.127607Z", - "iopub.status.busy": "2023-01-24T17:53:53.126863Z", - "iopub.status.idle": "2023-01-24T17:53:53.142277Z", - "shell.execute_reply": "2023-01-24T17:53:53.141635Z" + "iopub.execute_input": "2023-01-25T20:07:49.887910Z", + "iopub.status.busy": "2023-01-25T20:07:49.887249Z", + "iopub.status.idle": "2023-01-25T20:07:49.916649Z", + "shell.execute_reply": "2023-01-25T20:07:49.915556Z" }, "papermill": { - "duration": 0.024724, - "end_time": "2023-01-24T17:53:53.143764", + "duration": 0.041789, + "end_time": "2023-01-25T20:07:49.919033", "exception": false, - "start_time": "2023-01-24T17:53:53.119040", + "start_time": "2023-01-25T20:07:49.877244", "status": "completed" }, "pycharm": { @@ -1452,10 +1452,10 @@ "id": "a9d608be", "metadata": { "papermill": { - "duration": 0.007029, - "end_time": "2023-01-24T17:53:53.158105", + "duration": 0.008797, + "end_time": "2023-01-25T20:07:49.937529", "exception": false, - "start_time": "2023-01-24T17:53:53.151076", + "start_time": "2023-01-25T20:07:49.928732", "status": "completed" }, "pycharm": { @@ -1473,16 +1473,16 @@ "id": "e589a2a2", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:53:53.173812Z", - "iopub.status.busy": "2023-01-24T17:53:53.173228Z", - "iopub.status.idle": "2023-01-24T17:53:53.204233Z", - "shell.execute_reply": "2023-01-24T17:53:53.203589Z" + "iopub.execute_input": "2023-01-25T20:07:49.958454Z", + "iopub.status.busy": "2023-01-25T20:07:49.957854Z", + "iopub.status.idle": "2023-01-25T20:07:49.998201Z", + "shell.execute_reply": "2023-01-25T20:07:49.997150Z" }, "papermill": { - "duration": 0.040483, - "end_time": "2023-01-24T17:53:53.205690", + "duration": 0.055108, + "end_time": "2023-01-25T20:07:50.001476", "exception": false, - "start_time": "2023-01-24T17:53:53.165207", + "start_time": "2023-01-25T20:07:49.946368", "status": "completed" }, "pycharm": { @@ -2104,10 +2104,10 @@ "id": "579107f5", "metadata": { "papermill": { - "duration": 0.007846, - "end_time": "2023-01-24T17:53:53.221617", + "duration": 0.01051, + "end_time": "2023-01-25T20:07:50.024019", "exception": false, - "start_time": "2023-01-24T17:53:53.213771", + "start_time": "2023-01-25T20:07:50.013509", "status": "completed" }, "pycharm": { @@ -2126,16 +2126,16 @@ "id": "039f77ef", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:53:53.238735Z", - "iopub.status.busy": "2023-01-24T17:53:53.238099Z", - "iopub.status.idle": "2023-01-24T17:53:54.156181Z", - "shell.execute_reply": "2023-01-24T17:53:54.155536Z" + "iopub.execute_input": "2023-01-25T20:07:50.047575Z", + "iopub.status.busy": "2023-01-25T20:07:50.046780Z", + "iopub.status.idle": "2023-01-25T20:07:51.509766Z", + "shell.execute_reply": "2023-01-25T20:07:51.508623Z" }, "papermill": { - "duration": 0.928612, - "end_time": "2023-01-24T17:53:54.158110", + "duration": 1.481393, + "end_time": "2023-01-25T20:07:51.516518", "exception": false, - "start_time": "2023-01-24T17:53:53.229498", + "start_time": "2023-01-25T20:07:50.035125", "status": "completed" }, "pycharm": { @@ -2198,10 +2198,10 @@ "id": "81714b1b", "metadata": { "papermill": { - "duration": 0.009217, - "end_time": "2023-01-24T17:53:54.177091", + "duration": 0.010904, + "end_time": "2023-01-25T20:07:51.541900", "exception": false, - "start_time": "2023-01-24T17:53:54.167874", + "start_time": "2023-01-25T20:07:51.530996", "status": "completed" }, "pycharm": { @@ -2223,16 +2223,16 @@ "id": "ef2c68ef", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:53:54.197075Z", - "iopub.status.busy": "2023-01-24T17:53:54.196378Z", - "iopub.status.idle": "2023-01-24T17:53:54.199664Z", - "shell.execute_reply": "2023-01-24T17:53:54.199074Z" + "iopub.execute_input": "2023-01-25T20:07:51.566892Z", + "iopub.status.busy": "2023-01-25T20:07:51.566523Z", + "iopub.status.idle": "2023-01-25T20:07:51.571242Z", + "shell.execute_reply": "2023-01-25T20:07:51.570389Z" }, "papermill": { - "duration": 0.014646, - "end_time": "2023-01-24T17:53:54.200983", + "duration": 0.019346, + "end_time": "2023-01-25T20:07:51.573107", "exception": false, - "start_time": "2023-01-24T17:53:54.186337", + "start_time": "2023-01-25T20:07:51.553761", "status": "completed" }, "pycharm": { @@ -2252,16 +2252,16 @@ "id": "d312ffd5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:53:54.221187Z", - "iopub.status.busy": "2023-01-24T17:53:54.220807Z", - "iopub.status.idle": "2023-01-24T17:54:13.101626Z", - "shell.execute_reply": "2023-01-24T17:54:13.101044Z" + "iopub.execute_input": "2023-01-25T20:07:51.597400Z", + "iopub.status.busy": "2023-01-25T20:07:51.596801Z", + "iopub.status.idle": "2023-01-25T20:08:09.574412Z", + "shell.execute_reply": "2023-01-25T20:08:09.573144Z" }, "papermill": { - "duration": 18.892985, - "end_time": "2023-01-24T17:54:13.103612", + "duration": 17.992884, + "end_time": "2023-01-25T20:08:09.577128", "exception": false, - "start_time": "2023-01-24T17:53:54.210627", + "start_time": "2023-01-25T20:07:51.584244", "status": "completed" }, "pycharm": { @@ -2274,13 +2274,13 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 17:53:54,223 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/grid_data/download_file/181599674?image=projection_density&resolution=25\n", - "2023-01-24 17:53:58,790 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/grid_data/download_file/181599674?image=injection_density&resolution=25\n", - "2023-01-24 17:54:01,914 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/grid_data/download_file/181599674?image=injection_fraction&resolution=25\n", - "2023-01-24 17:54:04,997 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/grid_data/download_file/181599674?image=data_mask&resolution=25\n", - "2023-01-24 17:54:07,067 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://download.alleninstitute.org/informatics-archive/current-release/mouse_ccf/average_template/average_template_25.nrrd\n", - "2023-01-24 17:54:11,141 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://download.alleninstitute.org/informatics-archive/current-release/mouse_ccf/annotation/ccf_2017/annotation_25.nrrd\n", - "2023-01-24 17:54:12,644 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://download.alleninstitute.org/informatics-archive/current-release/mouse_ccf/annotation/ccf_2017/structure_masks/structure_masks_25/structure_315.nrrd\n" + "2023-01-25 20:07:51,602 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/grid_data/download_file/181599674?image=projection_density&resolution=25\n", + "2023-01-25 20:07:56,089 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/grid_data/download_file/181599674?image=injection_density&resolution=25\n", + "2023-01-25 20:07:59,244 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/grid_data/download_file/181599674?image=injection_fraction&resolution=25\n", + "2023-01-25 20:08:02,230 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/grid_data/download_file/181599674?image=data_mask&resolution=25\n", + "2023-01-25 20:08:04,292 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://download.alleninstitute.org/informatics-archive/current-release/mouse_ccf/average_template/average_template_25.nrrd\n", + "2023-01-25 20:08:06,738 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://download.alleninstitute.org/informatics-archive/current-release/mouse_ccf/annotation/ccf_2017/annotation_25.nrrd\n", + "2023-01-25 20:08:08,426 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://download.alleninstitute.org/informatics-archive/current-release/mouse_ccf/annotation/ccf_2017/structure_masks/structure_masks_25/structure_315.nrrd\n" ] }, { @@ -2324,10 +2324,10 @@ "id": "4392d001", "metadata": { "papermill": { - "duration": 0.009848, - "end_time": "2023-01-24T17:54:13.124337", + "duration": 0.014287, + "end_time": "2023-01-25T20:08:09.606170", "exception": false, - "start_time": "2023-01-24T17:54:13.114489", + "start_time": "2023-01-25T20:08:09.591883", "status": "completed" }, "pycharm": { @@ -2345,16 +2345,16 @@ "id": "6bcc841b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:54:13.145555Z", - "iopub.status.busy": "2023-01-24T17:54:13.145011Z", - "iopub.status.idle": "2023-01-24T17:54:13.728851Z", - "shell.execute_reply": "2023-01-24T17:54:13.728145Z" + "iopub.execute_input": "2023-01-25T20:08:09.638023Z", + "iopub.status.busy": "2023-01-25T20:08:09.637553Z", + "iopub.status.idle": "2023-01-25T20:08:10.443741Z", + "shell.execute_reply": "2023-01-25T20:08:10.442768Z" }, "papermill": { - "duration": 0.597005, - "end_time": "2023-01-24T17:54:13.731129", + "duration": 0.826133, + "end_time": "2023-01-25T20:08:10.447238", "exception": false, - "start_time": "2023-01-24T17:54:13.134124", + "start_time": "2023-01-25T20:08:09.621105", "status": "completed" }, "pycharm": { @@ -2402,16 +2402,16 @@ "id": "fcfdf85e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:54:13.756215Z", - "iopub.status.busy": "2023-01-24T17:54:13.755567Z", - "iopub.status.idle": "2023-01-24T17:54:14.112027Z", - "shell.execute_reply": "2023-01-24T17:54:14.111462Z" + "iopub.execute_input": "2023-01-25T20:08:10.477585Z", + "iopub.status.busy": "2023-01-25T20:08:10.477086Z", + "iopub.status.idle": "2023-01-25T20:08:10.997498Z", + "shell.execute_reply": "2023-01-25T20:08:10.996419Z" }, "papermill": { - "duration": 0.37071, - "end_time": "2023-01-24T17:54:14.113682", + "duration": 0.540079, + "end_time": "2023-01-25T20:08:11.001928", "exception": false, - "start_time": "2023-01-24T17:54:13.742972", + "start_time": "2023-01-25T20:08:10.461849", "status": "completed" }, "pycharm": { @@ -2456,10 +2456,10 @@ "id": "2fb0ab44", "metadata": { "papermill": { - "duration": 0.012942, - "end_time": "2023-01-24T17:54:14.140376", + "duration": 0.015698, + "end_time": "2023-01-25T20:08:11.034650", "exception": false, - "start_time": "2023-01-24T17:54:14.127434", + "start_time": "2023-01-25T20:08:11.018952", "status": "completed" }, "pycharm": { @@ -2479,16 +2479,16 @@ "id": "846f95b2", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:54:14.168306Z", - "iopub.status.busy": "2023-01-24T17:54:14.167543Z", - "iopub.status.idle": "2023-01-24T17:54:14.281042Z", - "shell.execute_reply": "2023-01-24T17:54:14.280355Z" + "iopub.execute_input": "2023-01-25T20:08:11.069413Z", + "iopub.status.busy": "2023-01-25T20:08:11.069020Z", + "iopub.status.idle": "2023-01-25T20:08:11.247801Z", + "shell.execute_reply": "2023-01-25T20:08:11.246788Z" }, "papermill": { - "duration": 0.129192, - "end_time": "2023-01-24T17:54:14.282719", + "duration": 0.200116, + "end_time": "2023-01-25T20:08:11.250449", "exception": false, - "start_time": "2023-01-24T17:54:14.153527", + "start_time": "2023-01-25T20:08:11.050333", "status": "completed" }, "pycharm": { @@ -2539,17 +2539,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 105.688494, - "end_time": "2023-01-24T17:54:14.614612", + "duration": 95.676048, + "end_time": "2023-01-25T20:08:11.888636", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/mouse_connectivity.ipynb", - "output_path": "/tmp/tmpev5vm2ge/scratch_nb.ipynb", + "output_path": "/tmp/tmpmsj1wyvp/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmpev5vm2ge", + "output_dir": "/tmp/tmpmsj1wyvp", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T17:52:28.926118", + "start_time": "2023-01-25T20:06:36.212588", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/receptive_fields.ipynb b/doc_template/examples_root/examples/nb/receptive_fields.ipynb index 3f567130b..3bd35b658 100644 --- a/doc_template/examples_root/examples/nb/receptive_fields.ipynb +++ b/doc_template/examples_root/examples/nb/receptive_fields.ipynb @@ -5,10 +5,10 @@ "id": "11de1dcd", "metadata": { "papermill": { - "duration": 0.005996, - "end_time": "2023-01-24T17:15:22.541332", + "duration": 0.007261, + "end_time": "2023-01-25T19:26:13.084257", "exception": false, - "start_time": "2023-01-24T17:15:22.535336", + "start_time": "2023-01-25T19:26:13.076996", "status": "completed" }, "tags": [] @@ -28,16 +28,16 @@ "id": "d102e84d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:15:22.552726Z", - "iopub.status.busy": "2023-01-24T17:15:22.552009Z", - "iopub.status.idle": "2023-01-24T17:15:24.859273Z", - "shell.execute_reply": "2023-01-24T17:15:24.858553Z" + "iopub.execute_input": "2023-01-25T19:26:13.097591Z", + "iopub.status.busy": "2023-01-25T19:26:13.096757Z", + "iopub.status.idle": "2023-01-25T19:26:16.262273Z", + "shell.execute_reply": "2023-01-25T19:26:16.261148Z" }, "papermill": { - "duration": 2.315216, - "end_time": "2023-01-24T17:15:24.861549", + "duration": 3.175268, + "end_time": "2023-01-25T19:26:16.264852", "exception": false, - "start_time": "2023-01-24T17:15:22.546333", + "start_time": "2023-01-25T19:26:13.089584", "status": "completed" }, "tags": [] @@ -57,10 +57,10 @@ "id": "fa15d47e", "metadata": { "papermill": { - "duration": 0.00438, - "end_time": "2023-01-24T17:15:24.870559", + "duration": 0.005037, + "end_time": "2023-01-25T19:26:16.275806", "exception": false, - "start_time": "2023-01-24T17:15:24.866179", + "start_time": "2023-01-25T19:26:16.270769", "status": "completed" }, "tags": [] @@ -75,16 +75,16 @@ "id": "e80946fb", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:15:24.880486Z", - "iopub.status.busy": "2023-01-24T17:15:24.879927Z", - "iopub.status.idle": "2023-01-24T17:15:24.883434Z", - "shell.execute_reply": "2023-01-24T17:15:24.882766Z" + "iopub.execute_input": "2023-01-25T19:26:16.289746Z", + "iopub.status.busy": "2023-01-25T19:26:16.289223Z", + "iopub.status.idle": "2023-01-25T19:26:16.293591Z", + "shell.execute_reply": "2023-01-25T19:26:16.292633Z" }, "papermill": { - "duration": 0.010454, - "end_time": "2023-01-24T17:15:24.885254", + "duration": 0.01362, + "end_time": "2023-01-25T19:26:16.295703", "exception": false, - "start_time": "2023-01-24T17:15:24.874800", + "start_time": "2023-01-25T19:26:16.282083", "status": "completed" }, "tags": [ @@ -102,16 +102,16 @@ "id": "148f46b5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:15:24.909021Z", - "iopub.status.busy": "2023-01-24T17:15:24.908410Z", - "iopub.status.idle": "2023-01-24T17:20:29.259996Z", - "shell.execute_reply": "2023-01-24T17:20:29.259265Z" + "iopub.execute_input": "2023-01-25T19:26:16.327736Z", + "iopub.status.busy": "2023-01-25T19:26:16.327096Z", + "iopub.status.idle": "2023-01-25T19:31:38.803376Z", + "shell.execute_reply": "2023-01-25T19:31:38.802438Z" }, "papermill": { - "duration": 304.358245, - "end_time": "2023-01-24T17:20:29.261709", + "duration": 322.484501, + "end_time": "2023-01-25T19:31:38.805495", "exception": false, - "start_time": "2023-01-24T17:15:24.903464", + "start_time": "2023-01-25T19:26:16.320994", "status": "completed" }, "tags": [] @@ -121,7 +121,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 17:20:19,980 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/514409327\n" + "2023-01-25 19:31:27,874 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/514409327\n" ] }, { @@ -153,10 +153,10 @@ "id": "805f3072", "metadata": { "papermill": { - "duration": 0.004803, - "end_time": "2023-01-24T17:20:29.271300", + "duration": 0.005472, + "end_time": "2023-01-25T19:31:38.817230", "exception": false, - "start_time": "2023-01-24T17:20:29.266497", + "start_time": "2023-01-25T19:31:38.811758", "status": "completed" }, "tags": [] @@ -172,16 +172,16 @@ "id": "7937d06b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:20:29.281747Z", - "iopub.status.busy": "2023-01-24T17:20:29.281084Z", - "iopub.status.idle": "2023-01-24T17:22:06.097763Z", - "shell.execute_reply": "2023-01-24T17:22:06.097174Z" + "iopub.execute_input": "2023-01-25T19:31:38.831561Z", + "iopub.status.busy": "2023-01-25T19:31:38.830726Z", + "iopub.status.idle": "2023-01-25T19:33:59.437663Z", + "shell.execute_reply": "2023-01-25T19:33:59.436519Z" }, "papermill": { - "duration": 96.823483, - "end_time": "2023-01-24T17:22:06.099267", + "duration": 140.616871, + "end_time": "2023-01-25T19:33:59.440269", "exception": false, - "start_time": "2023-01-24T17:20:29.275784", + "start_time": "2023-01-25T19:31:38.823398", "status": "completed" }, "tags": [] @@ -213,10 +213,10 @@ "id": "14937abd", "metadata": { "papermill": { - "duration": 0.004685, - "end_time": "2023-01-24T17:22:06.108836", + "duration": 0.006112, + "end_time": "2023-01-25T19:33:59.453178", "exception": false, - "start_time": "2023-01-24T17:22:06.104151", + "start_time": "2023-01-25T19:33:59.447066", "status": "completed" }, "tags": [] @@ -232,16 +232,16 @@ "id": "9c9a4b3b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:22:06.119219Z", - "iopub.status.busy": "2023-01-24T17:22:06.118715Z", - "iopub.status.idle": "2023-01-24T17:22:06.230129Z", - "shell.execute_reply": "2023-01-24T17:22:06.229483Z" + "iopub.execute_input": "2023-01-25T19:33:59.470236Z", + "iopub.status.busy": "2023-01-25T19:33:59.469434Z", + "iopub.status.idle": "2023-01-25T19:33:59.633036Z", + "shell.execute_reply": "2023-01-25T19:33:59.631802Z" }, "papermill": { - "duration": 0.118381, - "end_time": "2023-01-24T17:22:06.231705", + "duration": 0.17348, + "end_time": "2023-01-25T19:33:59.635231", "exception": false, - "start_time": "2023-01-24T17:22:06.113324", + "start_time": "2023-01-25T19:33:59.461751", "status": "completed" }, "tags": [] @@ -268,10 +268,10 @@ "id": "1b5cf42b", "metadata": { "papermill": { - "duration": 0.005195, - "end_time": "2023-01-24T17:22:06.242039", + "duration": 0.006276, + "end_time": "2023-01-25T19:33:59.648602", "exception": false, - "start_time": "2023-01-24T17:22:06.236844", + "start_time": "2023-01-25T19:33:59.642326", "status": "completed" }, "tags": [] @@ -287,16 +287,16 @@ "id": "0d44d0cb", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:22:06.253258Z", - "iopub.status.busy": "2023-01-24T17:22:06.252760Z", - "iopub.status.idle": "2023-01-24T17:22:06.365887Z", - "shell.execute_reply": "2023-01-24T17:22:06.365237Z" + "iopub.execute_input": "2023-01-25T19:33:59.662901Z", + "iopub.status.busy": "2023-01-25T19:33:59.662165Z", + "iopub.status.idle": "2023-01-25T19:33:59.831296Z", + "shell.execute_reply": "2023-01-25T19:33:59.830269Z" }, "papermill": { - "duration": 0.120541, - "end_time": "2023-01-24T17:22:06.367452", + "duration": 0.179412, + "end_time": "2023-01-25T19:33:59.833723", "exception": false, - "start_time": "2023-01-24T17:22:06.246911", + "start_time": "2023-01-25T19:33:59.654311", "status": "completed" }, "tags": [] @@ -323,10 +323,10 @@ "id": "c4257c66", "metadata": { "papermill": { - "duration": 0.006012, - "end_time": "2023-01-24T17:22:06.378828", + "duration": 0.006051, + "end_time": "2023-01-25T19:33:59.846899", "exception": false, - "start_time": "2023-01-24T17:22:06.372816", + "start_time": "2023-01-25T19:33:59.840848", "status": "completed" }, "tags": [] @@ -342,16 +342,16 @@ "id": "bae6014b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:22:06.390824Z", - "iopub.status.busy": "2023-01-24T17:22:06.390264Z", - "iopub.status.idle": "2023-01-24T17:22:06.499108Z", - "shell.execute_reply": "2023-01-24T17:22:06.498391Z" + "iopub.execute_input": "2023-01-25T19:33:59.861463Z", + "iopub.status.busy": "2023-01-25T19:33:59.861025Z", + "iopub.status.idle": "2023-01-25T19:34:00.024072Z", + "shell.execute_reply": "2023-01-25T19:34:00.022993Z" }, "papermill": { - "duration": 0.11685, - "end_time": "2023-01-24T17:22:06.500864", + "duration": 0.173415, + "end_time": "2023-01-25T19:34:00.026357", "exception": false, - "start_time": "2023-01-24T17:22:06.384014", + "start_time": "2023-01-25T19:33:59.852942", "status": "completed" }, "tags": [] @@ -378,10 +378,10 @@ "id": "d19f0339", "metadata": { "papermill": { - "duration": 0.005693, - "end_time": "2023-01-24T17:22:06.512110", + "duration": 0.006611, + "end_time": "2023-01-25T19:34:00.041016", "exception": false, - "start_time": "2023-01-24T17:22:06.506417", + "start_time": "2023-01-25T19:34:00.034405", "status": "completed" }, "tags": [] @@ -398,16 +398,16 @@ "id": "e3cdae32", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:22:06.523912Z", - "iopub.status.busy": "2023-01-24T17:22:06.523425Z", - "iopub.status.idle": "2023-01-24T17:22:06.637198Z", - "shell.execute_reply": "2023-01-24T17:22:06.636546Z" + "iopub.execute_input": "2023-01-25T19:34:00.055685Z", + "iopub.status.busy": "2023-01-25T19:34:00.055308Z", + "iopub.status.idle": "2023-01-25T19:34:00.231792Z", + "shell.execute_reply": "2023-01-25T19:34:00.229919Z" }, "papermill": { - "duration": 0.121704, - "end_time": "2023-01-24T17:22:06.639020", + "duration": 0.187059, + "end_time": "2023-01-25T19:34:00.234338", "exception": false, - "start_time": "2023-01-24T17:22:06.517316", + "start_time": "2023-01-25T19:34:00.047279", "status": "completed" }, "tags": [] @@ -434,10 +434,10 @@ "id": "ec71adfa", "metadata": { "papermill": { - "duration": 0.005585, - "end_time": "2023-01-24T17:22:06.650433", + "duration": 0.006876, + "end_time": "2023-01-25T19:34:00.248546", "exception": false, - "start_time": "2023-01-24T17:22:06.644848", + "start_time": "2023-01-25T19:34:00.241670", "status": "completed" }, "tags": [] @@ -454,16 +454,16 @@ "id": "026bd6a2", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:22:06.662667Z", - "iopub.status.busy": "2023-01-24T17:22:06.662254Z", - "iopub.status.idle": "2023-01-24T17:22:06.775933Z", - "shell.execute_reply": "2023-01-24T17:22:06.775283Z" + "iopub.execute_input": "2023-01-25T19:34:00.264245Z", + "iopub.status.busy": "2023-01-25T19:34:00.263838Z", + "iopub.status.idle": "2023-01-25T19:34:00.442964Z", + "shell.execute_reply": "2023-01-25T19:34:00.441848Z" }, "papermill": { - "duration": 0.121607, - "end_time": "2023-01-24T17:22:06.777500", + "duration": 0.190296, + "end_time": "2023-01-25T19:34:00.445442", "exception": false, - "start_time": "2023-01-24T17:22:06.655893", + "start_time": "2023-01-25T19:34:00.255146", "status": "completed" }, "tags": [] @@ -490,10 +490,10 @@ "id": "abceecc4", "metadata": { "papermill": { - "duration": 0.005824, - "end_time": "2023-01-24T17:22:06.789426", + "duration": 0.006805, + "end_time": "2023-01-25T19:34:00.460013", "exception": false, - "start_time": "2023-01-24T17:22:06.783602", + "start_time": "2023-01-25T19:34:00.453208", "status": "completed" }, "tags": [] @@ -509,16 +509,16 @@ "id": "4273c2a7", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:22:06.802176Z", - "iopub.status.busy": "2023-01-24T17:22:06.801685Z", - "iopub.status.idle": "2023-01-24T17:22:06.913027Z", - "shell.execute_reply": "2023-01-24T17:22:06.912394Z" + "iopub.execute_input": "2023-01-25T19:34:00.476149Z", + "iopub.status.busy": "2023-01-25T19:34:00.475100Z", + "iopub.status.idle": "2023-01-25T19:34:00.652429Z", + "shell.execute_reply": "2023-01-25T19:34:00.651380Z" }, "papermill": { - "duration": 0.119494, - "end_time": "2023-01-24T17:22:06.914635", + "duration": 0.187872, + "end_time": "2023-01-25T19:34:00.654645", "exception": false, - "start_time": "2023-01-24T17:22:06.795141", + "start_time": "2023-01-25T19:34:00.466773", "status": "completed" }, "tags": [] @@ -545,10 +545,10 @@ "id": "3373bf7a", "metadata": { "papermill": { - "duration": 0.006102, - "end_time": "2023-01-24T17:22:06.927009", + "duration": 0.007691, + "end_time": "2023-01-25T19:34:00.670420", "exception": false, - "start_time": "2023-01-24T17:22:06.920907", + "start_time": "2023-01-25T19:34:00.662729", "status": "completed" }, "tags": [] @@ -564,16 +564,16 @@ "id": "de5244a4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:22:06.940293Z", - "iopub.status.busy": "2023-01-24T17:22:06.939643Z", - "iopub.status.idle": "2023-01-24T17:22:11.578422Z", - "shell.execute_reply": "2023-01-24T17:22:11.577727Z" + "iopub.execute_input": "2023-01-25T19:34:00.687186Z", + "iopub.status.busy": "2023-01-25T19:34:00.686800Z", + "iopub.status.idle": "2023-01-25T19:34:06.280869Z", + "shell.execute_reply": "2023-01-25T19:34:06.279765Z" }, "papermill": { - "duration": 4.647313, - "end_time": "2023-01-24T17:22:11.580207", + "duration": 5.605303, + "end_time": "2023-01-25T19:34:06.283369", "exception": false, - "start_time": "2023-01-24T17:22:06.932894", + "start_time": "2023-01-25T19:34:00.678066", "status": "completed" }, "tags": [] @@ -601,10 +601,10 @@ "id": "c92fe5a9", "metadata": { "papermill": { - "duration": 0.006111, - "end_time": "2023-01-24T17:22:11.592868", + "duration": 0.007561, + "end_time": "2023-01-25T19:34:06.299133", "exception": false, - "start_time": "2023-01-24T17:22:11.586757", + "start_time": "2023-01-25T19:34:06.291572", "status": "completed" }, "tags": [] @@ -621,16 +621,16 @@ "id": "0b384c9c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:22:11.606462Z", - "iopub.status.busy": "2023-01-24T17:22:11.605939Z", - "iopub.status.idle": "2023-01-24T17:22:30.288357Z", - "shell.execute_reply": "2023-01-24T17:22:30.287785Z" + "iopub.execute_input": "2023-01-25T19:34:06.315622Z", + "iopub.status.busy": "2023-01-25T19:34:06.314785Z", + "iopub.status.idle": "2023-01-25T19:34:26.070830Z", + "shell.execute_reply": "2023-01-25T19:34:26.068257Z" }, "papermill": { - "duration": 18.691072, - "end_time": "2023-01-24T17:22:30.290010", + "duration": 19.766806, + "end_time": "2023-01-25T19:34:26.073190", "exception": false, - "start_time": "2023-01-24T17:22:11.598938", + "start_time": "2023-01-25T19:34:06.306384", "status": "completed" }, "tags": [] @@ -640,7 +640,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 17:22:14,855 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/650500441\n" + "2023-01-25 19:34:10,489 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://api.brain-map.org/api/v2/well_known_file_download/650500441\n" ] }, { @@ -664,10 +664,10 @@ "id": "11762c08", "metadata": { "papermill": { - "duration": 0.006659, - "end_time": "2023-01-24T17:22:30.303344", + "duration": 0.008535, + "end_time": "2023-01-25T19:34:26.089805", "exception": false, - "start_time": "2023-01-24T17:22:30.296685", + "start_time": "2023-01-25T19:34:26.081270", "status": "completed" }, "tags": [] @@ -682,16 +682,16 @@ "id": "062d0c06", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:22:30.317477Z", - "iopub.status.busy": "2023-01-24T17:22:30.316985Z", - "iopub.status.idle": "2023-01-24T17:23:27.546626Z", - "shell.execute_reply": "2023-01-24T17:23:27.546055Z" + "iopub.execute_input": "2023-01-25T19:34:26.106990Z", + "iopub.status.busy": "2023-01-25T19:34:26.106169Z", + "iopub.status.idle": "2023-01-25T19:36:00.618980Z", + "shell.execute_reply": "2023-01-25T19:36:00.617900Z" }, "papermill": { - "duration": 57.238191, - "end_time": "2023-01-24T17:23:27.548078", + "duration": 94.524497, + "end_time": "2023-01-25T19:36:00.621770", "exception": false, - "start_time": "2023-01-24T17:22:30.309887", + "start_time": "2023-01-25T19:34:26.097273", "status": "completed" }, "tags": [] @@ -724,16 +724,16 @@ "id": "e2a6505c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:23:27.562725Z", - "iopub.status.busy": "2023-01-24T17:23:27.562084Z", - "iopub.status.idle": "2023-01-24T17:23:27.657693Z", - "shell.execute_reply": "2023-01-24T17:23:27.656991Z" + "iopub.execute_input": "2023-01-25T19:36:00.640242Z", + "iopub.status.busy": "2023-01-25T19:36:00.639863Z", + "iopub.status.idle": "2023-01-25T19:36:00.782156Z", + "shell.execute_reply": "2023-01-25T19:36:00.780497Z" }, "papermill": { - "duration": 0.104569, - "end_time": "2023-01-24T17:23:27.659308", + "duration": 0.154506, + "end_time": "2023-01-25T19:36:00.784620", "exception": false, - "start_time": "2023-01-24T17:23:27.554739", + "start_time": "2023-01-25T19:36:00.630114", "status": "completed" }, "tags": [] @@ -761,16 +761,16 @@ "id": "1cbbdff4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:23:27.674206Z", - "iopub.status.busy": "2023-01-24T17:23:27.673973Z", - "iopub.status.idle": "2023-01-24T17:23:27.782596Z", - "shell.execute_reply": "2023-01-24T17:23:27.781920Z" + "iopub.execute_input": "2023-01-25T19:36:00.802762Z", + "iopub.status.busy": "2023-01-25T19:36:00.802415Z", + "iopub.status.idle": "2023-01-25T19:36:00.974144Z", + "shell.execute_reply": "2023-01-25T19:36:00.973107Z" }, "papermill": { - "duration": 0.117964, - "end_time": "2023-01-24T17:23:27.784233", + "duration": 0.183331, + "end_time": "2023-01-25T19:36:00.976336", "exception": false, - "start_time": "2023-01-24T17:23:27.666269", + "start_time": "2023-01-25T19:36:00.793005", "status": "completed" }, "tags": [] @@ -814,17 +814,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 486.648448, - "end_time": "2023-01-24T17:23:28.213984", + "duration": 589.493706, + "end_time": "2023-01-25T19:36:01.611579", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/receptive_fields.ipynb", - "output_path": "/tmp/tmpyb4p8rmz/scratch_nb.ipynb", + "output_path": "/tmp/tmpv4ac79k8/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmpyb4p8rmz", + "output_dir": "/tmp/tmpv4ac79k8", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T17:15:21.565536", + "start_time": "2023-01-25T19:26:12.117873", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/reference_space.ipynb b/doc_template/examples_root/examples/nb/reference_space.ipynb index c6ab97177..198429bc6 100644 --- a/doc_template/examples_root/examples/nb/reference_space.ipynb +++ b/doc_template/examples_root/examples/nb/reference_space.ipynb @@ -5,10 +5,10 @@ "id": "c2ca7c19", "metadata": { "papermill": { - "duration": 0.00785, - "end_time": "2023-01-24T17:36:42.608164", + "duration": 0.008122, + "end_time": "2023-01-25T19:50:55.832860", "exception": false, - "start_time": "2023-01-24T17:36:42.600314", + "start_time": "2023-01-25T19:50:55.824738", "status": "completed" }, "tags": [] @@ -33,10 +33,10 @@ "id": "1b36b259", "metadata": { "papermill": { - "duration": 0.006333, - "end_time": "2023-01-24T17:36:42.620943", + "duration": 0.006665, + "end_time": "2023-01-25T19:50:55.847324", "exception": false, - "start_time": "2023-01-24T17:36:42.614610", + "start_time": "2023-01-25T19:50:55.840659", "status": "completed" }, "tags": [] @@ -55,16 +55,16 @@ "id": "64ad2303", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:42.634563Z", - "iopub.status.busy": "2023-01-24T17:36:42.633835Z", - "iopub.status.idle": "2023-01-24T17:36:44.740162Z", - "shell.execute_reply": "2023-01-24T17:36:44.739498Z" + "iopub.execute_input": "2023-01-25T19:50:55.870072Z", + "iopub.status.busy": "2023-01-25T19:50:55.869714Z", + "iopub.status.idle": "2023-01-25T19:50:59.018962Z", + "shell.execute_reply": "2023-01-25T19:50:59.017800Z" }, "papermill": { - "duration": 2.115063, - "end_time": "2023-01-24T17:36:44.742081", + "duration": 3.160957, + "end_time": "2023-01-25T19:50:59.022394", "exception": false, - "start_time": "2023-01-24T17:36:42.627018", + "start_time": "2023-01-25T19:50:55.861437", "status": "completed" }, "tags": [] @@ -83,16 +83,16 @@ "id": "40e9752b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:44.755096Z", - "iopub.status.busy": "2023-01-24T17:36:44.754736Z", - "iopub.status.idle": "2023-01-24T17:36:44.757913Z", - "shell.execute_reply": "2023-01-24T17:36:44.757397Z" + "iopub.execute_input": "2023-01-25T19:50:59.039464Z", + "iopub.status.busy": "2023-01-25T19:50:59.038779Z", + "iopub.status.idle": "2023-01-25T19:50:59.043863Z", + "shell.execute_reply": "2023-01-25T19:50:59.042876Z" }, "papermill": { - "duration": 0.011511, - "end_time": "2023-01-24T17:36:44.759528", + "duration": 0.01672, + "end_time": "2023-01-25T19:50:59.046676", "exception": false, - "start_time": "2023-01-24T17:36:44.748017", + "start_time": "2023-01-25T19:50:59.029956", "status": "completed" }, "tags": [ @@ -110,16 +110,16 @@ "id": "65c9dcb7", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:44.788763Z", - "iopub.status.busy": "2023-01-24T17:36:44.788332Z", - "iopub.status.idle": "2023-01-24T17:36:50.622075Z", - "shell.execute_reply": "2023-01-24T17:36:50.621403Z" + "iopub.execute_input": "2023-01-25T19:50:59.085438Z", + "iopub.status.busy": "2023-01-25T19:50:59.084777Z", + "iopub.status.idle": "2023-01-25T19:51:04.715228Z", + "shell.execute_reply": "2023-01-25T19:51:04.714154Z" }, "papermill": { - "duration": 5.841644, - "end_time": "2023-01-24T17:36:50.623876", + "duration": 5.641152, + "end_time": "2023-01-25T19:51:04.718143", "exception": false, - "start_time": "2023-01-24T17:36:44.782232", + "start_time": "2023-01-25T19:50:59.076991", "status": "completed" }, "tags": [] @@ -139,16 +139,16 @@ "id": "0bc1327c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:50.637160Z", - "iopub.status.busy": "2023-01-24T17:36:50.636523Z", - "iopub.status.idle": "2023-01-24T17:36:50.644633Z", - "shell.execute_reply": "2023-01-24T17:36:50.644128Z" + "iopub.execute_input": "2023-01-25T19:51:04.737907Z", + "iopub.status.busy": "2023-01-25T19:51:04.737052Z", + "iopub.status.idle": "2023-01-25T19:51:04.748817Z", + "shell.execute_reply": "2023-01-25T19:51:04.747818Z" }, "papermill": { - "duration": 0.016325, - "end_time": "2023-01-24T17:36:50.645989", + "duration": 0.023751, + "end_time": "2023-01-25T19:51:04.752756", "exception": false, - "start_time": "2023-01-24T17:36:50.629664", + "start_time": "2023-01-25T19:51:04.729005", "status": "completed" }, "tags": [] @@ -189,10 +189,10 @@ "id": "d516e479", "metadata": { "papermill": { - "duration": 0.00547, - "end_time": "2023-01-24T17:36:50.657017", + "duration": 0.007339, + "end_time": "2023-01-25T19:51:04.768054", "exception": false, - "start_time": "2023-01-24T17:36:50.651547", + "start_time": "2023-01-25T19:51:04.760715", "status": "completed" }, "tags": [] @@ -214,10 +214,10 @@ "id": "ccaca317", "metadata": { "papermill": { - "duration": 0.005436, - "end_time": "2023-01-24T17:36:50.668067", + "duration": 0.006801, + "end_time": "2023-01-25T19:51:04.782057", "exception": false, - "start_time": "2023-01-24T17:36:50.662631", + "start_time": "2023-01-25T19:51:04.775256", "status": "completed" }, "tags": [] @@ -232,16 +232,16 @@ "id": "8c0a5d30", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:50.680596Z", - "iopub.status.busy": "2023-01-24T17:36:50.679993Z", - "iopub.status.idle": "2023-01-24T17:36:50.687154Z", - "shell.execute_reply": "2023-01-24T17:36:50.686253Z" + "iopub.execute_input": "2023-01-25T19:51:04.798422Z", + "iopub.status.busy": "2023-01-25T19:51:04.797911Z", + "iopub.status.idle": "2023-01-25T19:51:04.805696Z", + "shell.execute_reply": "2023-01-25T19:51:04.804731Z" }, "papermill": { - "duration": 0.015194, - "end_time": "2023-01-24T17:36:50.688736", + "duration": 0.021793, + "end_time": "2023-01-25T19:51:04.811466", "exception": false, - "start_time": "2023-01-24T17:36:50.673542", + "start_time": "2023-01-25T19:51:04.789673", "status": "completed" }, "tags": [] @@ -276,16 +276,16 @@ "id": "17bee9ad", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:50.701044Z", - "iopub.status.busy": "2023-01-24T17:36:50.700615Z", - "iopub.status.idle": "2023-01-24T17:36:50.705409Z", - "shell.execute_reply": "2023-01-24T17:36:50.704898Z" + "iopub.execute_input": "2023-01-25T19:51:04.829256Z", + "iopub.status.busy": "2023-01-25T19:51:04.828392Z", + "iopub.status.idle": "2023-01-25T19:51:04.836077Z", + "shell.execute_reply": "2023-01-25T19:51:04.835055Z" }, "papermill": { - "duration": 0.012491, - "end_time": "2023-01-24T17:36:50.706756", + "duration": 0.018425, + "end_time": "2023-01-25T19:51:04.838213", "exception": false, - "start_time": "2023-01-24T17:36:50.694265", + "start_time": "2023-01-25T19:51:04.819788", "status": "completed" }, "tags": [] @@ -315,16 +315,16 @@ "id": "b3246267", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:50.719283Z", - "iopub.status.busy": "2023-01-24T17:36:50.718866Z", - "iopub.status.idle": "2023-01-24T17:36:50.723106Z", - "shell.execute_reply": "2023-01-24T17:36:50.722555Z" + "iopub.execute_input": "2023-01-25T19:51:04.859612Z", + "iopub.status.busy": "2023-01-25T19:51:04.858855Z", + "iopub.status.idle": "2023-01-25T19:51:04.865279Z", + "shell.execute_reply": "2023-01-25T19:51:04.864440Z" }, "papermill": { - "duration": 0.0119, - "end_time": "2023-01-24T17:36:50.724387", + "duration": 0.019783, + "end_time": "2023-01-25T19:51:04.867686", "exception": false, - "start_time": "2023-01-24T17:36:50.712487", + "start_time": "2023-01-25T19:51:04.847903", "status": "completed" }, "tags": [] @@ -354,16 +354,16 @@ "id": "4a0c1e11", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:50.737360Z", - "iopub.status.busy": "2023-01-24T17:36:50.736794Z", - "iopub.status.idle": "2023-01-24T17:36:50.741479Z", - "shell.execute_reply": "2023-01-24T17:36:50.740822Z" + "iopub.execute_input": "2023-01-25T19:51:04.890461Z", + "iopub.status.busy": "2023-01-25T19:51:04.889560Z", + "iopub.status.idle": "2023-01-25T19:51:04.896259Z", + "shell.execute_reply": "2023-01-25T19:51:04.895234Z" }, "papermill": { - "duration": 0.012632, - "end_time": "2023-01-24T17:36:50.742916", + "duration": 0.021429, + "end_time": "2023-01-25T19:51:04.898270", "exception": false, - "start_time": "2023-01-24T17:36:50.730284", + "start_time": "2023-01-25T19:51:04.876841", "status": "completed" }, "tags": [] @@ -391,10 +391,10 @@ "id": "cf5a0bf3", "metadata": { "papermill": { - "duration": 0.005691, - "end_time": "2023-01-24T17:36:50.754695", + "duration": 0.007619, + "end_time": "2023-01-25T19:51:04.913459", "exception": false, - "start_time": "2023-01-24T17:36:50.749004", + "start_time": "2023-01-25T19:51:04.905840", "status": "completed" }, "tags": [] @@ -414,16 +414,16 @@ "id": "2abd67d4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:50.767610Z", - "iopub.status.busy": "2023-01-24T17:36:50.767031Z", - "iopub.status.idle": "2023-01-24T17:36:53.213726Z", - "shell.execute_reply": "2023-01-24T17:36:53.213091Z" + "iopub.execute_input": "2023-01-25T19:51:04.930924Z", + "iopub.status.busy": "2023-01-25T19:51:04.930323Z", + "iopub.status.idle": "2023-01-25T19:51:06.727547Z", + "shell.execute_reply": "2023-01-25T19:51:06.726507Z" }, "papermill": { - "duration": 2.454992, - "end_time": "2023-01-24T17:36:53.215543", + "duration": 1.809188, + "end_time": "2023-01-25T19:51:06.729893", "exception": false, - "start_time": "2023-01-24T17:36:50.760551", + "start_time": "2023-01-25T19:51:04.920705", "status": "completed" }, "tags": [] @@ -433,7 +433,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "2023-01-24 17:36:50,769 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://download.alleninstitute.org/informatics-archive/current-release/mouse_ccf/annotation/ccf_2017/annotation_25.nrrd\n" + "2023-01-25 19:51:04,933 allensdk.api.api.retrieve_file_over_http INFO Downloading URL: http://download.alleninstitute.org/informatics-archive/current-release/mouse_ccf/annotation/ccf_2017/annotation_25.nrrd\n" ] }, { @@ -460,10 +460,10 @@ "id": "4cd74a9f", "metadata": { "papermill": { - "duration": 0.006223, - "end_time": "2023-01-24T17:36:53.228050", + "duration": 0.006983, + "end_time": "2023-01-25T19:51:06.747423", "exception": false, - "start_time": "2023-01-24T17:36:53.221827", + "start_time": "2023-01-25T19:51:06.740440", "status": "completed" }, "tags": [] @@ -480,16 +480,16 @@ "id": "49b7b3fa", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:53.241210Z", - "iopub.status.busy": "2023-01-24T17:36:53.240773Z", - "iopub.status.idle": "2023-01-24T17:36:54.674082Z", - "shell.execute_reply": "2023-01-24T17:36:54.673399Z" + "iopub.execute_input": "2023-01-25T19:51:06.763578Z", + "iopub.status.busy": "2023-01-25T19:51:06.763264Z", + "iopub.status.idle": "2023-01-25T19:51:08.328592Z", + "shell.execute_reply": "2023-01-25T19:51:08.327324Z" }, "papermill": { - "duration": 1.442151, - "end_time": "2023-01-24T17:36:54.676078", + "duration": 1.576603, + "end_time": "2023-01-25T19:51:08.331207", "exception": false, - "start_time": "2023-01-24T17:36:53.233927", + "start_time": "2023-01-25T19:51:06.754604", "status": "completed" }, "tags": [] @@ -504,10 +504,10 @@ "id": "af3643c4", "metadata": { "papermill": { - "duration": 0.006301, - "end_time": "2023-01-24T17:36:54.688827", + "duration": 0.007863, + "end_time": "2023-01-25T19:51:08.347085", "exception": false, - "start_time": "2023-01-24T17:36:54.682526", + "start_time": "2023-01-25T19:51:08.339222", "status": "completed" }, "tags": [] @@ -521,10 +521,10 @@ "id": "7e61ec1d", "metadata": { "papermill": { - "duration": 0.005965, - "end_time": "2023-01-24T17:36:54.700702", + "duration": 0.007229, + "end_time": "2023-01-25T19:51:08.361752", "exception": false, - "start_time": "2023-01-24T17:36:54.694737", + "start_time": "2023-01-25T19:51:08.354523", "status": "completed" }, "tags": [] @@ -541,16 +541,16 @@ "id": "6231e446", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:54.714212Z", - "iopub.status.busy": "2023-01-24T17:36:54.713636Z", - "iopub.status.idle": "2023-01-24T17:37:14.685519Z", - "shell.execute_reply": "2023-01-24T17:37:14.684863Z" + "iopub.execute_input": "2023-01-25T19:51:08.378658Z", + "iopub.status.busy": "2023-01-25T19:51:08.378289Z", + "iopub.status.idle": "2023-01-25T19:51:28.865475Z", + "shell.execute_reply": "2023-01-25T19:51:28.864424Z" }, "papermill": { - "duration": 19.980993, - "end_time": "2023-01-24T17:37:14.687612", + "duration": 20.49828, + "end_time": "2023-01-25T19:51:28.867600", "exception": false, - "start_time": "2023-01-24T17:36:54.706619", + "start_time": "2023-01-25T19:51:08.369320", "status": "completed" }, "tags": [] @@ -559,7 +559,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 12, @@ -594,10 +594,10 @@ "id": "034a2aac", "metadata": { "papermill": { - "duration": 0.006322, - "end_time": "2023-01-24T17:37:14.700693", + "duration": 0.008052, + "end_time": "2023-01-25T19:51:28.884188", "exception": false, - "start_time": "2023-01-24T17:37:14.694371", + "start_time": "2023-01-25T19:51:28.876136", "status": "completed" }, "tags": [] @@ -612,16 +612,16 @@ "id": "755a9f72", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:37:14.714766Z", - "iopub.status.busy": "2023-01-24T17:37:14.714210Z", - "iopub.status.idle": "2023-01-24T17:37:17.235038Z", - "shell.execute_reply": "2023-01-24T17:37:17.234397Z" + "iopub.execute_input": "2023-01-25T19:51:28.902680Z", + "iopub.status.busy": "2023-01-25T19:51:28.901750Z", + "iopub.status.idle": "2023-01-25T19:51:32.249817Z", + "shell.execute_reply": "2023-01-25T19:51:32.248743Z" }, "papermill": { - "duration": 2.52955, - "end_time": "2023-01-24T17:37:17.236526", + "duration": 3.359871, + "end_time": "2023-01-25T19:51:32.252375", "exception": false, - "start_time": "2023-01-24T17:37:14.706976", + "start_time": "2023-01-25T19:51:28.892504", "status": "completed" }, "tags": [] @@ -630,7 +630,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 13, @@ -665,10 +665,10 @@ "id": "b77b8198", "metadata": { "papermill": { - "duration": 0.006724, - "end_time": "2023-01-24T17:37:17.250266", + "duration": 0.007879, + "end_time": "2023-01-25T19:51:32.270591", "exception": false, - "start_time": "2023-01-24T17:37:17.243542", + "start_time": "2023-01-25T19:51:32.262712", "status": "completed" }, "tags": [] @@ -683,16 +683,16 @@ "id": "0f7ecaaf", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:37:17.264815Z", - "iopub.status.busy": "2023-01-24T17:37:17.264324Z", - "iopub.status.idle": "2023-01-24T17:37:22.693923Z", - "shell.execute_reply": "2023-01-24T17:37:22.692935Z" + "iopub.execute_input": "2023-01-25T19:51:32.290167Z", + "iopub.status.busy": "2023-01-25T19:51:32.289537Z", + "iopub.status.idle": "2023-01-25T19:51:39.454441Z", + "shell.execute_reply": "2023-01-25T19:51:39.453351Z" }, "papermill": { - "duration": 5.438694, - "end_time": "2023-01-24T17:37:22.695501", + "duration": 7.1776, + "end_time": "2023-01-25T19:51:39.456845", "exception": false, - "start_time": "2023-01-24T17:37:17.256807", + "start_time": "2023-01-25T19:51:32.279245", "status": "completed" }, "scrolled": true, @@ -743,10 +743,10 @@ "id": "644b11ad", "metadata": { "papermill": { - "duration": 0.007189, - "end_time": "2023-01-24T17:37:22.709799", + "duration": 0.008433, + "end_time": "2023-01-25T19:51:39.478368", "exception": false, - "start_time": "2023-01-24T17:37:22.702610", + "start_time": "2023-01-25T19:51:39.469935", "status": "completed" }, "tags": [] @@ -760,10 +760,10 @@ "id": "494db219", "metadata": { "papermill": { - "duration": 0.006762, - "end_time": "2023-01-24T17:37:22.723305", + "duration": 0.007962, + "end_time": "2023-01-25T19:51:39.495215", "exception": false, - "start_time": "2023-01-24T17:37:22.716543", + "start_time": "2023-01-25T19:51:39.487253", "status": "completed" }, "tags": [] @@ -780,16 +780,16 @@ "id": "74718542", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:37:22.738437Z", - "iopub.status.busy": "2023-01-24T17:37:22.737747Z", - "iopub.status.idle": "2023-01-24T17:37:22.761837Z", - "shell.execute_reply": "2023-01-24T17:37:22.761263Z" + "iopub.execute_input": "2023-01-25T19:51:39.518374Z", + "iopub.status.busy": "2023-01-25T19:51:39.517796Z", + "iopub.status.idle": "2023-01-25T19:51:39.549464Z", + "shell.execute_reply": "2023-01-25T19:51:39.548383Z" }, "papermill": { - "duration": 0.033172, - "end_time": "2023-01-24T17:37:22.763212", + "duration": 0.052049, + "end_time": "2023-01-25T19:51:39.556278", "exception": false, - "start_time": "2023-01-24T17:37:22.730040", + "start_time": "2023-01-25T19:51:39.504229", "status": "completed" }, "tags": [] @@ -830,10 +830,10 @@ "id": "07992a5f", "metadata": { "papermill": { - "duration": 0.006922, - "end_time": "2023-01-24T17:37:22.777034", + "duration": 0.00827, + "end_time": "2023-01-25T19:51:39.577621", "exception": false, - "start_time": "2023-01-24T17:37:22.770112", + "start_time": "2023-01-25T19:51:39.569351", "status": "completed" }, "tags": [] @@ -848,16 +848,16 @@ "id": "b3a70427", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:37:22.792115Z", - "iopub.status.busy": "2023-01-24T17:37:22.791673Z", - "iopub.status.idle": "2023-01-24T17:37:23.410645Z", - "shell.execute_reply": "2023-01-24T17:37:23.409986Z" + "iopub.execute_input": "2023-01-25T19:51:39.597321Z", + "iopub.status.busy": "2023-01-25T19:51:39.596940Z", + "iopub.status.idle": "2023-01-25T19:51:40.368178Z", + "shell.execute_reply": "2023-01-25T19:51:40.367129Z" }, "papermill": { - "duration": 0.628547, - "end_time": "2023-01-24T17:37:23.412480", + "duration": 0.784789, + "end_time": "2023-01-25T19:51:40.371087", "exception": false, - "start_time": "2023-01-24T17:37:22.783933", + "start_time": "2023-01-25T19:51:39.586298", "status": "completed" }, "tags": [] @@ -866,7 +866,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 16, @@ -896,10 +896,10 @@ "id": "db9710f9", "metadata": { "papermill": { - "duration": 0.007791, - "end_time": "2023-01-24T17:37:23.428409", + "duration": 0.009689, + "end_time": "2023-01-25T19:51:40.392190", "exception": false, - "start_time": "2023-01-24T17:37:23.420618", + "start_time": "2023-01-25T19:51:40.382501", "status": "completed" }, "tags": [] @@ -916,16 +916,16 @@ "id": "a080d4ad", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:37:23.445131Z", - "iopub.status.busy": "2023-01-24T17:37:23.444634Z", - "iopub.status.idle": "2023-01-24T17:37:23.493674Z", - "shell.execute_reply": "2023-01-24T17:37:23.492523Z" + "iopub.execute_input": "2023-01-25T19:51:40.413745Z", + "iopub.status.busy": "2023-01-25T19:51:40.413380Z", + "iopub.status.idle": "2023-01-25T19:51:40.484583Z", + "shell.execute_reply": "2023-01-25T19:51:40.483576Z" }, "papermill": { - "duration": 0.059247, - "end_time": "2023-01-24T17:37:23.495245", + "duration": 0.084381, + "end_time": "2023-01-25T19:51:40.486872", "exception": false, - "start_time": "2023-01-24T17:37:23.435998", + "start_time": "2023-01-25T19:51:40.402491", "status": "completed" }, "tags": [] @@ -963,10 +963,10 @@ "id": "f88637d9", "metadata": { "papermill": { - "duration": 0.0077, - "end_time": "2023-01-24T17:37:23.510723", + "duration": 0.00929, + "end_time": "2023-01-25T19:51:40.506726", "exception": false, - "start_time": "2023-01-24T17:37:23.503023", + "start_time": "2023-01-25T19:51:40.497436", "status": "completed" }, "tags": [] @@ -981,16 +981,16 @@ "id": "1b262a4c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:37:23.527371Z", - "iopub.status.busy": "2023-01-24T17:37:23.526884Z", - "iopub.status.idle": "2023-01-24T17:37:23.720641Z", - "shell.execute_reply": "2023-01-24T17:37:23.719932Z" + "iopub.execute_input": "2023-01-25T19:51:40.527484Z", + "iopub.status.busy": "2023-01-25T19:51:40.526928Z", + "iopub.status.idle": "2023-01-25T19:51:40.808445Z", + "shell.execute_reply": "2023-01-25T19:51:40.807354Z" }, "papermill": { - "duration": 0.20412, - "end_time": "2023-01-24T17:37:23.722433", + "duration": 0.29434, + "end_time": "2023-01-25T19:51:40.810870", "exception": false, - "start_time": "2023-01-24T17:37:23.518313", + "start_time": "2023-01-25T19:51:40.516530", "status": "completed" }, "tags": [] @@ -999,7 +999,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 18, @@ -1027,10 +1027,10 @@ "id": "4b27be9e", "metadata": { "papermill": { - "duration": 0.0086, - "end_time": "2023-01-24T17:37:23.739640", + "duration": 0.009469, + "end_time": "2023-01-25T19:51:40.830973", "exception": false, - "start_time": "2023-01-24T17:37:23.731040", + "start_time": "2023-01-25T19:51:40.821504", "status": "completed" }, "tags": [] @@ -1046,10 +1046,10 @@ "id": "f911d807", "metadata": { "papermill": { - "duration": 0.008183, - "end_time": "2023-01-24T17:37:23.756223", + "duration": 0.009707, + "end_time": "2023-01-25T19:51:40.851160", "exception": false, - "start_time": "2023-01-24T17:37:23.748040", + "start_time": "2023-01-25T19:51:40.841453", "status": "completed" }, "tags": [] @@ -1068,16 +1068,16 @@ "id": "ac4f7819", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:37:23.774133Z", - "iopub.status.busy": "2023-01-24T17:37:23.773588Z", - "iopub.status.idle": "2023-01-24T17:37:24.287783Z", - "shell.execute_reply": "2023-01-24T17:37:24.287115Z" + "iopub.execute_input": "2023-01-25T19:51:40.874247Z", + "iopub.status.busy": "2023-01-25T19:51:40.873660Z", + "iopub.status.idle": "2023-01-25T19:51:41.489354Z", + "shell.execute_reply": "2023-01-25T19:51:41.487983Z" }, "papermill": { - "duration": 0.525245, - "end_time": "2023-01-24T17:37:24.289556", + "duration": 0.630927, + "end_time": "2023-01-25T19:51:41.491778", "exception": false, - "start_time": "2023-01-24T17:37:23.764311", + "start_time": "2023-01-25T19:51:40.860851", "status": "completed" }, "tags": [] @@ -1095,10 +1095,10 @@ "id": "5b6f8c6d", "metadata": { "papermill": { - "duration": 0.008591, - "end_time": "2023-01-24T17:37:24.306655", + "duration": 0.009595, + "end_time": "2023-01-25T19:51:41.514615", "exception": false, - "start_time": "2023-01-24T17:37:24.298064", + "start_time": "2023-01-25T19:51:41.505020", "status": "completed" }, "tags": [] @@ -1128,17 +1128,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 43.121079, - "end_time": "2023-01-24T17:37:24.632679", + "duration": 48.129553, + "end_time": "2023-01-25T19:51:42.150189", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/reference_space.ipynb", - "output_path": "/tmp/tmpxihm43si/scratch_nb.ipynb", + "output_path": "/tmp/tmpvolv8mny/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmpxihm43si", + "output_dir": "/tmp/tmpvolv8mny", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T17:36:41.511600", + "start_time": "2023-01-25T19:50:54.020636", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/visual_behavior_compare_across_trial_types.ipynb b/doc_template/examples_root/examples/nb/visual_behavior_compare_across_trial_types.ipynb index 13b654d85..cc024256a 100644 --- a/doc_template/examples_root/examples/nb/visual_behavior_compare_across_trial_types.ipynb +++ b/doc_template/examples_root/examples/nb/visual_behavior_compare_across_trial_types.ipynb @@ -5,10 +5,10 @@ "id": "182038b8", "metadata": { "papermill": { - "duration": 0.010718, - "end_time": "2023-01-24T16:15:55.095023", + "duration": 0.013675, + "end_time": "2023-01-25T18:18:21.085296", "exception": false, - "start_time": "2023-01-24T16:15:55.084305", + "start_time": "2023-01-25T18:18:21.071621", "status": "completed" }, "pycharm": { @@ -26,10 +26,10 @@ "id": "691c83eb", "metadata": { "papermill": { - "duration": 0.00991, - "end_time": "2023-01-24T16:15:55.114593", + "duration": 0.011747, + "end_time": "2023-01-25T18:18:21.109850", "exception": false, - "start_time": "2023-01-24T16:15:55.104683", + "start_time": "2023-01-25T18:18:21.098103", "status": "completed" }, "pycharm": { @@ -46,10 +46,10 @@ "id": "7856ffdc", "metadata": { "papermill": { - "duration": 0.009057, - "end_time": "2023-01-24T16:15:55.132794", + "duration": 0.011188, + "end_time": "2023-01-25T18:18:21.132667", "exception": false, - "start_time": "2023-01-24T16:15:55.123737", + "start_time": "2023-01-25T18:18:21.121479", "status": "completed" }, "pycharm": { @@ -66,10 +66,10 @@ "id": "d8f75232", "metadata": { "papermill": { - "duration": 0.009087, - "end_time": "2023-01-24T16:15:55.151876", + "duration": 0.012924, + "end_time": "2023-01-25T18:18:21.158371", "exception": false, - "start_time": "2023-01-24T16:15:55.142789", + "start_time": "2023-01-25T18:18:21.145447", "status": "completed" }, "pycharm": { @@ -87,16 +87,16 @@ "id": "59984c1f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:15:55.171923Z", - "iopub.status.busy": "2023-01-24T16:15:55.171374Z", - "iopub.status.idle": "2023-01-24T16:15:57.306715Z", - "shell.execute_reply": "2023-01-24T16:15:57.305941Z" + "iopub.execute_input": "2023-01-25T18:18:21.185810Z", + "iopub.status.busy": "2023-01-25T18:18:21.185470Z", + "iopub.status.idle": "2023-01-25T18:18:24.035522Z", + "shell.execute_reply": "2023-01-25T18:18:24.034378Z" }, "papermill": { - "duration": 2.14783, - "end_time": "2023-01-24T16:15:57.308845", + "duration": 2.867201, + "end_time": "2023-01-25T18:18:24.038301", "exception": false, - "start_time": "2023-01-24T16:15:55.161015", + "start_time": "2023-01-25T18:18:21.171100", "status": "completed" }, "pycharm": { @@ -109,76 +109,76 @@ "name": "stdout", "output_type": "stream", "text": [ - "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.0)\r\n", - "Requirement already satisfied: aiohttp==3.7.4 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.7.4)\r\n", + "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.1)\r\n", + "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", + "Requirement already satisfied: requests-toolbelt<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.10.1)\r\n", + "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", + "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", - "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", - "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", - "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", - "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", - "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", - "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", + "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", + "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", - "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", - "Requirement already satisfied: requests-toolbelt<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.10.1)\r\n", - "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", - "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", - "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", + "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", + "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", + "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", + "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", + "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", + "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", + "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", + "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", + "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", + "Requirement already satisfied: aiohttp==3.7.4 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.7.4)\r\n", + "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", - "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", - "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", - "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", - "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", - "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", + "Requirement already satisfied: requests<3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.28.2)\r\n", "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", - "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", - "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", - "Requirement already satisfied: requests<3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.28.2)\r\n", - "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", - "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", + "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", + "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", + "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", + "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", "Requirement already satisfied: chardet<4.0,>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.4)\r\n", "Requirement already satisfied: yarl<2.0,>=1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (1.8.2)\r\n", "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (6.0.4)\r\n", - "Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.3.7)\r\n", - "Requirement already satisfied: jmespath<1.0.0,>=0.7.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.10.0)\r\n", "Requirement already satisfied: botocore<1.21.0,>=1.20.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (1.20.112)\r\n", + "Requirement already satisfied: jmespath<1.0.0,>=0.7.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.10.0)\r\n", + "Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.3.7)\r\n", "Requirement already satisfied: setuptools in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from glymur==0.8.19->allensdk) (56.0.0)\r\n", - "Requirement already satisfied: pyyaml in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (6.0)\r\n", "Requirement already satisfied: marshmallow<4.0,>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (3.19.0)\r\n", + "Requirement already satisfied: pyyaml in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (6.0)\r\n", "Requirement already satisfied: jsonschema<5,>=2.6.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (4.17.3)\r\n", "Requirement already satisfied: ruamel.yaml<1,>=0.16 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (0.17.21)\r\n", "Requirement already satisfied: MarkupSafe>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jinja2>=3.0.0->allensdk) (2.1.2)\r\n", - "Requirement already satisfied: pillow>=6.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (9.4.0)\r\n", "Requirement already satisfied: pyparsing>=2.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (3.0.9)\r\n", - "Requirement already satisfied: kiwisolver>=1.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (1.4.4)\r\n", + "Requirement already satisfied: pillow>=6.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (9.4.0)\r\n", "Requirement already satisfied: cycler>=0.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (0.11.0)\r\n", + "Requirement already satisfied: kiwisolver>=1.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (1.4.4)\r\n", "Requirement already satisfied: pytz>=2020.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from pandas>=1.1.5->allensdk) (2022.7.1)\r\n", - "Requirement already satisfied: certifi>=2017.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (2022.12.7)\r\n", "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.0.1)\r\n", "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", "Requirement already satisfied: idna<4,>=2.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.4)\r\n", - "Requirement already satisfied: packaging in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (23.0)\r\n", + "Requirement already satisfied: certifi>=2017.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (2022.12.7)\r\n", "Requirement already satisfied: wheel>=0.32.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (0.38.4)\r\n", + "Requirement already satisfied: packaging in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (23.0)\r\n", "Requirement already satisfied: distro in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (1.8.0)\r\n", + "Requirement already satisfied: tifffile>=2019.7.26 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2023.1.23.1)\r\n", "Requirement already satisfied: imageio>=2.4.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2.25.0)\r\n", "Requirement already satisfied: PyWavelets>=1.1.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (1.4.1)\r\n", - "Requirement already satisfied: tifffile>=2019.7.26 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2023.1.23.1)\r\n", "Requirement already satisfied: networkx>=2.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (3.0)\r\n", "Requirement already satisfied: patsy>=0.5.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from statsmodels<=0.13.0->allensdk) (0.5.3)\r\n", "Requirement already satisfied: greenlet!=0.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from sqlalchemy->allensdk) (2.0.1)\r\n", "Requirement already satisfied: blosc2~=2.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.0.0)\r\n", - "Requirement already satisfied: py-cpuinfo in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (9.0.0)\r\n", "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", + "Requirement already satisfied: py-cpuinfo in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (9.0.0)\r\n", "Requirement already satisfied: numexpr>=2.6.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.8.4)\r\n", "Requirement already satisfied: msgpack in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from blosc2~=2.0.0->tables->allensdk) (1.0.4)\r\n", "Requirement already satisfied: pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (0.19.3)\r\n", @@ -198,10 +198,10 @@ "id": "53c1b26a", "metadata": { "papermill": { - "duration": 0.010043, - "end_time": "2023-01-24T16:15:57.329107", + "duration": 0.016426, + "end_time": "2023-01-25T18:18:24.068618", "exception": false, - "start_time": "2023-01-24T16:15:57.319064", + "start_time": "2023-01-25T18:18:24.052192", "status": "completed" }, "pycharm": { @@ -218,10 +218,10 @@ "id": "822342b5", "metadata": { "papermill": { - "duration": 0.009819, - "end_time": "2023-01-24T16:15:57.348807", + "duration": 0.012753, + "end_time": "2023-01-25T18:18:24.094594", "exception": false, - "start_time": "2023-01-24T16:15:57.338988", + "start_time": "2023-01-25T18:18:24.081841", "status": "completed" }, "pycharm": { @@ -242,16 +242,16 @@ "id": "3ed2ca97", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:15:57.370330Z", - "iopub.status.busy": "2023-01-24T16:15:57.369785Z", - "iopub.status.idle": "2023-01-24T16:16:01.365074Z", - "shell.execute_reply": "2023-01-24T16:16:01.363962Z" + "iopub.execute_input": "2023-01-25T18:18:24.122026Z", + "iopub.status.busy": "2023-01-25T18:18:24.121220Z", + "iopub.status.idle": "2023-01-25T18:18:29.443489Z", + "shell.execute_reply": "2023-01-25T18:18:29.442397Z" }, "papermill": { - "duration": 4.00827, - "end_time": "2023-01-24T16:16:01.367066", + "duration": 5.338351, + "end_time": "2023-01-25T18:18:29.445832", "exception": false, - "start_time": "2023-01-24T16:15:57.358796", + "start_time": "2023-01-25T18:18:24.107481", "status": "completed" }, "pycharm": { @@ -265,77 +265,77 @@ "output_type": "stream", "text": [ "Requirement already satisfied: pip in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (22.3.1)\r\n", - "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.0)\r\n", - "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", - "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", - "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", - "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", - "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", - "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", - "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", - "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", - "Requirement already satisfied: requests-toolbelt<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.10.1)\r\n", - "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", + "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.1)\r\n", "Requirement already satisfied: requests<3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.28.2)\r\n", + "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", + "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", + "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", + "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", + "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", + "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", + "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", + "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", - "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", + "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", + "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", + "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", + "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", + "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", + "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", + "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", - "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", + "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", + "Requirement already satisfied: requests-toolbelt<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.10.1)\r\n", + "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", + "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", + "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", - "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", - "Requirement already satisfied: aiohttp==3.7.4 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.7.4)\r\n", - "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", - "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", - "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", - "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", + "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", + "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", + "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", + "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", - "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", - "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", - "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", - "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", - "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", - "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", - "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", - "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", - "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", + "Requirement already satisfied: aiohttp==3.7.4 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.7.4)\r\n", + "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", "Requirement already satisfied: chardet<4.0,>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.4)\r\n", - "Requirement already satisfied: yarl<2.0,>=1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (1.8.2)\r\n", "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", - "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (6.0.4)\r\n", "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", + "Requirement already satisfied: yarl<2.0,>=1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (1.8.2)\r\n", + "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", + "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (6.0.4)\r\n", "Requirement already satisfied: jmespath<1.0.0,>=0.7.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.10.0)\r\n", - "Requirement already satisfied: botocore<1.21.0,>=1.20.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (1.20.112)\r\n", "Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.3.7)\r\n", + "Requirement already satisfied: botocore<1.21.0,>=1.20.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (1.20.112)\r\n", "Requirement already satisfied: setuptools in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from glymur==0.8.19->allensdk) (56.0.0)\r\n", - "Requirement already satisfied: pyyaml in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (6.0)\r\n", "Requirement already satisfied: marshmallow<4.0,>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (3.19.0)\r\n", - "Requirement already satisfied: jsonschema<5,>=2.6.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (4.17.3)\r\n", + "Requirement already satisfied: pyyaml in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (6.0)\r\n", "Requirement already satisfied: ruamel.yaml<1,>=0.16 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (0.17.21)\r\n", + "Requirement already satisfied: jsonschema<5,>=2.6.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (4.17.3)\r\n", "Requirement already satisfied: MarkupSafe>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jinja2>=3.0.0->allensdk) (2.1.2)\r\n", "Requirement already satisfied: kiwisolver>=1.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (1.4.4)\r\n", + "Requirement already satisfied: pyparsing>=2.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (3.0.9)\r\n", "Requirement already satisfied: cycler>=0.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (0.11.0)\r\n", "Requirement already satisfied: pillow>=6.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (9.4.0)\r\n", - "Requirement already satisfied: pyparsing>=2.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (3.0.9)\r\n", "Requirement already satisfied: pytz>=2020.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from pandas>=1.1.5->allensdk) (2022.7.1)\r\n", - "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.0.1)\r\n", "Requirement already satisfied: certifi>=2017.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (2022.12.7)\r\n", - "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.0.1)\r\n", "Requirement already satisfied: idna<4,>=2.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.4)\r\n", + "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", "Requirement already satisfied: distro in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (1.8.0)\r\n", - "Requirement already satisfied: wheel>=0.32.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (0.38.4)\r\n", "Requirement already satisfied: packaging in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (23.0)\r\n", + "Requirement already satisfied: wheel>=0.32.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (0.38.4)\r\n", "Requirement already satisfied: tifffile>=2019.7.26 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2023.1.23.1)\r\n", - "Requirement already satisfied: imageio>=2.4.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2.25.0)\r\n", "Requirement already satisfied: PyWavelets>=1.1.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (1.4.1)\r\n", "Requirement already satisfied: networkx>=2.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (3.0)\r\n", + "Requirement already satisfied: imageio>=2.4.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2.25.0)\r\n", "Requirement already satisfied: patsy>=0.5.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from statsmodels<=0.13.0->allensdk) (0.5.3)\r\n", "Requirement already satisfied: greenlet!=0.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from sqlalchemy->allensdk) (2.0.1)\r\n", - "Requirement already satisfied: py-cpuinfo in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (9.0.0)\r\n", - "Requirement already satisfied: numexpr>=2.6.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.8.4)\r\n", - "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", "Requirement already satisfied: blosc2~=2.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.0.0)\r\n", + "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", + "Requirement already satisfied: numexpr>=2.6.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.8.4)\r\n", + "Requirement already satisfied: py-cpuinfo in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (9.0.0)\r\n", "Requirement already satisfied: msgpack in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from blosc2~=2.0.0->tables->allensdk) (1.0.4)\r\n", "Requirement already satisfied: pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (0.19.3)\r\n", "Requirement already satisfied: pkgutil-resolve-name>=1.3.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (1.3.10)\r\n", @@ -355,10 +355,10 @@ "id": "aa242edf", "metadata": { "papermill": { - "duration": 0.010669, - "end_time": "2023-01-24T16:16:01.388731", + "duration": 0.012876, + "end_time": "2023-01-25T18:18:29.473149", "exception": false, - "start_time": "2023-01-24T16:16:01.378062", + "start_time": "2023-01-25T18:18:29.460273", "status": "completed" }, "pycharm": { @@ -376,16 +376,16 @@ "id": "d9dcf57c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:16:01.411692Z", - "iopub.status.busy": "2023-01-24T16:16:01.410927Z", - "iopub.status.idle": "2023-01-24T16:16:07.646572Z", - "shell.execute_reply": "2023-01-24T16:16:07.645603Z" + "iopub.execute_input": "2023-01-25T18:18:29.501437Z", + "iopub.status.busy": "2023-01-25T18:18:29.500802Z", + "iopub.status.idle": "2023-01-25T18:18:38.079666Z", + "shell.execute_reply": "2023-01-25T18:18:38.078610Z" }, "papermill": { - "duration": 6.249248, - "end_time": "2023-01-24T16:16:07.648452", + "duration": 8.595847, + "end_time": "2023-01-25T18:18:38.081768", "exception": false, - "start_time": "2023-01-24T16:16:01.399204", + "start_time": "2023-01-25T18:18:29.485921", "status": "completed" }, "pycharm": { @@ -406,7 +406,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "allensdk version 2.10.2 or higher is required, you have 2.15.0 installed\n" + "allensdk version 2.10.2 or higher is required, you have 2.15.1 installed\n" ] } ], @@ -430,16 +430,16 @@ "id": "96901062", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:16:07.671839Z", - "iopub.status.busy": "2023-01-24T16:16:07.671179Z", - "iopub.status.idle": "2023-01-24T16:16:07.677833Z", - "shell.execute_reply": "2023-01-24T16:16:07.677228Z" + "iopub.execute_input": "2023-01-25T18:18:38.112586Z", + "iopub.status.busy": "2023-01-25T18:18:38.111011Z", + "iopub.status.idle": "2023-01-25T18:18:38.121900Z", + "shell.execute_reply": "2023-01-25T18:18:38.120972Z" }, "papermill": { - "duration": 0.02005, - "end_time": "2023-01-24T16:16:07.679414", + "duration": 0.028302, + "end_time": "2023-01-25T18:18:38.124188", "exception": false, - "start_time": "2023-01-24T16:16:07.659364", + "start_time": "2023-01-25T18:18:38.095886", "status": "completed" }, "pycharm": { @@ -457,10 +457,10 @@ "id": "069f6fd6", "metadata": { "papermill": { - "duration": 0.010514, - "end_time": "2023-01-24T16:16:07.700450", + "duration": 0.013909, + "end_time": "2023-01-25T18:18:38.151357", "exception": false, - "start_time": "2023-01-24T16:16:07.689936", + "start_time": "2023-01-25T18:18:38.137448", "status": "completed" }, "pycharm": { @@ -478,16 +478,16 @@ "id": "f373c7d4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:16:07.722931Z", - "iopub.status.busy": "2023-01-24T16:16:07.722470Z", - "iopub.status.idle": "2023-01-24T16:16:07.727801Z", - "shell.execute_reply": "2023-01-24T16:16:07.727290Z" + "iopub.execute_input": "2023-01-25T18:18:38.180807Z", + "iopub.status.busy": "2023-01-25T18:18:38.179501Z", + "iopub.status.idle": "2023-01-25T18:18:38.187676Z", + "shell.execute_reply": "2023-01-25T18:18:38.186823Z" }, "papermill": { - "duration": 0.018247, - "end_time": "2023-01-24T16:16:07.729289", + "duration": 0.024904, + "end_time": "2023-01-25T18:18:38.189616", "exception": false, - "start_time": "2023-01-24T16:16:07.711042", + "start_time": "2023-01-25T18:18:38.164712", "status": "completed" }, "pycharm": { @@ -500,7 +500,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/tmp/ipykernel_2071/3777615979.py:1: DeprecationWarning: Importing display from IPython.core.display is deprecated since IPython 7.14, please import from IPython display\n", + "/tmp/ipykernel_1953/3777615979.py:1: DeprecationWarning: Importing display from IPython.core.display is deprecated since IPython 7.14, please import from IPython display\n", " from IPython.core.display import display, HTML\n" ] }, @@ -528,16 +528,16 @@ "id": "669d43ec", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:16:07.752282Z", - "iopub.status.busy": "2023-01-24T16:16:07.751654Z", - "iopub.status.idle": "2023-01-24T16:16:07.754921Z", - "shell.execute_reply": "2023-01-24T16:16:07.754333Z" + "iopub.execute_input": "2023-01-25T18:18:38.219168Z", + "iopub.status.busy": "2023-01-25T18:18:38.218632Z", + "iopub.status.idle": "2023-01-25T18:18:38.223154Z", + "shell.execute_reply": "2023-01-25T18:18:38.222315Z" }, "papermill": { - "duration": 0.016273, - "end_time": "2023-01-24T16:16:07.756366", + "duration": 0.021058, + "end_time": "2023-01-25T18:18:38.225248", "exception": false, - "start_time": "2023-01-24T16:16:07.740093", + "start_time": "2023-01-25T18:18:38.204190", "status": "completed" }, "pycharm": { @@ -558,16 +558,16 @@ "id": "f9fb73be", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:16:07.805979Z", - "iopub.status.busy": "2023-01-24T16:16:07.805430Z", - "iopub.status.idle": "2023-01-24T16:16:09.709756Z", - "shell.execute_reply": "2023-01-24T16:16:09.709175Z" + "iopub.execute_input": "2023-01-25T18:18:38.291060Z", + "iopub.status.busy": "2023-01-25T18:18:38.290177Z", + "iopub.status.idle": "2023-01-25T18:18:40.208954Z", + "shell.execute_reply": "2023-01-25T18:18:40.207855Z" }, "papermill": { - "duration": 1.917247, - "end_time": "2023-01-24T16:16:09.711261", + "duration": 1.935717, + "end_time": "2023-01-25T18:18:40.211326", "exception": false, - "start_time": "2023-01-24T16:16:07.794014", + "start_time": "2023-01-25T18:18:38.275609", "status": "completed" }, "pycharm": { @@ -588,14 +588,14 @@ "\n", "To avoid this warning in the future, make sure that\n", "\n", - "/tmp/tmp2st2qy3w/_downloaded_data.json\n", + "/tmp/tmp_8zamu0b/_downloaded_data.json\n", "\n", "is not deleted between instantiations of this cache\n", " warnings.warn(msg, MissingLocalManifestWarning)\n", - "ophys_session_table.csv: 100%|██████████| 227k/227k [00:00<00:00, 1.70MMB/s] \n", - "behavior_session_table.csv: 100%|██████████| 1.21M/1.21M [00:00<00:00, 9.10MMB/s]\n", - "ophys_experiment_table.csv: 100%|██████████| 610k/610k [00:00<00:00, 5.09MMB/s] \n", - "ophys_cells_table.csv: 100%|██████████| 4.29M/4.29M [00:00<00:00, 21.1MMB/s]\n" + "ophys_session_table.csv: 100%|██████████| 227k/227k [00:00<00:00, 2.41MMB/s]\n", + "behavior_session_table.csv: 100%|██████████| 1.21M/1.21M [00:00<00:00, 9.32MMB/s]\n", + "ophys_experiment_table.csv: 100%|██████████| 610k/610k [00:00<00:00, 4.83MMB/s] \n", + "ophys_cells_table.csv: 100%|██████████| 4.29M/4.29M [00:00<00:00, 16.6MMB/s]\n" ] } ], @@ -610,10 +610,10 @@ "id": "455d84bf", "metadata": { "papermill": { - "duration": 0.011885, - "end_time": "2023-01-24T16:16:09.735307", + "duration": 0.014883, + "end_time": "2023-01-25T18:18:40.241135", "exception": false, - "start_time": "2023-01-24T16:16:09.723422", + "start_time": "2023-01-25T18:18:40.226252", "status": "completed" }, "pycharm": { @@ -631,16 +631,16 @@ "id": "0488c899", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:16:09.760387Z", - "iopub.status.busy": "2023-01-24T16:16:09.759875Z", - "iopub.status.idle": "2023-01-24T16:16:09.782313Z", - "shell.execute_reply": "2023-01-24T16:16:09.781746Z" + "iopub.execute_input": "2023-01-25T18:18:40.272836Z", + "iopub.status.busy": "2023-01-25T18:18:40.271974Z", + "iopub.status.idle": "2023-01-25T18:18:40.305029Z", + "shell.execute_reply": "2023-01-25T18:18:40.304080Z" }, "papermill": { - "duration": 0.036743, - "end_time": "2023-01-24T16:16:09.783792", + "duration": 0.051195, + "end_time": "2023-01-25T18:18:40.307634", "exception": false, - "start_time": "2023-01-24T16:16:09.747049", + "start_time": "2023-01-25T18:18:40.256439", "status": "completed" }, "pycharm": { @@ -727,144 +727,144 @@ " \n", " \n", " \n", - " 1009495880\n", + " 875587491\n", " MESO.1\n", - " Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt\n", - " 499478\n", + " Sst-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt\n", + " 448366\n", " Ai148(TIT2L-GC6f-ICL-tTA2)\n", - " [Vip-IRES-Cre]\n", - " F\n", - " 137.0\n", - " Vip-IRES-Cre\n", + " [Sst-IRES-Cre]\n", + " M\n", + " 128.0\n", + " Sst-IRES-Cre\n", + " GCaMP6f\n", + " 6.0\n", + " 0.0\n", + " 2.0\n", + " 8.0\n", + " 874616920\n", + " 874808131\n", + " 1018028426\n", + " VisualBehaviorMultiscope\n", + " 156\n", + " VISp\n", + " 2019-05-23 12:43:23.986922\n", + " OPHYS_6_images_B\n", + " Novel >1\n", + " False\n", + " B\n", + " 1085394059\n", + " \n", + " \n", + " 882551958\n", + " MESO.1\n", + " Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-G...\n", + " 451787\n", + " Ai93(TITL-GCaMP6f)\n", + " [Slc17a7-IRES2-Cre, Camk2a-tTA]\n", + " M\n", + " 127.0\n", + " Slc17a7-IRES2-Cre\n", " GCaMP6f\n", " 3.0\n", - " 1.0\n", - " 12.0\n", + " 0.0\n", + " 23.0\n", " 2.0\n", - " 1009188505\n", - " 1009248812\n", - " 1018027809\n", - " VisualBehaviorMultiscope4areasx2d\n", - " 181\n", - " VISal\n", - " 2020-02-21 08:31:40.292808\n", - " OPHYS_3_images_G\n", + " 882386411\n", + " 882446265\n", + " 1018027552\n", + " VisualBehaviorMultiscope\n", + " 300\n", + " VISp\n", + " 2019-06-06 13:37:46.000000\n", + " OPHYS_3_images_A\n", " Familiar\n", " False\n", - " G\n", - " 1120142300\n", + " A\n", + " 1085673698\n", " \n", " \n", - " 1098682217\n", - " MESO.1\n", - " Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt\n", - " 554115\n", - " Ai148(TIT2L-GC6f-ICL-tTA2)\n", - " [Vip-IRES-Cre]\n", + " 807752719\n", + " CAM2P.4\n", + " Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-G...\n", + " 425493\n", + " Ai93(TITL-GCaMP6f)\n", + " [Slc17a7-IRES2-Cre, Camk2a-tTA]\n", " M\n", - " 214.0\n", - " Vip-IRES-Cre\n", + " 108.0\n", + " Slc17a7-IRES2-Cre\n", " GCaMP6f\n", - " 5.0\n", + " 3.0\n", " 0.0\n", - " 1.0\n", - " 5.0\n", - " 1098547859\n", - " 1098575712\n", - " 1095625235\n", - " VisualBehaviorMultiscope4areasx2d\n", - " 185\n", - " VISl\n", - " 2021-04-23 10:42:20.572745\n", - " OPHYS_5_images_H_passive\n", - " Novel >1\n", - " True\n", - " H\n", - " 1120144361\n", + " 10.0\n", + " 4.0\n", + " 807208045\n", + " 807356557\n", + " 803517529\n", + " VisualBehavior\n", + " 375\n", + " VISp\n", + " 2019-01-11 18:12:55.000000\n", + " OPHYS_3_images_A\n", + " Familiar\n", + " False\n", + " A\n", + " 911496446\n", " \n", " \n", - " 881001210\n", - " MESO.1\n", + " 1067133170\n", + " CAM2P.3\n", " Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt\n", - " 435431\n", + " 538219\n", " Ai148(TIT2L-GC6f-ICL-tTA2)\n", " [Vip-IRES-Cre]\n", - " M\n", - " 200.0\n", + " F\n", + " 172.0\n", " Vip-IRES-Cre\n", " GCaMP6f\n", - " 1.0\n", - " 0.0\n", - " 42.0\n", + " 3.0\n", " 0.0\n", - " 880498009\n", - " 880668519\n", - " 1018028370\n", - " VisualBehaviorMultiscope\n", - " 225\n", + " 16.0\n", + " 3.0\n", + " 1066943402\n", + " 1066967257\n", + " 1064333290\n", + " VisualBehavior\n", + " 175\n", " VISp\n", - " 2019-06-04 09:17:43.688864\n", - " OPHYS_1_images_A\n", + " 2020-11-30 17:21:53.000000\n", + " OPHYS_3_images_A\n", " Familiar\n", " False\n", " A\n", - " 1085394070\n", + " 1067162984\n", " \n", " \n", - " 1058835245\n", + " 1010092802\n", " MESO.1\n", - " Sst-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt\n", - " 524158\n", + " Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt\n", + " 499478\n", " Ai148(TIT2L-GC6f-ICL-tTA2)\n", - " [Sst-IRES-Cre]\n", - " M\n", - " 220.0\n", - " Sst-IRES-Cre\n", + " [Vip-IRES-Cre]\n", + " F\n", + " 140.0\n", + " Vip-IRES-Cre\n", " GCaMP6f\n", " 2.0\n", " 0.0\n", - " 73.0\n", - " 1.0\n", - " 1058687457\n", - " 1058707708\n", - " 1071274171\n", + " 13.0\n", + " 3.0\n", + " 1009837124\n", + " 1009868108\n", + " 1018027802\n", " VisualBehaviorMultiscope4areasx2d\n", - " 279\n", - " VISp\n", - " 2020-10-23 10:04:31.980165\n", + " 167\n", + " VISl\n", + " 2020-02-24 08:41:59.392974\n", " OPHYS_2_images_G_passive\n", " Familiar\n", " True\n", " G\n", - " 1120142894\n", - " \n", - " \n", - " 951980475\n", - " MESO.1\n", - " Sst-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt\n", - " 457841\n", - " Ai148(TIT2L-GC6f-ICL-tTA2)\n", - " [Sst-IRES-Cre]\n", - " F\n", - " 206.0\n", - " Sst-IRES-Cre\n", - " GCaMP6f\n", - " 1.0\n", - " 0.0\n", - " 65.0\n", - " 0.0\n", - " 951410079\n", - " 951520319\n", - " 1018028339\n", - " VisualBehaviorMultiscope\n", - " 75\n", - " VISp\n", - " 2019-09-20 09:45:29.897856\n", - " OPHYS_1_images_A\n", - " Familiar\n", - " False\n", - " A\n", - " 1085400920\n", + " 1120142398\n", " \n", " \n", "\n", @@ -873,99 +873,107 @@ "text/plain": [ " equipment_name \\\n", "ophys_experiment_id \n", - "1009495880 MESO.1 \n", - "1098682217 MESO.1 \n", - "881001210 MESO.1 \n", - "1058835245 MESO.1 \n", - "951980475 MESO.1 \n", - "\n", - " full_genotype mouse_id \\\n", - "ophys_experiment_id \n", - "1009495880 Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt 499478 \n", - "1098682217 Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt 554115 \n", - "881001210 Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt 435431 \n", - "1058835245 Sst-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt 524158 \n", - "951980475 Sst-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt 457841 \n", - "\n", - " reporter_line driver_line sex \\\n", - "ophys_experiment_id \n", - "1009495880 Ai148(TIT2L-GC6f-ICL-tTA2) [Vip-IRES-Cre] F \n", - "1098682217 Ai148(TIT2L-GC6f-ICL-tTA2) [Vip-IRES-Cre] M \n", - "881001210 Ai148(TIT2L-GC6f-ICL-tTA2) [Vip-IRES-Cre] M \n", - "1058835245 Ai148(TIT2L-GC6f-ICL-tTA2) [Sst-IRES-Cre] M \n", - "951980475 Ai148(TIT2L-GC6f-ICL-tTA2) [Sst-IRES-Cre] F \n", - "\n", - " age_in_days cre_line indicator session_number \\\n", - "ophys_experiment_id \n", - "1009495880 137.0 Vip-IRES-Cre GCaMP6f 3.0 \n", - "1098682217 214.0 Vip-IRES-Cre GCaMP6f 5.0 \n", - "881001210 200.0 Vip-IRES-Cre GCaMP6f 1.0 \n", - "1058835245 220.0 Sst-IRES-Cre GCaMP6f 2.0 \n", - "951980475 206.0 Sst-IRES-Cre GCaMP6f 1.0 \n", + "875587491 MESO.1 \n", + "882551958 MESO.1 \n", + "807752719 CAM2P.4 \n", + "1067133170 CAM2P.3 \n", + "1010092802 MESO.1 \n", + "\n", + " full_genotype \\\n", + "ophys_experiment_id \n", + "875587491 Sst-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt \n", + "882551958 Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-G... \n", + "807752719 Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-G... \n", + "1067133170 Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt \n", + "1010092802 Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt \n", + "\n", + " mouse_id reporter_line \\\n", + "ophys_experiment_id \n", + "875587491 448366 Ai148(TIT2L-GC6f-ICL-tTA2) \n", + "882551958 451787 Ai93(TITL-GCaMP6f) \n", + "807752719 425493 Ai93(TITL-GCaMP6f) \n", + "1067133170 538219 Ai148(TIT2L-GC6f-ICL-tTA2) \n", + "1010092802 499478 Ai148(TIT2L-GC6f-ICL-tTA2) \n", + "\n", + " driver_line sex age_in_days \\\n", + "ophys_experiment_id \n", + "875587491 [Sst-IRES-Cre] M 128.0 \n", + "882551958 [Slc17a7-IRES2-Cre, Camk2a-tTA] M 127.0 \n", + "807752719 [Slc17a7-IRES2-Cre, Camk2a-tTA] M 108.0 \n", + "1067133170 [Vip-IRES-Cre] F 172.0 \n", + "1010092802 [Vip-IRES-Cre] F 140.0 \n", + "\n", + " cre_line indicator session_number \\\n", + "ophys_experiment_id \n", + "875587491 Sst-IRES-Cre GCaMP6f 6.0 \n", + "882551958 Slc17a7-IRES2-Cre GCaMP6f 3.0 \n", + "807752719 Slc17a7-IRES2-Cre GCaMP6f 3.0 \n", + "1067133170 Vip-IRES-Cre GCaMP6f 3.0 \n", + "1010092802 Vip-IRES-Cre GCaMP6f 2.0 \n", "\n", " prior_exposures_to_session_type \\\n", "ophys_experiment_id \n", - "1009495880 1.0 \n", - "1098682217 0.0 \n", - "881001210 0.0 \n", - "1058835245 0.0 \n", - "951980475 0.0 \n", + "875587491 0.0 \n", + "882551958 0.0 \n", + "807752719 0.0 \n", + "1067133170 0.0 \n", + "1010092802 0.0 \n", "\n", " prior_exposures_to_image_set \\\n", "ophys_experiment_id \n", - "1009495880 12.0 \n", - "1098682217 1.0 \n", - "881001210 42.0 \n", - "1058835245 73.0 \n", - "951980475 65.0 \n", + "875587491 2.0 \n", + "882551958 23.0 \n", + "807752719 10.0 \n", + "1067133170 16.0 \n", + "1010092802 13.0 \n", "\n", " prior_exposures_to_omissions ophys_session_id \\\n", "ophys_experiment_id \n", - "1009495880 2.0 1009188505 \n", - "1098682217 5.0 1098547859 \n", - "881001210 0.0 880498009 \n", - "1058835245 1.0 1058687457 \n", - "951980475 0.0 951410079 \n", + "875587491 8.0 874616920 \n", + "882551958 2.0 882386411 \n", + "807752719 4.0 807208045 \n", + "1067133170 3.0 1066943402 \n", + "1010092802 3.0 1009837124 \n", "\n", " behavior_session_id ophys_container_id \\\n", "ophys_experiment_id \n", - "1009495880 1009248812 1018027809 \n", - "1098682217 1098575712 1095625235 \n", - "881001210 880668519 1018028370 \n", - "1058835245 1058707708 1071274171 \n", - "951980475 951520319 1018028339 \n", + "875587491 874808131 1018028426 \n", + "882551958 882446265 1018027552 \n", + "807752719 807356557 803517529 \n", + "1067133170 1066967257 1064333290 \n", + "1010092802 1009868108 1018027802 \n", "\n", " project_code imaging_depth \\\n", "ophys_experiment_id \n", - "1009495880 VisualBehaviorMultiscope4areasx2d 181 \n", - "1098682217 VisualBehaviorMultiscope4areasx2d 185 \n", - "881001210 VisualBehaviorMultiscope 225 \n", - "1058835245 VisualBehaviorMultiscope4areasx2d 279 \n", - "951980475 VisualBehaviorMultiscope 75 \n", + "875587491 VisualBehaviorMultiscope 156 \n", + "882551958 VisualBehaviorMultiscope 300 \n", + "807752719 VisualBehavior 375 \n", + "1067133170 VisualBehavior 175 \n", + "1010092802 VisualBehaviorMultiscope4areasx2d 167 \n", "\n", " targeted_structure date_of_acquisition \\\n", "ophys_experiment_id \n", - "1009495880 VISal 2020-02-21 08:31:40.292808 \n", - "1098682217 VISl 2021-04-23 10:42:20.572745 \n", - "881001210 VISp 2019-06-04 09:17:43.688864 \n", - "1058835245 VISp 2020-10-23 10:04:31.980165 \n", - "951980475 VISp 2019-09-20 09:45:29.897856 \n", + "875587491 VISp 2019-05-23 12:43:23.986922 \n", + "882551958 VISp 2019-06-06 13:37:46.000000 \n", + "807752719 VISp 2019-01-11 18:12:55.000000 \n", + "1067133170 VISp 2020-11-30 17:21:53.000000 \n", + "1010092802 VISl 2020-02-24 08:41:59.392974 \n", "\n", " session_type experience_level passive \\\n", "ophys_experiment_id \n", - "1009495880 OPHYS_3_images_G Familiar False \n", - "1098682217 OPHYS_5_images_H_passive Novel >1 True \n", - "881001210 OPHYS_1_images_A Familiar False \n", - "1058835245 OPHYS_2_images_G_passive Familiar True \n", - "951980475 OPHYS_1_images_A Familiar False \n", + "875587491 OPHYS_6_images_B Novel >1 False \n", + "882551958 OPHYS_3_images_A Familiar False \n", + "807752719 OPHYS_3_images_A Familiar False \n", + "1067133170 OPHYS_3_images_A Familiar False \n", + "1010092802 OPHYS_2_images_G_passive Familiar True \n", "\n", " image_set file_id \n", "ophys_experiment_id \n", - "1009495880 G 1120142300 \n", - "1098682217 H 1120144361 \n", - "881001210 A 1085394070 \n", - "1058835245 G 1120142894 \n", - "951980475 A 1085400920 " + "875587491 B 1085394059 \n", + "882551958 A 1085673698 \n", + "807752719 A 911496446 \n", + "1067133170 A 1067162984 \n", + "1010092802 G 1120142398 " ] }, "execution_count": 9, @@ -982,10 +990,10 @@ "id": "aa293b19", "metadata": { "papermill": { - "duration": 0.01227, - "end_time": "2023-01-24T16:16:09.808367", + "duration": 0.014912, + "end_time": "2023-01-25T18:18:40.339931", "exception": false, - "start_time": "2023-01-24T16:16:09.796097", + "start_time": "2023-01-25T18:18:40.325019", "status": "completed" }, "pycharm": { @@ -1003,16 +1011,16 @@ "id": "eb1fc19f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:16:09.834373Z", - "iopub.status.busy": "2023-01-24T16:16:09.833711Z", - "iopub.status.idle": "2023-01-24T16:16:09.839046Z", - "shell.execute_reply": "2023-01-24T16:16:09.838411Z" + "iopub.execute_input": "2023-01-25T18:18:40.372863Z", + "iopub.status.busy": "2023-01-25T18:18:40.372190Z", + "iopub.status.idle": "2023-01-25T18:18:40.378997Z", + "shell.execute_reply": "2023-01-25T18:18:40.378202Z" }, "papermill": { - "duration": 0.019909, - "end_time": "2023-01-24T16:16:09.840460", + "duration": 0.025053, + "end_time": "2023-01-25T18:18:40.380934", "exception": false, - "start_time": "2023-01-24T16:16:09.820551", + "start_time": "2023-01-25T18:18:40.355881", "status": "completed" }, "pycharm": { @@ -1048,10 +1056,10 @@ "id": "06bd30b5", "metadata": { "papermill": { - "duration": 0.012176, - "end_time": "2023-01-24T16:16:09.865009", + "duration": 0.016276, + "end_time": "2023-01-25T18:18:40.412301", "exception": false, - "start_time": "2023-01-24T16:16:09.852833", + "start_time": "2023-01-25T18:18:40.396025", "status": "completed" }, "pycharm": { @@ -1069,16 +1077,16 @@ "id": "6dd7bf29", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:16:09.891085Z", - "iopub.status.busy": "2023-01-24T16:16:09.890436Z", - "iopub.status.idle": "2023-01-24T16:17:06.932155Z", - "shell.execute_reply": "2023-01-24T16:17:06.931464Z" + "iopub.execute_input": "2023-01-25T18:18:40.445709Z", + "iopub.status.busy": "2023-01-25T18:18:40.444895Z", + "iopub.status.idle": "2023-01-25T18:19:51.597569Z", + "shell.execute_reply": "2023-01-25T18:19:51.596430Z" }, "papermill": { - "duration": 57.057095, - "end_time": "2023-01-24T16:17:06.934426", + "duration": 71.172672, + "end_time": "2023-01-25T18:19:51.600389", "exception": false, - "start_time": "2023-01-24T16:16:09.877331", + "start_time": "2023-01-25T18:18:40.427717", "status": "completed" }, "pycharm": { @@ -1099,7 +1107,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "behavior_ophys_experiment_946476556.nwb: 100%|██████████| 1.80G/1.80G [00:48<00:00, 36.8MMB/s]\n", + "behavior_ophys_experiment_946476556.nwb: 100%|██████████| 1.80G/1.80G [00:59<00:00, 30.4MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", @@ -1118,10 +1126,10 @@ "id": "b02b5e7e", "metadata": { "papermill": { - "duration": 0.027747, - "end_time": "2023-01-24T16:17:06.990791", + "duration": 0.041305, + "end_time": "2023-01-25T18:19:51.682371", "exception": false, - "start_time": "2023-01-24T16:17:06.963044", + "start_time": "2023-01-25T18:19:51.641066", "status": "completed" }, "pycharm": { @@ -1141,16 +1149,16 @@ "id": "a61264da", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:17:07.048903Z", - "iopub.status.busy": "2023-01-24T16:17:07.048166Z", - "iopub.status.idle": "2023-01-24T16:17:07.707402Z", - "shell.execute_reply": "2023-01-24T16:17:07.706780Z" + "iopub.execute_input": "2023-01-25T18:19:51.765559Z", + "iopub.status.busy": "2023-01-25T18:19:51.765108Z", + "iopub.status.idle": "2023-01-25T18:19:52.968330Z", + "shell.execute_reply": "2023-01-25T18:19:52.967363Z" }, "papermill": { - "duration": 0.690021, - "end_time": "2023-01-24T16:17:07.709077", + "duration": 1.245789, + "end_time": "2023-01-25T18:19:52.970294", "exception": false, - "start_time": "2023-01-24T16:17:07.019056", + "start_time": "2023-01-25T18:19:51.724505", "status": "completed" }, "pycharm": { @@ -1201,10 +1209,10 @@ "id": "8745a592", "metadata": { "papermill": { - "duration": 0.030297, - "end_time": "2023-01-24T16:17:07.772238", + "duration": 0.039585, + "end_time": "2023-01-25T18:19:53.049740", "exception": false, - "start_time": "2023-01-24T16:17:07.741941", + "start_time": "2023-01-25T18:19:53.010155", "status": "completed" }, "pycharm": { @@ -1222,16 +1230,16 @@ "id": "1cefa6d3", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:17:07.831311Z", - "iopub.status.busy": "2023-01-24T16:17:07.830461Z", - "iopub.status.idle": "2023-01-24T16:17:08.157320Z", - "shell.execute_reply": "2023-01-24T16:17:08.156650Z" + "iopub.execute_input": "2023-01-25T18:19:53.131390Z", + "iopub.status.busy": "2023-01-25T18:19:53.130996Z", + "iopub.status.idle": "2023-01-25T18:19:53.749965Z", + "shell.execute_reply": "2023-01-25T18:19:53.748962Z" }, "papermill": { - "duration": 0.357919, - "end_time": "2023-01-24T16:17:08.159243", + "duration": 0.662594, + "end_time": "2023-01-25T18:19:53.752726", "exception": false, - "start_time": "2023-01-24T16:17:07.801324", + "start_time": "2023-01-25T18:19:53.090132", "status": "completed" }, "pycharm": { @@ -1254,16 +1262,16 @@ "id": "a78f1aee", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:17:08.218201Z", - "iopub.status.busy": "2023-01-24T16:17:08.217451Z", - "iopub.status.idle": "2023-01-24T16:17:08.238120Z", - "shell.execute_reply": "2023-01-24T16:17:08.237530Z" + "iopub.execute_input": "2023-01-25T18:19:53.840630Z", + "iopub.status.busy": "2023-01-25T18:19:53.840269Z", + "iopub.status.idle": "2023-01-25T18:19:53.871458Z", + "shell.execute_reply": "2023-01-25T18:19:53.870542Z" }, "papermill": { - "duration": 0.051696, - "end_time": "2023-01-24T16:17:08.239531", + "duration": 0.080714, + "end_time": "2023-01-25T18:19:53.873436", "exception": false, - "start_time": "2023-01-24T16:17:08.187835", + "start_time": "2023-01-25T18:19:53.792722", "status": "completed" }, "pycharm": { @@ -1579,10 +1587,10 @@ "id": "5e28f8f2", "metadata": { "papermill": { - "duration": 0.028392, - "end_time": "2023-01-24T16:17:08.331886", + "duration": 0.038603, + "end_time": "2023-01-25T18:19:54.001605", "exception": false, - "start_time": "2023-01-24T16:17:08.303494", + "start_time": "2023-01-25T18:19:53.963002", "status": "completed" }, "pycharm": { @@ -1605,16 +1613,16 @@ "id": "4607061b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:17:08.389988Z", - "iopub.status.busy": "2023-01-24T16:17:08.389431Z", - "iopub.status.idle": "2023-01-24T16:17:08.507070Z", - "shell.execute_reply": "2023-01-24T16:17:08.506490Z" + "iopub.execute_input": "2023-01-25T18:19:54.085506Z", + "iopub.status.busy": "2023-01-25T18:19:54.085148Z", + "iopub.status.idle": "2023-01-25T18:19:54.240858Z", + "shell.execute_reply": "2023-01-25T18:19:54.240016Z" }, "papermill": { - "duration": 0.148289, - "end_time": "2023-01-24T16:17:08.508494", + "duration": 0.201459, + "end_time": "2023-01-25T18:19:54.243298", "exception": false, - "start_time": "2023-01-24T16:17:08.360205", + "start_time": "2023-01-25T18:19:54.041839", "status": "completed" }, "pycharm": { @@ -2609,7 +2617,7 @@ { "data": { "text/html": [ - "
    " + "
    " ], "text/plain": [ "" @@ -2654,10 +2662,10 @@ "id": "42015927", "metadata": { "papermill": { - "duration": 0.029524, - "end_time": "2023-01-24T16:17:08.568635", + "duration": 0.042809, + "end_time": "2023-01-25T18:19:54.334474", "exception": false, - "start_time": "2023-01-24T16:17:08.539111", + "start_time": "2023-01-25T18:19:54.291665", "status": "completed" }, "pycharm": { @@ -2675,16 +2683,16 @@ "id": "a933096e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:17:08.630176Z", - "iopub.status.busy": "2023-01-24T16:17:08.629347Z", - "iopub.status.idle": "2023-01-24T16:17:08.642866Z", - "shell.execute_reply": "2023-01-24T16:17:08.642326Z" + "iopub.execute_input": "2023-01-25T18:19:54.423216Z", + "iopub.status.busy": "2023-01-25T18:19:54.422416Z", + "iopub.status.idle": "2023-01-25T18:19:54.441557Z", + "shell.execute_reply": "2023-01-25T18:19:54.440719Z" }, "papermill": { - "duration": 0.045684, - "end_time": "2023-01-24T16:17:08.644208", + "duration": 0.066446, + "end_time": "2023-01-25T18:19:54.443463", "exception": false, - "start_time": "2023-01-24T16:17:08.598524", + "start_time": "2023-01-25T18:19:54.377017", "status": "completed" }, "pycharm": { @@ -2850,10 +2858,10 @@ "id": "4039d6c9", "metadata": { "papermill": { - "duration": 0.029848, - "end_time": "2023-01-24T16:17:08.703931", + "duration": 0.042245, + "end_time": "2023-01-25T18:19:54.528629", "exception": false, - "start_time": "2023-01-24T16:17:08.674083", + "start_time": "2023-01-25T18:19:54.486384", "status": "completed" }, "pycharm": { @@ -2871,16 +2879,16 @@ "id": "dadad00f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:17:08.765013Z", - "iopub.status.busy": "2023-01-24T16:17:08.764454Z", - "iopub.status.idle": "2023-01-24T16:17:08.778931Z", - "shell.execute_reply": "2023-01-24T16:17:08.778381Z" + "iopub.execute_input": "2023-01-25T18:19:54.619461Z", + "iopub.status.busy": "2023-01-25T18:19:54.618665Z", + "iopub.status.idle": "2023-01-25T18:19:54.639632Z", + "shell.execute_reply": "2023-01-25T18:19:54.638802Z" }, "papermill": { - "duration": 0.046608, - "end_time": "2023-01-24T16:17:08.780223", + "duration": 0.066409, + "end_time": "2023-01-25T18:19:54.641555", "exception": false, - "start_time": "2023-01-24T16:17:08.733615", + "start_time": "2023-01-25T18:19:54.575146", "status": "completed" }, "pycharm": { @@ -3045,10 +3053,10 @@ "id": "7492a498", "metadata": { "papermill": { - "duration": 0.030238, - "end_time": "2023-01-24T16:17:08.840437", + "duration": 0.042048, + "end_time": "2023-01-25T18:19:54.727545", "exception": false, - "start_time": "2023-01-24T16:17:08.810199", + "start_time": "2023-01-25T18:19:54.685497", "status": "completed" }, "pycharm": { @@ -3066,16 +3074,16 @@ "id": "234e317c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:17:08.905655Z", - "iopub.status.busy": "2023-01-24T16:17:08.905084Z", - "iopub.status.idle": "2023-01-24T16:17:08.912709Z", - "shell.execute_reply": "2023-01-24T16:17:08.912179Z" + "iopub.execute_input": "2023-01-25T18:19:54.813627Z", + "iopub.status.busy": "2023-01-25T18:19:54.813074Z", + "iopub.status.idle": "2023-01-25T18:19:54.823110Z", + "shell.execute_reply": "2023-01-25T18:19:54.822150Z" }, "papermill": { - "duration": 0.041953, - "end_time": "2023-01-24T16:17:08.914044", + "duration": 0.055889, + "end_time": "2023-01-25T18:19:54.825064", "exception": false, - "start_time": "2023-01-24T16:17:08.872091", + "start_time": "2023-01-25T18:19:54.769175", "status": "completed" }, "pycharm": { @@ -3116,16 +3124,16 @@ "id": "64c64954", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:17:08.976365Z", - "iopub.status.busy": "2023-01-24T16:17:08.975680Z", - "iopub.status.idle": "2023-01-24T16:17:08.981315Z", - "shell.execute_reply": "2023-01-24T16:17:08.980682Z" + "iopub.execute_input": "2023-01-25T18:19:54.911765Z", + "iopub.status.busy": "2023-01-25T18:19:54.911215Z", + "iopub.status.idle": "2023-01-25T18:19:54.919108Z", + "shell.execute_reply": "2023-01-25T18:19:54.918225Z" }, "papermill": { - "duration": 0.03818, - "end_time": "2023-01-24T16:17:08.982724", + "duration": 0.054537, + "end_time": "2023-01-25T18:19:54.921249", "exception": false, - "start_time": "2023-01-24T16:17:08.944544", + "start_time": "2023-01-25T18:19:54.866712", "status": "completed" }, "pycharm": { @@ -3143,10 +3151,10 @@ "id": "707ed658", "metadata": { "papermill": { - "duration": 0.03019, - "end_time": "2023-01-24T16:17:09.043300", + "duration": 0.047233, + "end_time": "2023-01-25T18:19:55.010590", "exception": false, - "start_time": "2023-01-24T16:17:09.013110", + "start_time": "2023-01-25T18:19:54.963357", "status": "completed" }, "pycharm": { @@ -3163,10 +3171,10 @@ "id": "420fe4f7", "metadata": { "papermill": { - "duration": 0.030009, - "end_time": "2023-01-24T16:17:09.103740", + "duration": 0.042104, + "end_time": "2023-01-25T18:19:55.096057", "exception": false, - "start_time": "2023-01-24T16:17:09.073731", + "start_time": "2023-01-25T18:19:55.053953", "status": "completed" }, "pycharm": { @@ -3185,16 +3193,16 @@ "id": "a6c3aed4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:17:09.165583Z", - "iopub.status.busy": "2023-01-24T16:17:09.165013Z", - "iopub.status.idle": "2023-01-24T16:17:09.172773Z", - "shell.execute_reply": "2023-01-24T16:17:09.172120Z" + "iopub.execute_input": "2023-01-25T18:19:55.185599Z", + "iopub.status.busy": "2023-01-25T18:19:55.185186Z", + "iopub.status.idle": "2023-01-25T18:19:55.194969Z", + "shell.execute_reply": "2023-01-25T18:19:55.194186Z" }, "papermill": { - "duration": 0.041826, - "end_time": "2023-01-24T16:17:09.175552", + "duration": 0.057319, + "end_time": "2023-01-25T18:19:55.196878", "exception": false, - "start_time": "2023-01-24T16:17:09.133726", + "start_time": "2023-01-25T18:19:55.139559", "status": "completed" }, "pycharm": { @@ -3281,10 +3289,10 @@ "id": "55e7d65a", "metadata": { "papermill": { - "duration": 0.030104, - "end_time": "2023-01-24T16:17:09.235784", + "duration": 0.041382, + "end_time": "2023-01-25T18:19:55.285896", "exception": false, - "start_time": "2023-01-24T16:17:09.205680", + "start_time": "2023-01-25T18:19:55.244514", "status": "completed" }, "pycharm": { @@ -3303,16 +3311,16 @@ "id": "9bdafc7a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:17:09.298000Z", - "iopub.status.busy": "2023-01-24T16:17:09.297268Z", - "iopub.status.idle": "2023-01-24T16:17:09.305255Z", - "shell.execute_reply": "2023-01-24T16:17:09.304346Z" + "iopub.execute_input": "2023-01-25T18:19:55.373008Z", + "iopub.status.busy": "2023-01-25T18:19:55.372462Z", + "iopub.status.idle": "2023-01-25T18:19:55.382270Z", + "shell.execute_reply": "2023-01-25T18:19:55.381454Z" }, "papermill": { - "duration": 0.040631, - "end_time": "2023-01-24T16:17:09.306603", + "duration": 0.056077, + "end_time": "2023-01-25T18:19:55.384524", "exception": false, - "start_time": "2023-01-24T16:17:09.265972", + "start_time": "2023-01-25T18:19:55.328447", "status": "completed" }, "pycharm": { @@ -3399,10 +3407,10 @@ "id": "91a0b438", "metadata": { "papermill": { - "duration": 0.030532, - "end_time": "2023-01-24T16:17:09.367724", + "duration": 0.04307, + "end_time": "2023-01-25T18:19:55.470252", "exception": false, - "start_time": "2023-01-24T16:17:09.337192", + "start_time": "2023-01-25T18:19:55.427182", "status": "completed" }, "pycharm": { @@ -3421,16 +3429,16 @@ "id": "3deb4686", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:17:09.432326Z", - "iopub.status.busy": "2023-01-24T16:17:09.431772Z", - "iopub.status.idle": "2023-01-24T16:17:09.450264Z", - "shell.execute_reply": "2023-01-24T16:17:09.449611Z" + "iopub.execute_input": "2023-01-25T18:19:55.560171Z", + "iopub.status.busy": "2023-01-25T18:19:55.559342Z", + "iopub.status.idle": "2023-01-25T18:19:55.586436Z", + "shell.execute_reply": "2023-01-25T18:19:55.585595Z" }, "papermill": { - "duration": 0.0536, - "end_time": "2023-01-24T16:17:09.451793", + "duration": 0.073765, + "end_time": "2023-01-25T18:19:55.588302", "exception": false, - "start_time": "2023-01-24T16:17:09.398193", + "start_time": "2023-01-25T18:19:55.514537", "status": "completed" }, "pycharm": { @@ -3703,10 +3711,10 @@ "id": "d9a000bc", "metadata": { "papermill": { - "duration": 0.031372, - "end_time": "2023-01-24T16:17:09.514283", + "duration": 0.043799, + "end_time": "2023-01-25T18:19:55.680141", "exception": false, - "start_time": "2023-01-24T16:17:09.482911", + "start_time": "2023-01-25T18:19:55.636342", "status": "completed" }, "pycharm": { @@ -3725,16 +3733,16 @@ "id": "0eb66101", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:17:09.577346Z", - "iopub.status.busy": "2023-01-24T16:17:09.576778Z", - "iopub.status.idle": "2023-01-24T16:17:09.593413Z", - "shell.execute_reply": "2023-01-24T16:17:09.592881Z" + "iopub.execute_input": "2023-01-25T18:19:55.778033Z", + "iopub.status.busy": "2023-01-25T18:19:55.777145Z", + "iopub.status.idle": "2023-01-25T18:19:55.800940Z", + "shell.execute_reply": "2023-01-25T18:19:55.800081Z" }, "papermill": { - "duration": 0.049756, - "end_time": "2023-01-24T16:17:09.594719", + "duration": 0.079446, + "end_time": "2023-01-25T18:19:55.802904", "exception": false, - "start_time": "2023-01-24T16:17:09.544963", + "start_time": "2023-01-25T18:19:55.723458", "status": "completed" }, "pycharm": { @@ -3835,10 +3843,10 @@ "id": "ed5fb7af", "metadata": { "papermill": { - "duration": 0.031069, - "end_time": "2023-01-24T16:17:09.656973", + "duration": 0.043964, + "end_time": "2023-01-25T18:19:55.889881", "exception": false, - "start_time": "2023-01-24T16:17:09.625904", + "start_time": "2023-01-25T18:19:55.845917", "status": "completed" }, "pycharm": { @@ -3856,16 +3864,16 @@ "id": "db47e0a7", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:17:09.720450Z", - "iopub.status.busy": "2023-01-24T16:17:09.719881Z", - "iopub.status.idle": "2023-01-24T16:19:55.637380Z", - "shell.execute_reply": "2023-01-24T16:19:55.616021Z" + "iopub.execute_input": "2023-01-25T18:19:55.978368Z", + "iopub.status.busy": "2023-01-25T18:19:55.977752Z", + "iopub.status.idle": "2023-01-25T18:23:08.674796Z", + "shell.execute_reply": "2023-01-25T18:23:08.637052Z" }, "papermill": { - "duration": 166.250208, - "end_time": "2023-01-24T16:19:55.937867", + "duration": 193.17951, + "end_time": "2023-01-25T18:23:09.113022", "exception": false, - "start_time": "2023-01-24T16:17:09.687659", + "start_time": "2023-01-25T18:19:55.933512", "status": "completed" }, "pycharm": { @@ -3903,39 +3911,39 @@ " \n", " \n", " \n", - " 17433855\n", - " 2021.25507\n", - " 1080786975\n", - " 1086678920\n", - " -0.049739\n", + " 50226526\n", + " 2381.37671\n", + " 1080796435\n", + " 1086681038\n", + " 0.001521\n", " \n", " \n", - " 33945788\n", - " 1409.71240\n", - " 1080792960\n", - " 1086672485\n", - " 0.128162\n", + " 17718773\n", + " 2174.24869\n", + " 1080787097\n", + " 1086678936\n", + " -0.031829\n", " \n", " \n", - " 19399847\n", - " 2173.27915\n", - " 1080787632\n", - " 1086679007\n", - " 0.005425\n", + " 1350659\n", + " 2906.26587\n", + " 1080783111\n", + " 1086677820\n", + " -0.024504\n", " \n", " \n", - " 16614187\n", - " 2696.19266\n", - " 1080786795\n", - " 1086678884\n", - " -0.093173\n", + " 12032197\n", + " 4022.77721\n", + " 1080785123\n", + " 1086678512\n", + " 0.056843\n", " \n", " \n", - " 33117458\n", - " 1804.69377\n", - " 1080792773\n", - " 1086679902\n", - " 0.032230\n", + " 34749004\n", + " 203.17765\n", + " 1080793177\n", + " 1086679981\n", + " -0.032444\n", " \n", " \n", "\n", @@ -3943,11 +3951,11 @@ ], "text/plain": [ " timestamps cell_roi_id cell_specimen_id dff\n", - "17433855 2021.25507 1080786975 1086678920 -0.049739\n", - "33945788 1409.71240 1080792960 1086672485 0.128162\n", - "19399847 2173.27915 1080787632 1086679007 0.005425\n", - "16614187 2696.19266 1080786795 1086678884 -0.093173\n", - "33117458 1804.69377 1080792773 1086679902 0.032230" + "50226526 2381.37671 1080796435 1086681038 0.001521\n", + "17718773 2174.24869 1080787097 1086678936 -0.031829\n", + "1350659 2906.26587 1080783111 1086677820 -0.024504\n", + "12032197 4022.77721 1080785123 1086678512 0.056843\n", + "34749004 203.17765 1080793177 1086679981 -0.032444" ] }, "execution_count": 24, @@ -3991,10 +3999,10 @@ "id": "7945757a", "metadata": { "papermill": { - "duration": 0.034708, - "end_time": "2023-01-24T16:19:56.014646", + "duration": 0.047141, + "end_time": "2023-01-25T18:23:09.220776", "exception": false, - "start_time": "2023-01-24T16:19:55.979938", + "start_time": "2023-01-25T18:23:09.173635", "status": "completed" }, "tags": [] @@ -4016,16 +4024,16 @@ "id": "6562d8d1", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:19:56.117733Z", - "iopub.status.busy": "2023-01-24T16:19:56.116390Z", - "iopub.status.idle": "2023-01-24T16:19:56.210365Z", - "shell.execute_reply": "2023-01-24T16:19:56.209715Z" + "iopub.execute_input": "2023-01-25T18:23:09.388554Z", + "iopub.status.busy": "2023-01-25T18:23:09.386720Z", + "iopub.status.idle": "2023-01-25T18:23:09.494084Z", + "shell.execute_reply": "2023-01-25T18:23:09.492638Z" }, "papermill": { - "duration": 0.167131, - "end_time": "2023-01-24T16:19:56.212587", + "duration": 0.228891, + "end_time": "2023-01-25T18:23:09.497159", "exception": false, - "start_time": "2023-01-24T16:19:56.045456", + "start_time": "2023-01-25T18:23:09.268268", "status": "completed" }, "tags": [] @@ -4143,10 +4151,10 @@ "id": "50de7585", "metadata": { "papermill": { - "duration": 0.031621, - "end_time": "2023-01-24T16:19:56.275809", + "duration": 0.04826, + "end_time": "2023-01-25T18:23:09.593069", "exception": false, - "start_time": "2023-01-24T16:19:56.244188", + "start_time": "2023-01-25T18:23:09.544809", "status": "completed" }, "pycharm": { @@ -4170,16 +4178,16 @@ "id": "89921e9a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:19:56.340230Z", - "iopub.status.busy": "2023-01-24T16:19:56.339945Z", - "iopub.status.idle": "2023-01-24T16:19:56.356052Z", - "shell.execute_reply": "2023-01-24T16:19:56.355293Z" + "iopub.execute_input": "2023-01-25T18:23:09.692711Z", + "iopub.status.busy": "2023-01-25T18:23:09.690974Z", + "iopub.status.idle": "2023-01-25T18:23:09.725230Z", + "shell.execute_reply": "2023-01-25T18:23:09.723853Z" }, "papermill": { - "duration": 0.050953, - "end_time": "2023-01-24T16:19:56.357832", + "duration": 0.091303, + "end_time": "2023-01-25T18:23:09.732590", "exception": false, - "start_time": "2023-01-24T16:19:56.306879", + "start_time": "2023-01-25T18:23:09.641287", "status": "completed" }, "tags": [] @@ -4209,16 +4217,16 @@ "id": "fa882550", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:19:56.424756Z", - "iopub.status.busy": "2023-01-24T16:19:56.424014Z", - "iopub.status.idle": "2023-01-24T16:20:00.042186Z", - "shell.execute_reply": "2023-01-24T16:20:00.041494Z" + "iopub.execute_input": "2023-01-25T18:23:09.829461Z", + "iopub.status.busy": "2023-01-25T18:23:09.829078Z", + "iopub.status.idle": "2023-01-25T18:23:15.062045Z", + "shell.execute_reply": "2023-01-25T18:23:15.060922Z" }, "papermill": { - "duration": 3.653319, - "end_time": "2023-01-24T16:20:00.043811", + "duration": 5.285214, + "end_time": "2023-01-25T18:23:15.065608", "exception": false, - "start_time": "2023-01-24T16:19:56.390492", + "start_time": "2023-01-25T18:23:09.780394", "status": "completed" }, "pycharm": { @@ -5214,7 +5222,7 @@ { "data": { "text/html": [ - "
    " + "
    " ], "text/plain": [ "" @@ -5234,10 +5242,10 @@ "id": "50613438", "metadata": { "papermill": { - "duration": 0.032831, - "end_time": "2023-01-24T16:20:00.109976", + "duration": 0.045296, + "end_time": "2023-01-25T18:23:15.158833", "exception": false, - "start_time": "2023-01-24T16:20:00.077145", + "start_time": "2023-01-25T18:23:15.113537", "status": "completed" }, "pycharm": { @@ -5261,16 +5269,16 @@ "id": "08ef4c05", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:00.178414Z", - "iopub.status.busy": "2023-01-24T16:20:00.177718Z", - "iopub.status.idle": "2023-01-24T16:20:05.999962Z", - "shell.execute_reply": "2023-01-24T16:20:05.999300Z" + "iopub.execute_input": "2023-01-25T18:23:15.253432Z", + "iopub.status.busy": "2023-01-25T18:23:15.253061Z", + "iopub.status.idle": "2023-01-25T18:23:23.117597Z", + "shell.execute_reply": "2023-01-25T18:23:23.116351Z" }, "papermill": { - "duration": 5.859209, - "end_time": "2023-01-24T16:20:06.001930", + "duration": 7.915225, + "end_time": "2023-01-25T18:23:23.119611", "exception": false, - "start_time": "2023-01-24T16:20:00.142721", + "start_time": "2023-01-25T18:23:15.204386", "status": "completed" }, "pycharm": { @@ -6265,7 +6273,7 @@ { "data": { "text/html": [ - "
    " + "
    " ], "text/plain": [ "" @@ -6285,10 +6293,10 @@ "id": "e3a83b24", "metadata": { "papermill": { - "duration": 0.033927, - "end_time": "2023-01-24T16:20:06.070937", + "duration": 0.049209, + "end_time": "2023-01-25T18:23:23.219517", "exception": false, - "start_time": "2023-01-24T16:20:06.037010", + "start_time": "2023-01-25T18:23:23.170308", "status": "completed" }, "pycharm": { @@ -6312,16 +6320,16 @@ "id": "115d566e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:06.140508Z", - "iopub.status.busy": "2023-01-24T16:20:06.140028Z", - "iopub.status.idle": "2023-01-24T16:20:08.736028Z", - "shell.execute_reply": "2023-01-24T16:20:08.735467Z" + "iopub.execute_input": "2023-01-25T18:23:23.319906Z", + "iopub.status.busy": "2023-01-25T18:23:23.319329Z", + "iopub.status.idle": "2023-01-25T18:23:26.970119Z", + "shell.execute_reply": "2023-01-25T18:23:26.969122Z" }, "papermill": { - "duration": 2.63257, - "end_time": "2023-01-24T16:20:08.737398", + "duration": 3.702929, + "end_time": "2023-01-25T18:23:26.972385", "exception": false, - "start_time": "2023-01-24T16:20:06.104828", + "start_time": "2023-01-25T18:23:23.269456", "status": "completed" }, "pycharm": { @@ -7316,7 +7324,7 @@ { "data": { "text/html": [ - "
    " + "
    " ], "text/plain": [ "" @@ -7336,10 +7344,10 @@ "id": "4909cc7f", "metadata": { "papermill": { - "duration": 0.035006, - "end_time": "2023-01-24T16:20:08.808400", + "duration": 0.049913, + "end_time": "2023-01-25T18:23:27.071620", "exception": false, - "start_time": "2023-01-24T16:20:08.773394", + "start_time": "2023-01-25T18:23:27.021707", "status": "completed" }, "pycharm": { @@ -7361,16 +7369,16 @@ "id": "e955ab4d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:08.881992Z", - "iopub.status.busy": "2023-01-24T16:20:08.881291Z", - "iopub.status.idle": "2023-01-24T16:20:11.612200Z", - "shell.execute_reply": "2023-01-24T16:20:11.611633Z" + "iopub.execute_input": "2023-01-25T18:23:27.171064Z", + "iopub.status.busy": "2023-01-25T18:23:27.170688Z", + "iopub.status.idle": "2023-01-25T18:23:31.049892Z", + "shell.execute_reply": "2023-01-25T18:23:31.049013Z" }, "papermill": { - "duration": 2.770208, - "end_time": "2023-01-24T16:20:11.613609", + "duration": 3.932433, + "end_time": "2023-01-25T18:23:31.052668", "exception": false, - "start_time": "2023-01-24T16:20:08.843401", + "start_time": "2023-01-25T18:23:27.120235", "status": "completed" }, "pycharm": { @@ -8365,7 +8373,7 @@ { "data": { "text/html": [ - "
    " + "
    " ], "text/plain": [ "" @@ -8405,17 +8413,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 259.151329, - "end_time": "2023-01-24T16:20:13.019990", + "duration": 313.557369, + "end_time": "2023-01-25T18:23:33.120403", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/visual_behavior_compare_across_trial_types.ipynb", - "output_path": "/tmp/tmp2st2qy3w/scratch_nb.ipynb", + "output_path": "/tmp/tmp_8zamu0b/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmp2st2qy3w", + "output_dir": "/tmp/tmp_8zamu0b", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T16:15:53.868661", + "start_time": "2023-01-25T18:18:19.563034", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/visual_behavior_load_ophys_data.ipynb b/doc_template/examples_root/examples/nb/visual_behavior_load_ophys_data.ipynb index 1b5984b81..ae20bc22f 100644 --- a/doc_template/examples_root/examples/nb/visual_behavior_load_ophys_data.ipynb +++ b/doc_template/examples_root/examples/nb/visual_behavior_load_ophys_data.ipynb @@ -5,10 +5,10 @@ "id": "fa2d79b3", "metadata": { "papermill": { - "duration": 0.012939, - "end_time": "2023-01-24T16:29:55.779688", + "duration": 0.017671, + "end_time": "2023-01-25T18:35:58.252813", "exception": false, - "start_time": "2023-01-24T16:29:55.766749", + "start_time": "2023-01-25T18:35:58.235142", "status": "completed" }, "tags": [] @@ -22,10 +22,10 @@ "id": "6d283c3f", "metadata": { "papermill": { - "duration": 0.011319, - "end_time": "2023-01-24T16:29:55.802993", + "duration": 0.015722, + "end_time": "2023-01-25T18:35:58.284163", "exception": false, - "start_time": "2023-01-24T16:29:55.791674", + "start_time": "2023-01-25T18:35:58.268441", "status": "completed" }, "tags": [] @@ -39,10 +39,10 @@ "id": "07dfb4ad", "metadata": { "papermill": { - "duration": 0.011581, - "end_time": "2023-01-24T16:29:55.825914", + "duration": 0.015334, + "end_time": "2023-01-25T18:35:58.313957", "exception": false, - "start_time": "2023-01-24T16:29:55.814333", + "start_time": "2023-01-25T18:35:58.298623", "status": "completed" }, "tags": [] @@ -56,10 +56,10 @@ "id": "b0c3a025", "metadata": { "papermill": { - "duration": 0.012449, - "end_time": "2023-01-24T16:29:55.850539", + "duration": 0.014662, + "end_time": "2023-01-25T18:35:58.343024", "exception": false, - "start_time": "2023-01-24T16:29:55.838090", + "start_time": "2023-01-25T18:35:58.328362", "status": "completed" }, "tags": [] @@ -73,10 +73,10 @@ "id": "9d3109b6", "metadata": { "papermill": { - "duration": 0.011335, - "end_time": "2023-01-24T16:29:55.873383", + "duration": 0.016105, + "end_time": "2023-01-25T18:35:58.373817", "exception": false, - "start_time": "2023-01-24T16:29:55.862048", + "start_time": "2023-01-25T18:35:58.357712", "status": "completed" }, "tags": [] @@ -91,16 +91,16 @@ "id": "a36cbd15", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:55.897470Z", - "iopub.status.busy": "2023-01-24T16:29:55.896903Z", - "iopub.status.idle": "2023-01-24T16:29:58.209286Z", - "shell.execute_reply": "2023-01-24T16:29:58.208483Z" + "iopub.execute_input": "2023-01-25T18:35:58.418318Z", + "iopub.status.busy": "2023-01-25T18:35:58.417650Z", + "iopub.status.idle": "2023-01-25T18:36:01.616319Z", + "shell.execute_reply": "2023-01-25T18:36:01.615089Z" }, "papermill": { - "duration": 2.326567, - "end_time": "2023-01-24T16:29:58.211190", + "duration": 3.228429, + "end_time": "2023-01-25T18:36:01.618969", "exception": false, - "start_time": "2023-01-24T16:29:55.884623", + "start_time": "2023-01-25T18:35:58.390540", "status": "completed" }, "tags": [] @@ -110,80 +110,80 @@ "name": "stdout", "output_type": "stream", "text": [ - "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.0)\r\n", - "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", + "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.1)\r\n", "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", - "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", - "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", - "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", - "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", - "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", + "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", + "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", + "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", - "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", - "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", + "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", + "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", + "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", + "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", + "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", + "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", - "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", + "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", + "Requirement already satisfied: aiohttp==3.7.4 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.7.4)\r\n", + "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", - "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", - "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", - "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", - "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", - "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", - "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", - "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", + "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", "Requirement already satisfied: requests-toolbelt<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.10.1)\r\n", "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", + "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", + "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", + "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", + "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", + "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", + "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", "Requirement already satisfied: requests<3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.28.2)\r\n", - "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", - "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", - "Requirement already satisfied: aiohttp==3.7.4 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.7.4)\r\n", - "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", - "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", - "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", + "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", + "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", + "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", "Requirement already satisfied: chardet<4.0,>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.4)\r\n", + "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", + "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (6.0.4)\r\n", - "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", "Requirement already satisfied: yarl<2.0,>=1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (1.8.2)\r\n", - "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", "Requirement already satisfied: jmespath<1.0.0,>=0.7.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.10.0)\r\n", - "Requirement already satisfied: botocore<1.21.0,>=1.20.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (1.20.112)\r\n", "Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.3.7)\r\n", + "Requirement already satisfied: botocore<1.21.0,>=1.20.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (1.20.112)\r\n", "Requirement already satisfied: setuptools in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from glymur==0.8.19->allensdk) (56.0.0)\r\n", "Requirement already satisfied: pyyaml in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (6.0)\r\n", "Requirement already satisfied: marshmallow<4.0,>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (3.19.0)\r\n", - "Requirement already satisfied: ruamel.yaml<1,>=0.16 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (0.17.21)\r\n", "Requirement already satisfied: jsonschema<5,>=2.6.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (4.17.3)\r\n", + "Requirement already satisfied: ruamel.yaml<1,>=0.16 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (0.17.21)\r\n", "Requirement already satisfied: MarkupSafe>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jinja2>=3.0.0->allensdk) (2.1.2)\r\n", "Requirement already satisfied: pyparsing>=2.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (3.0.9)\r\n", - "Requirement already satisfied: pillow>=6.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (9.4.0)\r\n", - "Requirement already satisfied: kiwisolver>=1.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (1.4.4)\r\n", "Requirement already satisfied: cycler>=0.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (0.11.0)\r\n", + "Requirement already satisfied: kiwisolver>=1.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (1.4.4)\r\n", + "Requirement already satisfied: pillow>=6.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (9.4.0)\r\n", "Requirement already satisfied: pytz>=2020.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from pandas>=1.1.5->allensdk) (2022.7.1)\r\n", - "Requirement already satisfied: certifi>=2017.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (2022.12.7)\r\n", - "Requirement already satisfied: idna<4,>=2.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.4)\r\n", "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", + "Requirement already satisfied: idna<4,>=2.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.4)\r\n", "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.0.1)\r\n", - "Requirement already satisfied: packaging in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (23.0)\r\n", - "Requirement already satisfied: distro in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (1.8.0)\r\n", + "Requirement already satisfied: certifi>=2017.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (2022.12.7)\r\n", "Requirement already satisfied: wheel>=0.32.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (0.38.4)\r\n", - "Requirement already satisfied: imageio>=2.4.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2.25.0)\r\n", - "Requirement already satisfied: networkx>=2.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (3.0)\r\n", + "Requirement already satisfied: distro in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (1.8.0)\r\n", + "Requirement already satisfied: packaging in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (23.0)\r\n", "Requirement already satisfied: tifffile>=2019.7.26 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2023.1.23.1)\r\n", + "Requirement already satisfied: networkx>=2.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (3.0)\r\n", + "Requirement already satisfied: imageio>=2.4.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2.25.0)\r\n", "Requirement already satisfied: PyWavelets>=1.1.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (1.4.1)\r\n", "Requirement already satisfied: patsy>=0.5.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from statsmodels<=0.13.0->allensdk) (0.5.3)\r\n", "Requirement already satisfied: greenlet!=0.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from sqlalchemy->allensdk) (2.0.1)\r\n", - "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", - "Requirement already satisfied: numexpr>=2.6.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.8.4)\r\n", "Requirement already satisfied: py-cpuinfo in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (9.0.0)\r\n", + "Requirement already satisfied: numexpr>=2.6.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.8.4)\r\n", "Requirement already satisfied: blosc2~=2.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.0.0)\r\n", + "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", "Requirement already satisfied: msgpack in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from blosc2~=2.0.0->tables->allensdk) (1.0.4)\r\n", - "Requirement already satisfied: importlib-resources>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (5.10.2)\r\n", "Requirement already satisfied: pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (0.19.3)\r\n", + "Requirement already satisfied: importlib-resources>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (5.10.2)\r\n", "Requirement already satisfied: pkgutil-resolve-name>=1.3.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (1.3.10)\r\n", "Requirement already satisfied: ruamel.yaml.clib>=0.2.6 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from ruamel.yaml<1,>=0.16->hdmf<=3.4.7->allensdk) (0.2.7)\r\n", "Requirement already satisfied: zipp>=3.1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from importlib-resources>=1.4.0->jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (3.11.0)\r\n" @@ -199,10 +199,10 @@ "id": "481c2023", "metadata": { "papermill": { - "duration": 0.012138, - "end_time": "2023-01-24T16:29:58.236034", + "duration": 0.016355, + "end_time": "2023-01-25T18:36:01.651618", "exception": false, - "start_time": "2023-01-24T16:29:58.223896", + "start_time": "2023-01-25T18:36:01.635263", "status": "completed" }, "tags": [] @@ -216,10 +216,10 @@ "id": "8732d954", "metadata": { "papermill": { - "duration": 0.011989, - "end_time": "2023-01-24T16:29:58.260017", + "duration": 0.017843, + "end_time": "2023-01-25T18:36:01.687201", "exception": false, - "start_time": "2023-01-24T16:29:58.248028", + "start_time": "2023-01-25T18:36:01.669358", "status": "completed" }, "tags": [] @@ -237,16 +237,16 @@ "id": "414fb6d0", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:58.285837Z", - "iopub.status.busy": "2023-01-24T16:29:58.285126Z", - "iopub.status.idle": "2023-01-24T16:30:02.294930Z", - "shell.execute_reply": "2023-01-24T16:30:02.293759Z" + "iopub.execute_input": "2023-01-25T18:36:01.731239Z", + "iopub.status.busy": "2023-01-25T18:36:01.730865Z", + "iopub.status.idle": "2023-01-25T18:36:07.246291Z", + "shell.execute_reply": "2023-01-25T18:36:07.245079Z" }, "papermill": { - "duration": 4.024842, - "end_time": "2023-01-24T16:30:02.296811", + "duration": 5.538556, + "end_time": "2023-01-25T18:36:07.249050", "exception": false, - "start_time": "2023-01-24T16:29:58.271969", + "start_time": "2023-01-25T18:36:01.710494", "status": "completed" }, "tags": [] @@ -257,80 +257,80 @@ "output_type": "stream", "text": [ "Requirement already satisfied: pip in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (22.3.1)\r\n", - "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.0)\r\n", - "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", - "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", - "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", - "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", - "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", - "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", - "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", - "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", - "Requirement already satisfied: requests-toolbelt<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.10.1)\r\n", - "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", - "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", - "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", - "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", + "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.1)\r\n", "Requirement already satisfied: aiohttp==3.7.4 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.7.4)\r\n", - "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", - "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", + "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", - "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", - "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", + "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", + "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", + "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", + "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", + "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", - "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", - "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", + "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", + "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", + "Requirement already satisfied: requests-toolbelt<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.10.1)\r\n", + "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", + "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", + "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", + "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", - "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", - "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", - "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", + "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", + "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", - "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", - "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", - "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", - "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", + "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", + "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", + "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", "Requirement already satisfied: requests<3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.28.2)\r\n", - "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", + "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", + "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", + "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", + "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", + "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", + "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", + "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", + "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", + "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", "Requirement already satisfied: yarl<2.0,>=1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (1.8.2)\r\n", - "Requirement already satisfied: chardet<4.0,>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.4)\r\n", + "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", - "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (6.0.4)\r\n", - "Requirement already satisfied: jmespath<1.0.0,>=0.7.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.10.0)\r\n", + "Requirement already satisfied: chardet<4.0,>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.4)\r\n", "Requirement already satisfied: botocore<1.21.0,>=1.20.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (1.20.112)\r\n", + "Requirement already satisfied: jmespath<1.0.0,>=0.7.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.10.0)\r\n", "Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.3.7)\r\n", "Requirement already satisfied: setuptools in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from glymur==0.8.19->allensdk) (56.0.0)\r\n", "Requirement already satisfied: marshmallow<4.0,>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (3.19.0)\r\n", "Requirement already satisfied: pyyaml in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (6.0)\r\n", - "Requirement already satisfied: jsonschema<5,>=2.6.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (4.17.3)\r\n", "Requirement already satisfied: ruamel.yaml<1,>=0.16 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (0.17.21)\r\n", + "Requirement already satisfied: jsonschema<5,>=2.6.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (4.17.3)\r\n", "Requirement already satisfied: MarkupSafe>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jinja2>=3.0.0->allensdk) (2.1.2)\r\n", - "Requirement already satisfied: cycler>=0.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (0.11.0)\r\n", - "Requirement already satisfied: pyparsing>=2.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (3.0.9)\r\n", "Requirement already satisfied: kiwisolver>=1.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (1.4.4)\r\n", + "Requirement already satisfied: pyparsing>=2.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (3.0.9)\r\n", + "Requirement already satisfied: cycler>=0.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (0.11.0)\r\n", "Requirement already satisfied: pillow>=6.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (9.4.0)\r\n", "Requirement already satisfied: pytz>=2020.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from pandas>=1.1.5->allensdk) (2022.7.1)\r\n", "Requirement already satisfied: idna<4,>=2.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.4)\r\n", - "Requirement already satisfied: certifi>=2017.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (2022.12.7)\r\n", "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", + "Requirement already satisfied: certifi>=2017.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (2022.12.7)\r\n", "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.0.1)\r\n", - "Requirement already satisfied: packaging in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (23.0)\r\n", - "Requirement already satisfied: distro in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (1.8.0)\r\n", "Requirement already satisfied: wheel>=0.32.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (0.38.4)\r\n", - "Requirement already satisfied: tifffile>=2019.7.26 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2023.1.23.1)\r\n", - "Requirement already satisfied: networkx>=2.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (3.0)\r\n", + "Requirement already satisfied: distro in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (1.8.0)\r\n", + "Requirement already satisfied: packaging in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (23.0)\r\n", "Requirement already satisfied: imageio>=2.4.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2.25.0)\r\n", + "Requirement already satisfied: networkx>=2.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (3.0)\r\n", + "Requirement already satisfied: tifffile>=2019.7.26 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2023.1.23.1)\r\n", "Requirement already satisfied: PyWavelets>=1.1.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (1.4.1)\r\n", "Requirement already satisfied: patsy>=0.5.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from statsmodels<=0.13.0->allensdk) (0.5.3)\r\n", "Requirement already satisfied: greenlet!=0.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from sqlalchemy->allensdk) (2.0.1)\r\n", - "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", "Requirement already satisfied: py-cpuinfo in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (9.0.0)\r\n", "Requirement already satisfied: numexpr>=2.6.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.8.4)\r\n", + "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", "Requirement already satisfied: blosc2~=2.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.0.0)\r\n", "Requirement already satisfied: msgpack in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from blosc2~=2.0.0->tables->allensdk) (1.0.4)\r\n", - "Requirement already satisfied: pkgutil-resolve-name>=1.3.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (1.3.10)\r\n", "Requirement already satisfied: importlib-resources>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (5.10.2)\r\n", + "Requirement already satisfied: pkgutil-resolve-name>=1.3.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (1.3.10)\r\n", "Requirement already satisfied: pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (0.19.3)\r\n", "Requirement already satisfied: ruamel.yaml.clib>=0.2.6 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from ruamel.yaml<1,>=0.16->hdmf<=3.4.7->allensdk) (0.2.7)\r\n", "Requirement already satisfied: zipp>=3.1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from importlib-resources>=1.4.0->jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (3.11.0)\r\n" @@ -347,10 +347,10 @@ "id": "56d4cc10", "metadata": { "papermill": { - "duration": 0.012852, - "end_time": "2023-01-24T16:30:02.322994", + "duration": 0.017206, + "end_time": "2023-01-25T18:36:07.283533", "exception": false, - "start_time": "2023-01-24T16:30:02.310142", + "start_time": "2023-01-25T18:36:07.266327", "status": "completed" }, "tags": [] @@ -364,10 +364,10 @@ "id": "ba93566e", "metadata": { "papermill": { - "duration": 0.012669, - "end_time": "2023-01-24T16:30:02.348430", + "duration": 0.015728, + "end_time": "2023-01-25T18:36:07.315385", "exception": false, - "start_time": "2023-01-24T16:30:02.335761", + "start_time": "2023-01-25T18:36:07.299657", "status": "completed" }, "tags": [] @@ -382,16 +382,16 @@ "id": "d30d8304", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:02.375654Z", - "iopub.status.busy": "2023-01-24T16:30:02.375088Z", - "iopub.status.idle": "2023-01-24T16:30:03.112089Z", - "shell.execute_reply": "2023-01-24T16:30:03.111419Z" + "iopub.execute_input": "2023-01-25T18:36:07.350734Z", + "iopub.status.busy": "2023-01-25T18:36:07.349782Z", + "iopub.status.idle": "2023-01-25T18:36:08.412684Z", + "shell.execute_reply": "2023-01-25T18:36:08.411434Z" }, "papermill": { - "duration": 0.752824, - "end_time": "2023-01-24T16:30:03.113972", + "duration": 1.08381, + "end_time": "2023-01-25T18:36:08.415669", "exception": false, - "start_time": "2023-01-24T16:30:02.361148", + "start_time": "2023-01-25T18:36:07.331859", "status": "completed" }, "tags": [] @@ -411,16 +411,16 @@ "id": "1cb3d49a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:03.142156Z", - "iopub.status.busy": "2023-01-24T16:30:03.141487Z", - "iopub.status.idle": "2023-01-24T16:30:03.161753Z", - "shell.execute_reply": "2023-01-24T16:30:03.161148Z" + "iopub.execute_input": "2023-01-25T18:36:08.452905Z", + "iopub.status.busy": "2023-01-25T18:36:08.452176Z", + "iopub.status.idle": "2023-01-25T18:36:08.480909Z", + "shell.execute_reply": "2023-01-25T18:36:08.479872Z" }, "papermill": { - "duration": 0.036284, - "end_time": "2023-01-24T16:30:03.163513", + "duration": 0.049829, + "end_time": "2023-01-25T18:36:08.483337", "exception": false, - "start_time": "2023-01-24T16:30:03.127229", + "start_time": "2023-01-25T18:36:08.433508", "status": "completed" }, "tags": [] @@ -439,16 +439,16 @@ "id": "97faa4e8", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:03.190603Z", - "iopub.status.busy": "2023-01-24T16:30:03.190134Z", - "iopub.status.idle": "2023-01-24T16:30:03.207805Z", - "shell.execute_reply": "2023-01-24T16:30:03.207121Z" + "iopub.execute_input": "2023-01-25T18:36:08.518333Z", + "iopub.status.busy": "2023-01-25T18:36:08.517617Z", + "iopub.status.idle": "2023-01-25T18:36:08.543353Z", + "shell.execute_reply": "2023-01-25T18:36:08.542281Z" }, "papermill": { - "duration": 0.032931, - "end_time": "2023-01-24T16:30:03.209359", + "duration": 0.04597, + "end_time": "2023-01-25T18:36:08.546048", "exception": false, - "start_time": "2023-01-24T16:30:03.176428", + "start_time": "2023-01-25T18:36:08.500078", "status": "completed" }, "tags": [] @@ -457,7 +457,7 @@ { "data": { "text/plain": [ - "'2.15.0'" + "'2.15.1'" ] }, "execution_count": 5, @@ -477,16 +477,16 @@ "id": "405a1273", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:03.236704Z", - "iopub.status.busy": "2023-01-24T16:30:03.236038Z", - "iopub.status.idle": "2023-01-24T16:30:07.566709Z", - "shell.execute_reply": "2023-01-24T16:30:07.566011Z" + "iopub.execute_input": "2023-01-25T18:36:08.582694Z", + "iopub.status.busy": "2023-01-25T18:36:08.582128Z", + "iopub.status.idle": "2023-01-25T18:36:14.691968Z", + "shell.execute_reply": "2023-01-25T18:36:14.690836Z" }, "papermill": { - "duration": 4.346661, - "end_time": "2023-01-24T16:30:07.568947", + "duration": 6.131605, + "end_time": "2023-01-25T18:36:14.694809", "exception": false, - "start_time": "2023-01-24T16:30:03.222286", + "start_time": "2023-01-25T18:36:08.563204", "status": "completed" }, "tags": [] @@ -511,10 +511,10 @@ "id": "7cc23267", "metadata": { "papermill": { - "duration": 0.013032, - "end_time": "2023-01-24T16:30:07.595408", + "duration": 0.017026, + "end_time": "2023-01-25T18:36:14.729742", "exception": false, - "start_time": "2023-01-24T16:30:07.582376", + "start_time": "2023-01-25T18:36:14.712716", "status": "completed" }, "tags": [] @@ -528,10 +528,10 @@ "id": "78ca57d2", "metadata": { "papermill": { - "duration": 0.012773, - "end_time": "2023-01-24T16:30:07.621126", + "duration": 0.016405, + "end_time": "2023-01-25T18:36:14.762689", "exception": false, - "start_time": "2023-01-24T16:30:07.608353", + "start_time": "2023-01-25T18:36:14.746284", "status": "completed" }, "tags": [] @@ -546,16 +546,16 @@ "id": "03ece77c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:07.648566Z", - "iopub.status.busy": "2023-01-24T16:30:07.647841Z", - "iopub.status.idle": "2023-01-24T16:30:07.669282Z", - "shell.execute_reply": "2023-01-24T16:30:07.668663Z" + "iopub.execute_input": "2023-01-25T18:36:14.801708Z", + "iopub.status.busy": "2023-01-25T18:36:14.800785Z", + "iopub.status.idle": "2023-01-25T18:36:14.832291Z", + "shell.execute_reply": "2023-01-25T18:36:14.831017Z" }, "papermill": { - "duration": 0.036845, - "end_time": "2023-01-24T16:30:07.670767", + "duration": 0.053242, + "end_time": "2023-01-25T18:36:14.834653", "exception": false, - "start_time": "2023-01-24T16:30:07.633922", + "start_time": "2023-01-25T18:36:14.781411", "status": "completed" }, "tags": [ @@ -573,16 +573,16 @@ "id": "2bf58cc5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:07.746951Z", - "iopub.status.busy": "2023-01-24T16:30:07.746704Z", - "iopub.status.idle": "2023-01-24T16:30:09.664307Z", - "shell.execute_reply": "2023-01-24T16:30:09.663636Z" + "iopub.execute_input": "2023-01-25T18:36:14.945277Z", + "iopub.status.busy": "2023-01-25T18:36:14.944564Z", + "iopub.status.idle": "2023-01-25T18:36:16.563748Z", + "shell.execute_reply": "2023-01-25T18:36:16.561204Z" }, "papermill": { - "duration": 1.933081, - "end_time": "2023-01-24T16:30:09.665848", + "duration": 1.642071, + "end_time": "2023-01-25T18:36:16.566493", "exception": false, - "start_time": "2023-01-24T16:30:07.732767", + "start_time": "2023-01-25T18:36:14.924422", "status": "completed" }, "scrolled": false, @@ -601,14 +601,14 @@ "\n", "To avoid this warning in the future, make sure that\n", "\n", - "/tmp/tmpx3mwmwjk/_downloaded_data.json\n", + "/tmp/tmpbj647vnm/_downloaded_data.json\n", "\n", "is not deleted between instantiations of this cache\n", " warnings.warn(msg, MissingLocalManifestWarning)\n", - "ophys_session_table.csv: 100%|██████████| 227k/227k [00:00<00:00, 2.59MMB/s]\n", - "behavior_session_table.csv: 100%|██████████| 1.21M/1.21M [00:00<00:00, 8.84MMB/s]\n", - "ophys_experiment_table.csv: 100%|██████████| 610k/610k [00:00<00:00, 4.72MMB/s] \n", - "ophys_cells_table.csv: 100%|██████████| 4.29M/4.29M [00:00<00:00, 15.4MMB/s]\n" + "ophys_session_table.csv: 100%|██████████| 227k/227k [00:00<00:00, 3.33MMB/s]\n", + "behavior_session_table.csv: 100%|██████████| 1.21M/1.21M [00:00<00:00, 10.8MMB/s]\n", + "ophys_experiment_table.csv: 100%|██████████| 610k/610k [00:00<00:00, 8.13MMB/s]\n", + "ophys_cells_table.csv: 100%|██████████| 4.29M/4.29M [00:00<00:00, 19.2MMB/s]\n" ] }, { @@ -649,10 +649,10 @@ "id": "aa6aace5", "metadata": { "papermill": { - "duration": 0.014294, - "end_time": "2023-01-24T16:30:09.694564", + "duration": 0.01984, + "end_time": "2023-01-25T18:36:16.605480", "exception": false, - "start_time": "2023-01-24T16:30:09.680270", + "start_time": "2023-01-25T18:36:16.585640", "status": "completed" }, "tags": [] @@ -668,10 +668,10 @@ "id": "9fcac26c", "metadata": { "papermill": { - "duration": 0.01385, - "end_time": "2023-01-24T16:30:09.722343", + "duration": 0.018233, + "end_time": "2023-01-25T18:36:16.643545", "exception": false, - "start_time": "2023-01-24T16:30:09.708493", + "start_time": "2023-01-25T18:36:16.625312", "status": "completed" }, "tags": [] @@ -686,16 +686,16 @@ "id": "df00e2db", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:09.751751Z", - "iopub.status.busy": "2023-01-24T16:30:09.751212Z", - "iopub.status.idle": "2023-01-24T16:30:09.792488Z", - "shell.execute_reply": "2023-01-24T16:30:09.791871Z" + "iopub.execute_input": "2023-01-25T18:36:16.686188Z", + "iopub.status.busy": "2023-01-25T18:36:16.685486Z", + "iopub.status.idle": "2023-01-25T18:36:16.746331Z", + "shell.execute_reply": "2023-01-25T18:36:16.744992Z" }, "papermill": { - "duration": 0.057772, - "end_time": "2023-01-24T16:30:09.794022", + "duration": 0.083074, + "end_time": "2023-01-25T18:36:16.748748", "exception": false, - "start_time": "2023-01-24T16:30:09.736250", + "start_time": "2023-01-25T18:36:16.665674", "status": "completed" }, "scrolled": false, @@ -772,124 +772,124 @@ " \n", " \n", " \n", - " 994955433\n", - " CAM2P.3\n", + " 1097813088\n", + " MESO.1\n", + " Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt\n", + " 554115\n", + " Ai148(TIT2L-GC6f-ICL-tTA2)\n", + " [Vip-IRES-Cre]\n", + " M\n", + " 210.0\n", + " Vip-IRES-Cre\n", + " GCaMP6f\n", + " 2.0\n", + " ...\n", + " 1095625254\n", + " VisualBehaviorMultiscope4areasx2d\n", + " 175\n", + " VISam\n", + " 2021-04-19 10:42:35.121600\n", + " OPHYS_2_images_G_passive\n", + " Familiar\n", + " True\n", + " G\n", + " 1120144258\n", + " \n", + " \n", + " 969841035\n", + " MESO.1\n", " Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-G...\n", - " 491060\n", + " 477052\n", " Ai93(TITL-GCaMP6f)\n", " [Slc17a7-IRES2-Cre, Camk2a-tTA]\n", " M\n", - " 124.0\n", + " 138.0\n", " Slc17a7-IRES2-Cre\n", " GCaMP6f\n", - " 5.0\n", + " 6.0\n", " ...\n", - " 991913064\n", - " VisualBehaviorTask1B\n", + " 1018028018\n", + " VisualBehaviorMultiscope4areasx2d\n", " 175\n", " VISp\n", - " 2019-12-17 17:15:08.000000\n", - " OPHYS_5_images_A_passive\n", + " 2019-10-17 14:13:21.849653\n", + " OPHYS_6_images_H\n", " Novel >1\n", - " True\n", - " A\n", - " 995011003\n", + " False\n", + " H\n", + " 1120140545\n", " \n", " \n", - " 877669815\n", + " 994082673\n", " MESO.1\n", - " Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt\n", - " 449653\n", - " Ai148(TIT2L-GC6f-ICL-tTA2)\n", - " [Vip-IRES-Cre]\n", + " Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-G...\n", + " 485152\n", + " Ai93(TITL-GCaMP6f)\n", + " [Slc17a7-IRES2-Cre, Camk2a-tTA]\n", " M\n", - " 124.0\n", - " Vip-IRES-Cre\n", + " 154.0\n", + " Slc17a7-IRES2-Cre\n", " GCaMP6f\n", " 4.0\n", " ...\n", - " 1018027602\n", + " 1018027781\n", " VisualBehaviorMultiscope\n", - " 300\n", + " 365\n", " VISp\n", - " 2019-05-22 08:08:26.000000\n", + " 2019-12-12 11:01:10.923267\n", " OPHYS_4_images_B\n", - " Novel 1\n", + " Novel >1\n", " False\n", " B\n", - " 1085395801\n", + " 1085395822\n", " \n", " \n", - " 972760510\n", + " 975608412\n", " MESO.1\n", " Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-G...\n", - " 481295\n", + " 484408\n", " Ai93(TITL-GCaMP6f)\n", " [Slc17a7-IRES2-Cre, Camk2a-tTA]\n", - " F\n", - " 124.0\n", + " M\n", + " 116.0\n", " Slc17a7-IRES2-Cre\n", " GCaMP6f\n", - " 5.0\n", + " 1.0\n", " ...\n", - " 1018027954\n", + " 1018027756\n", " VisualBehaviorMultiscope4areasx2d\n", - " 169\n", - " VISam\n", - " 2019-10-24 08:45:11.305568\n", - " OPHYS_5_images_H_passive\n", - " Novel >1\n", - " True\n", - " H\n", - " 1120141157\n", - " \n", - " \n", - " 1083070132\n", - " CAM2P.3\n", - " Sst-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt\n", - " 546819\n", - " Ai148(TIT2L-GC6f-ICL-tTA2)\n", - " [Sst-IRES-Cre]\n", - " M\n", - " 188.0\n", - " Sst-IRES-Cre\n", - " GCaMP6f\n", - " 4.0\n", - " ...\n", - " 1080284671\n", - " VisualBehavior\n", - " 275\n", - " VISp\n", - " 2021-02-10 20:33:56.000000\n", - " OPHYS_4_images_B\n", - " Novel 1\n", + " 267\n", + " VISl\n", + " 2019-11-01 08:45:55.294593\n", + " OPHYS_1_images_G\n", + " Familiar\n", " False\n", - " B\n", - " 1120143057\n", + " G\n", + " 1120141300\n", " \n", " \n", - " 886587164\n", + " 872499160\n", " MESO.1\n", " Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt\n", - " 435431\n", + " 449653\n", " Ai148(TIT2L-GC6f-ICL-tTA2)\n", " [Vip-IRES-Cre]\n", " M\n", - " 209.0\n", + " 122.0\n", " Vip-IRES-Cre\n", " GCaMP6f\n", - " 6.0\n", + " 3.0\n", " ...\n", - " 1018028374\n", + " 1018027605\n", " VisualBehaviorMultiscope\n", - " 270\n", - " VISp\n", - " 2019-06-13 09:15:34.000000\n", - " OPHYS_6_images_B\n", - " Novel >1\n", + " 75\n", + " VISl\n", + " 2019-05-20 08:53:27.000000\n", + " OPHYS_3_images_A\n", + " Familiar\n", " False\n", - " B\n", - " 1085673447\n", + " A\n", + " 1085396608\n", " \n", " \n", "\n", @@ -899,75 +899,75 @@ "text/plain": [ " equipment_name \\\n", "ophys_experiment_id \n", - "994955433 CAM2P.3 \n", - "877669815 MESO.1 \n", - "972760510 MESO.1 \n", - "1083070132 CAM2P.3 \n", - "886587164 MESO.1 \n", + "1097813088 MESO.1 \n", + "969841035 MESO.1 \n", + "994082673 MESO.1 \n", + "975608412 MESO.1 \n", + "872499160 MESO.1 \n", "\n", " full_genotype \\\n", "ophys_experiment_id \n", - "994955433 Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-G... \n", - "877669815 Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt \n", - "972760510 Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-G... \n", - "1083070132 Sst-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt \n", - "886587164 Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt \n", + "1097813088 Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt \n", + "969841035 Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-G... \n", + "994082673 Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-G... \n", + "975608412 Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-G... \n", + "872499160 Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt \n", "\n", " mouse_id reporter_line \\\n", "ophys_experiment_id \n", - "994955433 491060 Ai93(TITL-GCaMP6f) \n", - "877669815 449653 Ai148(TIT2L-GC6f-ICL-tTA2) \n", - "972760510 481295 Ai93(TITL-GCaMP6f) \n", - "1083070132 546819 Ai148(TIT2L-GC6f-ICL-tTA2) \n", - "886587164 435431 Ai148(TIT2L-GC6f-ICL-tTA2) \n", + "1097813088 554115 Ai148(TIT2L-GC6f-ICL-tTA2) \n", + "969841035 477052 Ai93(TITL-GCaMP6f) \n", + "994082673 485152 Ai93(TITL-GCaMP6f) \n", + "975608412 484408 Ai93(TITL-GCaMP6f) \n", + "872499160 449653 Ai148(TIT2L-GC6f-ICL-tTA2) \n", "\n", " driver_line sex age_in_days \\\n", "ophys_experiment_id \n", - "994955433 [Slc17a7-IRES2-Cre, Camk2a-tTA] M 124.0 \n", - "877669815 [Vip-IRES-Cre] M 124.0 \n", - "972760510 [Slc17a7-IRES2-Cre, Camk2a-tTA] F 124.0 \n", - "1083070132 [Sst-IRES-Cre] M 188.0 \n", - "886587164 [Vip-IRES-Cre] M 209.0 \n", + "1097813088 [Vip-IRES-Cre] M 210.0 \n", + "969841035 [Slc17a7-IRES2-Cre, Camk2a-tTA] M 138.0 \n", + "994082673 [Slc17a7-IRES2-Cre, Camk2a-tTA] M 154.0 \n", + "975608412 [Slc17a7-IRES2-Cre, Camk2a-tTA] M 116.0 \n", + "872499160 [Vip-IRES-Cre] M 122.0 \n", "\n", " cre_line indicator session_number ... \\\n", "ophys_experiment_id ... \n", - "994955433 Slc17a7-IRES2-Cre GCaMP6f 5.0 ... \n", - "877669815 Vip-IRES-Cre GCaMP6f 4.0 ... \n", - "972760510 Slc17a7-IRES2-Cre GCaMP6f 5.0 ... \n", - "1083070132 Sst-IRES-Cre GCaMP6f 4.0 ... \n", - "886587164 Vip-IRES-Cre GCaMP6f 6.0 ... \n", + "1097813088 Vip-IRES-Cre GCaMP6f 2.0 ... \n", + "969841035 Slc17a7-IRES2-Cre GCaMP6f 6.0 ... \n", + "994082673 Slc17a7-IRES2-Cre GCaMP6f 4.0 ... \n", + "975608412 Slc17a7-IRES2-Cre GCaMP6f 1.0 ... \n", + "872499160 Vip-IRES-Cre GCaMP6f 3.0 ... \n", "\n", " ophys_container_id project_code \\\n", "ophys_experiment_id \n", - "994955433 991913064 VisualBehaviorTask1B \n", - "877669815 1018027602 VisualBehaviorMultiscope \n", - "972760510 1018027954 VisualBehaviorMultiscope4areasx2d \n", - "1083070132 1080284671 VisualBehavior \n", - "886587164 1018028374 VisualBehaviorMultiscope \n", + "1097813088 1095625254 VisualBehaviorMultiscope4areasx2d \n", + "969841035 1018028018 VisualBehaviorMultiscope4areasx2d \n", + "994082673 1018027781 VisualBehaviorMultiscope \n", + "975608412 1018027756 VisualBehaviorMultiscope4areasx2d \n", + "872499160 1018027605 VisualBehaviorMultiscope \n", "\n", " imaging_depth targeted_structure \\\n", "ophys_experiment_id \n", - "994955433 175 VISp \n", - "877669815 300 VISp \n", - "972760510 169 VISam \n", - "1083070132 275 VISp \n", - "886587164 270 VISp \n", + "1097813088 175 VISam \n", + "969841035 175 VISp \n", + "994082673 365 VISp \n", + "975608412 267 VISl \n", + "872499160 75 VISl \n", "\n", " date_of_acquisition session_type \\\n", "ophys_experiment_id \n", - "994955433 2019-12-17 17:15:08.000000 OPHYS_5_images_A_passive \n", - "877669815 2019-05-22 08:08:26.000000 OPHYS_4_images_B \n", - "972760510 2019-10-24 08:45:11.305568 OPHYS_5_images_H_passive \n", - "1083070132 2021-02-10 20:33:56.000000 OPHYS_4_images_B \n", - "886587164 2019-06-13 09:15:34.000000 OPHYS_6_images_B \n", + "1097813088 2021-04-19 10:42:35.121600 OPHYS_2_images_G_passive \n", + "969841035 2019-10-17 14:13:21.849653 OPHYS_6_images_H \n", + "994082673 2019-12-12 11:01:10.923267 OPHYS_4_images_B \n", + "975608412 2019-11-01 08:45:55.294593 OPHYS_1_images_G \n", + "872499160 2019-05-20 08:53:27.000000 OPHYS_3_images_A \n", "\n", " experience_level passive image_set file_id \n", "ophys_experiment_id \n", - "994955433 Novel >1 True A 995011003 \n", - "877669815 Novel 1 False B 1085395801 \n", - "972760510 Novel >1 True H 1120141157 \n", - "1083070132 Novel 1 False B 1120143057 \n", - "886587164 Novel >1 False B 1085673447 \n", + "1097813088 Familiar True G 1120144258 \n", + "969841035 Novel >1 False H 1120140545 \n", + "994082673 Novel >1 False B 1085395822 \n", + "975608412 Familiar False G 1120141300 \n", + "872499160 Familiar False A 1085396608 \n", "\n", "[5 rows x 25 columns]" ] @@ -987,10 +987,10 @@ "id": "b44e1dd3", "metadata": { "papermill": { - "duration": 0.014538, - "end_time": "2023-01-24T16:30:09.823193", + "duration": 0.01785, + "end_time": "2023-01-25T18:36:16.787156", "exception": false, - "start_time": "2023-01-24T16:30:09.808655", + "start_time": "2023-01-25T18:36:16.769306", "status": "completed" }, "tags": [] @@ -1005,16 +1005,16 @@ "id": "503a2b36", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:09.853345Z", - "iopub.status.busy": "2023-01-24T16:30:09.852850Z", - "iopub.status.idle": "2023-01-24T16:30:09.876548Z", - "shell.execute_reply": "2023-01-24T16:30:09.875843Z" + "iopub.execute_input": "2023-01-25T18:36:16.828155Z", + "iopub.status.busy": "2023-01-25T18:36:16.827540Z", + "iopub.status.idle": "2023-01-25T18:36:16.860731Z", + "shell.execute_reply": "2023-01-25T18:36:16.859677Z" }, "papermill": { - "duration": 0.040344, - "end_time": "2023-01-24T16:30:09.877992", + "duration": 0.056703, + "end_time": "2023-01-25T18:36:16.863481", "exception": false, - "start_time": "2023-01-24T16:30:09.837648", + "start_time": "2023-01-25T18:36:16.806778", "status": "completed" }, "tags": [] @@ -1041,10 +1041,10 @@ "id": "42983282", "metadata": { "papermill": { - "duration": 0.01431, - "end_time": "2023-01-24T16:30:09.906639", + "duration": 0.018212, + "end_time": "2023-01-25T18:36:16.900234", "exception": false, - "start_time": "2023-01-24T16:30:09.892329", + "start_time": "2023-01-25T18:36:16.882022", "status": "completed" }, "tags": [] @@ -1059,16 +1059,16 @@ "id": "87c01bc6", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:09.937348Z", - "iopub.status.busy": "2023-01-24T16:30:09.936674Z", - "iopub.status.idle": "2023-01-24T16:30:09.959183Z", - "shell.execute_reply": "2023-01-24T16:30:09.958467Z" + "iopub.execute_input": "2023-01-25T18:36:16.941689Z", + "iopub.status.busy": "2023-01-25T18:36:16.940899Z", + "iopub.status.idle": "2023-01-25T18:36:16.971739Z", + "shell.execute_reply": "2023-01-25T18:36:16.970720Z" }, "papermill": { - "duration": 0.039595, - "end_time": "2023-01-24T16:30:09.960727", + "duration": 0.054118, + "end_time": "2023-01-25T18:36:16.973970", "exception": false, - "start_time": "2023-01-24T16:30:09.921132", + "start_time": "2023-01-25T18:36:16.919852", "status": "completed" }, "tags": [] @@ -1091,10 +1091,10 @@ "id": "834ca007", "metadata": { "papermill": { - "duration": 0.014356, - "end_time": "2023-01-24T16:30:09.989432", + "duration": 0.017698, + "end_time": "2023-01-25T18:36:17.010100", "exception": false, - "start_time": "2023-01-24T16:30:09.975076", + "start_time": "2023-01-25T18:36:16.992402", "status": "completed" }, "tags": [] @@ -1108,10 +1108,10 @@ "id": "644cfe8b", "metadata": { "papermill": { - "duration": 0.014292, - "end_time": "2023-01-24T16:30:10.018027", + "duration": 0.019675, + "end_time": "2023-01-25T18:36:17.049249", "exception": false, - "start_time": "2023-01-24T16:30:10.003735", + "start_time": "2023-01-25T18:36:17.029574", "status": "completed" }, "tags": [] @@ -1126,16 +1126,16 @@ "id": "0a3483d1", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:10.049036Z", - "iopub.status.busy": "2023-01-24T16:30:10.048323Z", - "iopub.status.idle": "2023-01-24T16:30:22.343978Z", - "shell.execute_reply": "2023-01-24T16:30:22.343285Z" + "iopub.execute_input": "2023-01-25T18:36:17.089634Z", + "iopub.status.busy": "2023-01-25T18:36:17.088525Z", + "iopub.status.idle": "2023-01-25T18:36:31.791583Z", + "shell.execute_reply": "2023-01-25T18:36:31.790498Z" }, "papermill": { - "duration": 12.313659, - "end_time": "2023-01-24T16:30:22.346204", + "duration": 14.72558, + "end_time": "2023-01-25T18:36:31.794394", "exception": false, - "start_time": "2023-01-24T16:30:10.032545", + "start_time": "2023-01-25T18:36:17.068814", "status": "completed" }, "tags": [] @@ -1145,7 +1145,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "behavior_ophys_experiment_957759570.nwb: 100%|██████████| 277M/277M [00:08<00:00, 32.9MMB/s]\n", + "behavior_ophys_experiment_957759570.nwb: 100%|██████████| 277M/277M [00:08<00:00, 31.0MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", @@ -1165,10 +1165,10 @@ "id": "ce17e0cc", "metadata": { "papermill": { - "duration": 0.017356, - "end_time": "2023-01-24T16:30:22.381456", + "duration": 0.022298, + "end_time": "2023-01-25T18:36:31.840954", "exception": false, - "start_time": "2023-01-24T16:30:22.364100", + "start_time": "2023-01-25T18:36:31.818656", "status": "completed" }, "tags": [] @@ -1183,16 +1183,16 @@ "id": "389f06e1", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:22.417667Z", - "iopub.status.busy": "2023-01-24T16:30:22.417094Z", - "iopub.status.idle": "2023-01-24T16:30:22.440817Z", - "shell.execute_reply": "2023-01-24T16:30:22.440121Z" + "iopub.execute_input": "2023-01-25T18:36:31.889164Z", + "iopub.status.busy": "2023-01-25T18:36:31.888778Z", + "iopub.status.idle": "2023-01-25T18:36:31.921528Z", + "shell.execute_reply": "2023-01-25T18:36:31.920502Z" }, "papermill": { - "duration": 0.043627, - "end_time": "2023-01-24T16:30:22.442350", + "duration": 0.059336, + "end_time": "2023-01-25T18:36:31.924066", "exception": false, - "start_time": "2023-01-24T16:30:22.398723", + "start_time": "2023-01-25T18:36:31.864730", "status": "completed" }, "tags": [] @@ -1245,10 +1245,10 @@ "id": "ddd1b275", "metadata": { "papermill": { - "duration": 0.017272, - "end_time": "2023-01-24T16:30:22.477045", + "duration": 0.022948, + "end_time": "2023-01-25T18:36:31.971410", "exception": false, - "start_time": "2023-01-24T16:30:22.459773", + "start_time": "2023-01-25T18:36:31.948462", "status": "completed" }, "tags": [] @@ -1262,10 +1262,10 @@ "id": "cb3b8565", "metadata": { "papermill": { - "duration": 0.017202, - "end_time": "2023-01-24T16:30:22.511491", + "duration": 0.021704, + "end_time": "2023-01-25T18:36:32.016408", "exception": false, - "start_time": "2023-01-24T16:30:22.494289", + "start_time": "2023-01-25T18:36:31.994704", "status": "completed" }, "tags": [] @@ -1280,16 +1280,16 @@ "id": "e7f56aae", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:22.547475Z", - "iopub.status.busy": "2023-01-24T16:30:22.546930Z", - "iopub.status.idle": "2023-01-24T16:30:22.732043Z", - "shell.execute_reply": "2023-01-24T16:30:22.731464Z" + "iopub.execute_input": "2023-01-25T18:36:32.066865Z", + "iopub.status.busy": "2023-01-25T18:36:32.066468Z", + "iopub.status.idle": "2023-01-25T18:36:32.312596Z", + "shell.execute_reply": "2023-01-25T18:36:32.311635Z" }, "papermill": { - "duration": 0.204929, - "end_time": "2023-01-24T16:30:22.733682", + "duration": 0.274992, + "end_time": "2023-01-25T18:36:32.314871", "exception": false, - "start_time": "2023-01-24T16:30:22.528753", + "start_time": "2023-01-25T18:36:32.039879", "status": "completed" }, "scrolled": true, @@ -1299,7 +1299,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 15, @@ -1326,10 +1326,10 @@ "id": "f4ca3a39", "metadata": { "papermill": { - "duration": 0.019202, - "end_time": "2023-01-24T16:30:22.772868", + "duration": 0.025881, + "end_time": "2023-01-25T18:36:32.366029", "exception": false, - "start_time": "2023-01-24T16:30:22.753666", + "start_time": "2023-01-25T18:36:32.340148", "status": "completed" }, "tags": [] @@ -1343,10 +1343,10 @@ "id": "c698febb", "metadata": { "papermill": { - "duration": 0.018924, - "end_time": "2023-01-24T16:30:22.810916", + "duration": 0.027331, + "end_time": "2023-01-25T18:36:32.419421", "exception": false, - "start_time": "2023-01-24T16:30:22.791992", + "start_time": "2023-01-25T18:36:32.392090", "status": "completed" }, "tags": [] @@ -1361,16 +1361,16 @@ "id": "edac839d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:22.851038Z", - "iopub.status.busy": "2023-01-24T16:30:22.850288Z", - "iopub.status.idle": "2023-01-24T16:30:23.144935Z", - "shell.execute_reply": "2023-01-24T16:30:23.144207Z" + "iopub.execute_input": "2023-01-25T18:36:32.476929Z", + "iopub.status.busy": "2023-01-25T18:36:32.476541Z", + "iopub.status.idle": "2023-01-25T18:36:32.869122Z", + "shell.execute_reply": "2023-01-25T18:36:32.868014Z" }, "papermill": { - "duration": 0.31672, - "end_time": "2023-01-24T16:30:23.146581", + "duration": 0.425401, + "end_time": "2023-01-25T18:36:32.871480", "exception": false, - "start_time": "2023-01-24T16:30:22.829861", + "start_time": "2023-01-25T18:36:32.446079", "status": "completed" }, "scrolled": false, @@ -1429,48 +1429,48 @@ " \n", " \n", " \n", - " 1086609334\n", - " 1080722805\n", - " 15\n", + " 1086608491\n", + " 1080722870\n", + " 19\n", " 0\n", " 6.0\n", " 10.0\n", " 7.0\n", " 17.0\n", " True\n", - " 19\n", - " 23\n", - " 359\n", + " 28\n", + " 38\n", + " 67\n", " [[False, False, False, False, False, False, Fa...\n", " \n", " \n", - " 1086608630\n", - " 1080722886\n", - " 24\n", + " 1086610611\n", + " 1080722823\n", + " 18\n", " 0\n", " 6.0\n", " 10.0\n", " 7.0\n", " 17.0\n", " True\n", - " 21\n", - " 416\n", - " 114\n", + " 11\n", + " 48\n", + " 154\n", " [[False, False, False, False, False, False, Fa...\n", " \n", " \n", - " 1086607903\n", - " 1080722793\n", - " 17\n", + " 1086608432\n", + " 1080722725\n", + " 13\n", " 0\n", " 6.0\n", " 10.0\n", " 7.0\n", " 17.0\n", " True\n", - " 16\n", - " 266\n", - " 438\n", + " 19\n", + " 468\n", + " 237\n", " [[False, False, False, False, False, False, Fa...\n", " \n", " \n", @@ -1480,27 +1480,27 @@ "text/plain": [ " cell_roi_id height mask_image_plane max_correction_down \\\n", "cell_specimen_id \n", - "1086609334 1080722805 15 0 6.0 \n", - "1086608630 1080722886 24 0 6.0 \n", - "1086607903 1080722793 17 0 6.0 \n", + "1086608491 1080722870 19 0 6.0 \n", + "1086610611 1080722823 18 0 6.0 \n", + "1086608432 1080722725 13 0 6.0 \n", "\n", " max_correction_left max_correction_right \\\n", "cell_specimen_id \n", - "1086609334 10.0 7.0 \n", - "1086608630 10.0 7.0 \n", - "1086607903 10.0 7.0 \n", + "1086608491 10.0 7.0 \n", + "1086610611 10.0 7.0 \n", + "1086608432 10.0 7.0 \n", "\n", " max_correction_up valid_roi width x y \\\n", "cell_specimen_id \n", - "1086609334 17.0 True 19 23 359 \n", - "1086608630 17.0 True 21 416 114 \n", - "1086607903 17.0 True 16 266 438 \n", + "1086608491 17.0 True 28 38 67 \n", + "1086610611 17.0 True 11 48 154 \n", + "1086608432 17.0 True 19 468 237 \n", "\n", " roi_mask \n", "cell_specimen_id \n", - "1086609334 [[False, False, False, False, False, False, Fa... \n", - "1086608630 [[False, False, False, False, False, False, Fa... \n", - "1086607903 [[False, False, False, False, False, False, Fa... " + "1086608491 [[False, False, False, False, False, False, Fa... \n", + "1086610611 [[False, False, False, False, False, False, Fa... \n", + "1086608432 [[False, False, False, False, False, False, Fa... " ] }, "execution_count": 16, @@ -1517,10 +1517,10 @@ "id": "70171598", "metadata": { "papermill": { - "duration": 0.019206, - "end_time": "2023-01-24T16:30:23.186038", + "duration": 0.026045, + "end_time": "2023-01-25T18:36:32.923825", "exception": false, - "start_time": "2023-01-24T16:30:23.166832", + "start_time": "2023-01-25T18:36:32.897780", "status": "completed" }, "tags": [] @@ -1541,16 +1541,16 @@ "id": "39d0c032", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:23.226239Z", - "iopub.status.busy": "2023-01-24T16:30:23.225533Z", - "iopub.status.idle": "2023-01-24T16:30:23.362351Z", - "shell.execute_reply": "2023-01-24T16:30:23.361640Z" + "iopub.execute_input": "2023-01-25T18:36:32.975970Z", + "iopub.status.busy": "2023-01-25T18:36:32.975373Z", + "iopub.status.idle": "2023-01-25T18:36:33.181999Z", + "shell.execute_reply": "2023-01-25T18:36:33.180955Z" }, "papermill": { - "duration": 0.158788, - "end_time": "2023-01-24T16:30:23.364067", + "duration": 0.235358, + "end_time": "2023-01-25T18:36:33.184349", "exception": false, - "start_time": "2023-01-24T16:30:23.205279", + "start_time": "2023-01-25T18:36:32.948991", "status": "completed" }, "tags": [] @@ -1559,7 +1559,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 17, @@ -1586,10 +1586,10 @@ "id": "fa6ccf26", "metadata": { "papermill": { - "duration": 0.019779, - "end_time": "2023-01-24T16:30:23.403995", + "duration": 0.026268, + "end_time": "2023-01-25T18:36:33.235566", "exception": false, - "start_time": "2023-01-24T16:30:23.384216", + "start_time": "2023-01-25T18:36:33.209298", "status": "completed" }, "tags": [] @@ -1604,16 +1604,16 @@ "id": "c7ff142e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:23.445017Z", - "iopub.status.busy": "2023-01-24T16:30:23.444284Z", - "iopub.status.idle": "2023-01-24T16:30:23.481539Z", - "shell.execute_reply": "2023-01-24T16:30:23.480848Z" + "iopub.execute_input": "2023-01-25T18:36:33.291951Z", + "iopub.status.busy": "2023-01-25T18:36:33.291334Z", + "iopub.status.idle": "2023-01-25T18:36:33.342314Z", + "shell.execute_reply": "2023-01-25T18:36:33.341301Z" }, "papermill": { - "duration": 0.059576, - "end_time": "2023-01-24T16:30:23.483185", + "duration": 0.083805, + "end_time": "2023-01-25T18:36:33.344797", "exception": false, - "start_time": "2023-01-24T16:30:23.423609", + "start_time": "2023-01-25T18:36:33.260992", "status": "completed" }, "tags": [] @@ -1746,10 +1746,10 @@ "id": "bfd89dea", "metadata": { "papermill": { - "duration": 0.019851, - "end_time": "2023-01-24T16:30:23.523303", + "duration": 0.025631, + "end_time": "2023-01-25T18:36:33.397255", "exception": false, - "start_time": "2023-01-24T16:30:23.503452", + "start_time": "2023-01-25T18:36:33.371624", "status": "completed" }, "tags": [] @@ -1766,16 +1766,16 @@ "id": "a7209321", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:23.564792Z", - "iopub.status.busy": "2023-01-24T16:30:23.564232Z", - "iopub.status.idle": "2023-01-24T16:30:23.590271Z", - "shell.execute_reply": "2023-01-24T16:30:23.589608Z" + "iopub.execute_input": "2023-01-25T18:36:33.451681Z", + "iopub.status.busy": "2023-01-25T18:36:33.450806Z", + "iopub.status.idle": "2023-01-25T18:36:33.487383Z", + "shell.execute_reply": "2023-01-25T18:36:33.486335Z" }, "papermill": { - "duration": 0.048709, - "end_time": "2023-01-24T16:30:23.591773", + "duration": 0.067059, + "end_time": "2023-01-25T18:36:33.490938", "exception": false, - "start_time": "2023-01-24T16:30:23.543064", + "start_time": "2023-01-25T18:36:33.423879", "status": "completed" }, "scrolled": true, @@ -1804,10 +1804,10 @@ "id": "c6eb62fe", "metadata": { "papermill": { - "duration": 0.019908, - "end_time": "2023-01-24T16:30:23.631881", + "duration": 0.026948, + "end_time": "2023-01-25T18:36:33.543805", "exception": false, - "start_time": "2023-01-24T16:30:23.611973", + "start_time": "2023-01-25T18:36:33.516857", "status": "completed" }, "tags": [] @@ -1822,16 +1822,16 @@ "id": "f5206b1e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:23.673338Z", - "iopub.status.busy": "2023-01-24T16:30:23.673023Z", - "iopub.status.idle": "2023-01-24T16:30:23.700422Z", - "shell.execute_reply": "2023-01-24T16:30:23.699136Z" + "iopub.execute_input": "2023-01-25T18:36:33.599706Z", + "iopub.status.busy": "2023-01-25T18:36:33.598744Z", + "iopub.status.idle": "2023-01-25T18:36:33.634600Z", + "shell.execute_reply": "2023-01-25T18:36:33.633156Z" }, "papermill": { - "duration": 0.052114, - "end_time": "2023-01-24T16:30:23.703815", + "duration": 0.066945, + "end_time": "2023-01-25T18:36:33.636656", "exception": false, - "start_time": "2023-01-24T16:30:23.651701", + "start_time": "2023-01-25T18:36:33.569711", "status": "completed" }, "tags": [] @@ -1859,10 +1859,10 @@ "id": "7088aec1", "metadata": { "papermill": { - "duration": 0.019991, - "end_time": "2023-01-24T16:30:23.746202", + "duration": 0.026665, + "end_time": "2023-01-25T18:36:33.691551", "exception": false, - "start_time": "2023-01-24T16:30:23.726211", + "start_time": "2023-01-25T18:36:33.664886", "status": "completed" }, "tags": [] @@ -1877,16 +1877,16 @@ "id": "9d52c084", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:23.787641Z", - "iopub.status.busy": "2023-01-24T16:30:23.787109Z", - "iopub.status.idle": "2023-01-24T16:30:23.816476Z", - "shell.execute_reply": "2023-01-24T16:30:23.815692Z" + "iopub.execute_input": "2023-01-25T18:36:33.745265Z", + "iopub.status.busy": "2023-01-25T18:36:33.744668Z", + "iopub.status.idle": "2023-01-25T18:36:33.791647Z", + "shell.execute_reply": "2023-01-25T18:36:33.790618Z" }, "papermill": { - "duration": 0.051888, - "end_time": "2023-01-24T16:30:23.818023", + "duration": 0.075959, + "end_time": "2023-01-25T18:36:33.793832", "exception": false, - "start_time": "2023-01-24T16:30:23.766135", + "start_time": "2023-01-25T18:36:33.717873", "status": "completed" }, "scrolled": true, @@ -1911,10 +1911,10 @@ "id": "0bf0c6d8", "metadata": { "papermill": { - "duration": 0.020354, - "end_time": "2023-01-24T16:30:23.858797", + "duration": 0.025744, + "end_time": "2023-01-25T18:36:33.846391", "exception": false, - "start_time": "2023-01-24T16:30:23.838443", + "start_time": "2023-01-25T18:36:33.820647", "status": "completed" }, "tags": [] @@ -1929,16 +1929,16 @@ "id": "1bdb4120", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:23.900323Z", - "iopub.status.busy": "2023-01-24T16:30:23.899764Z", - "iopub.status.idle": "2023-01-24T16:30:23.947802Z", - "shell.execute_reply": "2023-01-24T16:30:23.947092Z" + "iopub.execute_input": "2023-01-25T18:36:33.901315Z", + "iopub.status.busy": "2023-01-25T18:36:33.900586Z", + "iopub.status.idle": "2023-01-25T18:36:33.966284Z", + "shell.execute_reply": "2023-01-25T18:36:33.964067Z" }, "papermill": { - "duration": 0.070684, - "end_time": "2023-01-24T16:30:23.949382", + "duration": 0.09642, + "end_time": "2023-01-25T18:36:33.968608", "exception": false, - "start_time": "2023-01-24T16:30:23.878698", + "start_time": "2023-01-25T18:36:33.872188", "status": "completed" }, "scrolled": true, @@ -2134,10 +2134,10 @@ "id": "7dd70f60", "metadata": { "papermill": { - "duration": 0.02023, - "end_time": "2023-01-24T16:30:23.990205", + "duration": 0.026561, + "end_time": "2023-01-25T18:36:34.021270", "exception": false, - "start_time": "2023-01-24T16:30:23.969975", + "start_time": "2023-01-25T18:36:33.994709", "status": "completed" }, "tags": [] @@ -2155,10 +2155,10 @@ "id": "eee9addd", "metadata": { "papermill": { - "duration": 0.020109, - "end_time": "2023-01-24T16:30:24.030564", + "duration": 0.027341, + "end_time": "2023-01-25T18:36:34.075650", "exception": false, - "start_time": "2023-01-24T16:30:24.010455", + "start_time": "2023-01-25T18:36:34.048309", "status": "completed" }, "tags": [] @@ -2175,16 +2175,16 @@ "id": "5bc33966", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:24.072925Z", - "iopub.status.busy": "2023-01-24T16:30:24.072355Z", - "iopub.status.idle": "2023-01-24T16:30:24.095713Z", - "shell.execute_reply": "2023-01-24T16:30:24.095043Z" + "iopub.execute_input": "2023-01-25T18:36:34.130691Z", + "iopub.status.busy": "2023-01-25T18:36:34.129850Z", + "iopub.status.idle": "2023-01-25T18:36:34.163952Z", + "shell.execute_reply": "2023-01-25T18:36:34.162943Z" }, "papermill": { - "duration": 0.046457, - "end_time": "2023-01-24T16:30:24.097197", + "duration": 0.064064, + "end_time": "2023-01-25T18:36:34.166042", "exception": false, - "start_time": "2023-01-24T16:30:24.050740", + "start_time": "2023-01-25T18:36:34.101978", "status": "completed" }, "scrolled": true, @@ -2212,10 +2212,10 @@ "id": "442089da", "metadata": { "papermill": { - "duration": 0.02039, - "end_time": "2023-01-24T16:30:24.138409", + "duration": 0.027378, + "end_time": "2023-01-25T18:36:34.221065", "exception": false, - "start_time": "2023-01-24T16:30:24.118019", + "start_time": "2023-01-25T18:36:34.193687", "status": "completed" }, "tags": [] @@ -2232,16 +2232,16 @@ "id": "7cb2ae0b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:24.180854Z", - "iopub.status.busy": "2023-01-24T16:30:24.180294Z", - "iopub.status.idle": "2023-01-24T16:30:24.202687Z", - "shell.execute_reply": "2023-01-24T16:30:24.202001Z" + "iopub.execute_input": "2023-01-25T18:36:34.278007Z", + "iopub.status.busy": "2023-01-25T18:36:34.277422Z", + "iopub.status.idle": "2023-01-25T18:36:34.308268Z", + "shell.execute_reply": "2023-01-25T18:36:34.307194Z" }, "papermill": { - "duration": 0.045304, - "end_time": "2023-01-24T16:30:24.204167", + "duration": 0.062334, + "end_time": "2023-01-25T18:36:34.310496", "exception": false, - "start_time": "2023-01-24T16:30:24.158863", + "start_time": "2023-01-25T18:36:34.248162", "status": "completed" }, "tags": [] @@ -2267,16 +2267,16 @@ "id": "9f08e303", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:24.246644Z", - "iopub.status.busy": "2023-01-24T16:30:24.246157Z", - "iopub.status.idle": "2023-01-24T16:30:24.598787Z", - "shell.execute_reply": "2023-01-24T16:30:24.598040Z" + "iopub.execute_input": "2023-01-25T18:36:34.367326Z", + "iopub.status.busy": "2023-01-25T18:36:34.366488Z", + "iopub.status.idle": "2023-01-25T18:36:34.858411Z", + "shell.execute_reply": "2023-01-25T18:36:34.857484Z" }, "papermill": { - "duration": 0.376187, - "end_time": "2023-01-24T16:30:24.600905", + "duration": 0.522991, + "end_time": "2023-01-25T18:36:34.860510", "exception": false, - "start_time": "2023-01-24T16:30:24.224718", + "start_time": "2023-01-25T18:36:34.337519", "status": "completed" }, "scrolled": false, @@ -2286,7 +2286,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 25, @@ -2320,10 +2320,10 @@ "id": "a3884662", "metadata": { "papermill": { - "duration": 0.021843, - "end_time": "2023-01-24T16:30:24.645165", + "duration": 0.028967, + "end_time": "2023-01-25T18:36:34.918143", "exception": false, - "start_time": "2023-01-24T16:30:24.623322", + "start_time": "2023-01-25T18:36:34.889176", "status": "completed" }, "tags": [] @@ -2337,10 +2337,10 @@ "id": "fefb3724", "metadata": { "papermill": { - "duration": 0.021915, - "end_time": "2023-01-24T16:30:24.689092", + "duration": 0.028951, + "end_time": "2023-01-25T18:36:34.974779", "exception": false, - "start_time": "2023-01-24T16:30:24.667177", + "start_time": "2023-01-25T18:36:34.945828", "status": "completed" }, "tags": [] @@ -2355,16 +2355,16 @@ "id": "d8c01f38", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:24.734331Z", - "iopub.status.busy": "2023-01-24T16:30:24.733757Z", - "iopub.status.idle": "2023-01-24T16:30:25.076911Z", - "shell.execute_reply": "2023-01-24T16:30:25.076187Z" + "iopub.execute_input": "2023-01-25T18:36:35.034231Z", + "iopub.status.busy": "2023-01-25T18:36:35.033619Z", + "iopub.status.idle": "2023-01-25T18:36:35.521163Z", + "shell.execute_reply": "2023-01-25T18:36:35.520013Z" }, "papermill": { - "duration": 0.368478, - "end_time": "2023-01-24T16:30:25.079333", + "duration": 0.522537, + "end_time": "2023-01-25T18:36:35.524653", "exception": false, - "start_time": "2023-01-24T16:30:24.710855", + "start_time": "2023-01-25T18:36:35.002116", "status": "completed" }, "scrolled": true, @@ -2406,10 +2406,10 @@ "id": "3e65effc", "metadata": { "papermill": { - "duration": 0.024102, - "end_time": "2023-01-24T16:30:25.128020", + "duration": 0.031387, + "end_time": "2023-01-25T18:36:35.586952", "exception": false, - "start_time": "2023-01-24T16:30:25.103918", + "start_time": "2023-01-25T18:36:35.555565", "status": "completed" }, "tags": [] @@ -2424,16 +2424,16 @@ "id": "db1aa14f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:25.177155Z", - "iopub.status.busy": "2023-01-24T16:30:25.176588Z", - "iopub.status.idle": "2023-01-24T16:30:25.407572Z", - "shell.execute_reply": "2023-01-24T16:30:25.406904Z" + "iopub.execute_input": "2023-01-25T18:36:35.653180Z", + "iopub.status.busy": "2023-01-25T18:36:35.651962Z", + "iopub.status.idle": "2023-01-25T18:36:35.969819Z", + "shell.execute_reply": "2023-01-25T18:36:35.968777Z" }, "papermill": { - "duration": 0.257515, - "end_time": "2023-01-24T16:30:25.409213", + "duration": 0.355042, + "end_time": "2023-01-25T18:36:35.971992", "exception": false, - "start_time": "2023-01-24T16:30:25.151698", + "start_time": "2023-01-25T18:36:35.616950", "status": "completed" }, "tags": [] @@ -2474,10 +2474,10 @@ "id": "d8537e03", "metadata": { "papermill": { - "duration": 0.025748, - "end_time": "2023-01-24T16:30:25.461229", + "duration": 0.033392, + "end_time": "2023-01-25T18:36:36.037840", "exception": false, - "start_time": "2023-01-24T16:30:25.435481", + "start_time": "2023-01-25T18:36:36.004448", "status": "completed" }, "tags": [] @@ -2492,16 +2492,16 @@ "id": "c5f13b66", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:25.514093Z", - "iopub.status.busy": "2023-01-24T16:30:25.513513Z", - "iopub.status.idle": "2023-01-24T16:30:25.536951Z", - "shell.execute_reply": "2023-01-24T16:30:25.536287Z" + "iopub.execute_input": "2023-01-25T18:36:36.107606Z", + "iopub.status.busy": "2023-01-25T18:36:36.106917Z", + "iopub.status.idle": "2023-01-25T18:36:36.153309Z", + "shell.execute_reply": "2023-01-25T18:36:36.152373Z" }, "papermill": { - "duration": 0.05155, - "end_time": "2023-01-24T16:30:25.538438", + "duration": 0.082091, + "end_time": "2023-01-25T18:36:36.155891", "exception": false, - "start_time": "2023-01-24T16:30:25.486888", + "start_time": "2023-01-25T18:36:36.073800", "status": "completed" }, "tags": [] @@ -2560,10 +2560,10 @@ "id": "0a1a9ae1", "metadata": { "papermill": { - "duration": 0.025576, - "end_time": "2023-01-24T16:30:25.589799", + "duration": 0.031902, + "end_time": "2023-01-25T18:36:36.220939", "exception": false, - "start_time": "2023-01-24T16:30:25.564223", + "start_time": "2023-01-25T18:36:36.189037", "status": "completed" }, "tags": [] @@ -2578,16 +2578,16 @@ "id": "bca469b2", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:25.642509Z", - "iopub.status.busy": "2023-01-24T16:30:25.641978Z", - "iopub.status.idle": "2023-01-24T16:30:25.664359Z", - "shell.execute_reply": "2023-01-24T16:30:25.663671Z" + "iopub.execute_input": "2023-01-25T18:36:36.290597Z", + "iopub.status.busy": "2023-01-25T18:36:36.289849Z", + "iopub.status.idle": "2023-01-25T18:36:36.323631Z", + "shell.execute_reply": "2023-01-25T18:36:36.322594Z" }, "papermill": { - "duration": 0.050431, - "end_time": "2023-01-24T16:30:25.665849", + "duration": 0.070494, + "end_time": "2023-01-25T18:36:36.325894", "exception": false, - "start_time": "2023-01-24T16:30:25.615418", + "start_time": "2023-01-25T18:36:36.255400", "status": "completed" }, "tags": [] @@ -2620,10 +2620,10 @@ "id": "92b7794d", "metadata": { "papermill": { - "duration": 0.025676, - "end_time": "2023-01-24T16:30:25.717337", + "duration": 0.031721, + "end_time": "2023-01-25T18:36:36.389353", "exception": false, - "start_time": "2023-01-24T16:30:25.691661", + "start_time": "2023-01-25T18:36:36.357632", "status": "completed" }, "tags": [] @@ -2640,16 +2640,16 @@ "id": "8a06c129", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:25.770354Z", - "iopub.status.busy": "2023-01-24T16:30:25.769786Z", - "iopub.status.idle": "2023-01-24T16:30:25.802932Z", - "shell.execute_reply": "2023-01-24T16:30:25.802219Z" + "iopub.execute_input": "2023-01-25T18:36:36.457624Z", + "iopub.status.busy": "2023-01-25T18:36:36.457232Z", + "iopub.status.idle": "2023-01-25T18:36:36.504129Z", + "shell.execute_reply": "2023-01-25T18:36:36.503054Z" }, "papermill": { - "duration": 0.061437, - "end_time": "2023-01-24T16:30:25.804354", + "duration": 0.08368, + "end_time": "2023-01-25T18:36:36.506426", "exception": false, - "start_time": "2023-01-24T16:30:25.742917", + "start_time": "2023-01-25T18:36:36.422746", "status": "completed" }, "tags": [] @@ -2892,10 +2892,10 @@ "id": "c568e3a0", "metadata": { "papermill": { - "duration": 0.02612, - "end_time": "2023-01-24T16:30:25.856767", + "duration": 0.032954, + "end_time": "2023-01-25T18:36:36.572441", "exception": false, - "start_time": "2023-01-24T16:30:25.830647", + "start_time": "2023-01-25T18:36:36.539487", "status": "completed" }, "tags": [] @@ -2910,16 +2910,16 @@ "id": "cb5ad5fa", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:25.910207Z", - "iopub.status.busy": "2023-01-24T16:30:25.909539Z", - "iopub.status.idle": "2023-01-24T16:30:25.932842Z", - "shell.execute_reply": "2023-01-24T16:30:25.932088Z" + "iopub.execute_input": "2023-01-25T18:36:36.640274Z", + "iopub.status.busy": "2023-01-25T18:36:36.639392Z", + "iopub.status.idle": "2023-01-25T18:36:36.673183Z", + "shell.execute_reply": "2023-01-25T18:36:36.672127Z" }, "papermill": { - "duration": 0.051633, - "end_time": "2023-01-24T16:30:25.934328", + "duration": 0.070517, + "end_time": "2023-01-25T18:36:36.675397", "exception": false, - "start_time": "2023-01-24T16:30:25.882695", + "start_time": "2023-01-25T18:36:36.604880", "status": "completed" }, "scrolled": true, @@ -2945,10 +2945,10 @@ "id": "794c2cd8", "metadata": { "papermill": { - "duration": 0.02614, - "end_time": "2023-01-24T16:30:25.986817", + "duration": 0.033741, + "end_time": "2023-01-25T18:36:36.741676", "exception": false, - "start_time": "2023-01-24T16:30:25.960677", + "start_time": "2023-01-25T18:36:36.707935", "status": "completed" }, "tags": [] @@ -2963,16 +2963,16 @@ "id": "066d4c40", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:26.040257Z", - "iopub.status.busy": "2023-01-24T16:30:26.039716Z", - "iopub.status.idle": "2023-01-24T16:30:26.063275Z", - "shell.execute_reply": "2023-01-24T16:30:26.062544Z" + "iopub.execute_input": "2023-01-25T18:36:36.810587Z", + "iopub.status.busy": "2023-01-25T18:36:36.809749Z", + "iopub.status.idle": "2023-01-25T18:36:36.844912Z", + "shell.execute_reply": "2023-01-25T18:36:36.843776Z" }, "papermill": { - "duration": 0.052129, - "end_time": "2023-01-24T16:30:26.064794", + "duration": 0.071806, + "end_time": "2023-01-25T18:36:36.847094", "exception": false, - "start_time": "2023-01-24T16:30:26.012665", + "start_time": "2023-01-25T18:36:36.775288", "status": "completed" }, "scrolled": true, @@ -3002,10 +3002,10 @@ "id": "8515f32d", "metadata": { "papermill": { - "duration": 0.02624, - "end_time": "2023-01-24T16:30:26.117920", + "duration": 0.032898, + "end_time": "2023-01-25T18:36:36.913181", "exception": false, - "start_time": "2023-01-24T16:30:26.091680", + "start_time": "2023-01-25T18:36:36.880283", "status": "completed" }, "tags": [] @@ -3022,16 +3022,16 @@ "id": "de868ad2", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:26.171879Z", - "iopub.status.busy": "2023-01-24T16:30:26.171324Z", - "iopub.status.idle": "2023-01-24T16:30:26.209639Z", - "shell.execute_reply": "2023-01-24T16:30:26.208954Z" + "iopub.execute_input": "2023-01-25T18:36:36.979773Z", + "iopub.status.busy": "2023-01-25T18:36:36.979047Z", + "iopub.status.idle": "2023-01-25T18:36:37.040269Z", + "shell.execute_reply": "2023-01-25T18:36:37.035733Z" }, "papermill": { - "duration": 0.066988, - "end_time": "2023-01-24T16:30:26.211170", + "duration": 0.099616, + "end_time": "2023-01-25T18:36:37.044529", "exception": false, - "start_time": "2023-01-24T16:30:26.144182", + "start_time": "2023-01-25T18:36:36.944913", "status": "completed" }, "tags": [] @@ -3299,16 +3299,16 @@ "id": "f5217408", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:26.265964Z", - "iopub.status.busy": "2023-01-24T16:30:26.265219Z", - "iopub.status.idle": "2023-01-24T16:30:26.287985Z", - "shell.execute_reply": "2023-01-24T16:30:26.287347Z" + "iopub.execute_input": "2023-01-25T18:36:37.113860Z", + "iopub.status.busy": "2023-01-25T18:36:37.111933Z", + "iopub.status.idle": "2023-01-25T18:36:37.142955Z", + "shell.execute_reply": "2023-01-25T18:36:37.141858Z" }, "papermill": { - "duration": 0.05166, - "end_time": "2023-01-24T16:30:26.289413", + "duration": 0.067316, + "end_time": "2023-01-25T18:36:37.145753", "exception": false, - "start_time": "2023-01-24T16:30:26.237753", + "start_time": "2023-01-25T18:36:37.078437", "status": "completed" }, "tags": [] @@ -3339,10 +3339,10 @@ "id": "d0f831d0", "metadata": { "papermill": { - "duration": 0.026441, - "end_time": "2023-01-24T16:30:26.342333", + "duration": 0.031349, + "end_time": "2023-01-25T18:36:37.210193", "exception": false, - "start_time": "2023-01-24T16:30:26.315892", + "start_time": "2023-01-25T18:36:37.178844", "status": "completed" }, "tags": [] @@ -3356,10 +3356,10 @@ "id": "3efe197c", "metadata": { "papermill": { - "duration": 0.026423, - "end_time": "2023-01-24T16:30:26.395337", + "duration": 0.032949, + "end_time": "2023-01-25T18:36:37.275360", "exception": false, - "start_time": "2023-01-24T16:30:26.368914", + "start_time": "2023-01-25T18:36:37.242411", "status": "completed" }, "tags": [] @@ -3373,10 +3373,10 @@ "id": "59cfda02", "metadata": { "papermill": { - "duration": 0.026273, - "end_time": "2023-01-24T16:30:26.448017", + "duration": 0.032764, + "end_time": "2023-01-25T18:36:37.339926", "exception": false, - "start_time": "2023-01-24T16:30:26.421744", + "start_time": "2023-01-25T18:36:37.307162", "status": "completed" }, "tags": [] @@ -3391,16 +3391,16 @@ "id": "7a7b1701", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:26.502494Z", - "iopub.status.busy": "2023-01-24T16:30:26.501923Z", - "iopub.status.idle": "2023-01-24T16:30:26.530559Z", - "shell.execute_reply": "2023-01-24T16:30:26.529920Z" + "iopub.execute_input": "2023-01-25T18:36:37.408093Z", + "iopub.status.busy": "2023-01-25T18:36:37.407362Z", + "iopub.status.idle": "2023-01-25T18:36:37.444848Z", + "shell.execute_reply": "2023-01-25T18:36:37.443695Z" }, "papermill": { - "duration": 0.057604, - "end_time": "2023-01-24T16:30:26.532081", + "duration": 0.073891, + "end_time": "2023-01-25T18:36:37.447243", "exception": false, - "start_time": "2023-01-24T16:30:26.474477", + "start_time": "2023-01-25T18:36:37.373352", "status": "completed" }, "tags": [] @@ -3425,16 +3425,16 @@ "id": "42866955", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:26.587159Z", - "iopub.status.busy": "2023-01-24T16:30:26.586877Z", - "iopub.status.idle": "2023-01-24T16:30:26.616232Z", - "shell.execute_reply": "2023-01-24T16:30:26.615214Z" + "iopub.execute_input": "2023-01-25T18:36:37.514010Z", + "iopub.status.busy": "2023-01-25T18:36:37.513443Z", + "iopub.status.idle": "2023-01-25T18:36:37.555537Z", + "shell.execute_reply": "2023-01-25T18:36:37.554504Z" }, "papermill": { - "duration": 0.058899, - "end_time": "2023-01-24T16:30:26.617702", + "duration": 0.078305, + "end_time": "2023-01-25T18:36:37.558051", "exception": false, - "start_time": "2023-01-24T16:30:26.558803", + "start_time": "2023-01-25T18:36:37.479746", "status": "completed" }, "tags": [] @@ -3525,16 +3525,16 @@ "id": "424fd68e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:26.672693Z", - "iopub.status.busy": "2023-01-24T16:30:26.671958Z", - "iopub.status.idle": "2023-01-24T16:30:27.188249Z", - "shell.execute_reply": "2023-01-24T16:30:27.187465Z" + "iopub.execute_input": "2023-01-25T18:36:37.627504Z", + "iopub.status.busy": "2023-01-25T18:36:37.626346Z", + "iopub.status.idle": "2023-01-25T18:36:38.429813Z", + "shell.execute_reply": "2023-01-25T18:36:38.428743Z" }, "papermill": { - "duration": 0.545607, - "end_time": "2023-01-24T16:30:27.189951", + "duration": 0.840478, + "end_time": "2023-01-25T18:36:38.431889", "exception": false, - "start_time": "2023-01-24T16:30:26.644344", + "start_time": "2023-01-25T18:36:37.591411", "status": "completed" }, "tags": [] @@ -3543,7 +3543,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 37, @@ -3587,10 +3587,10 @@ "id": "79959429", "metadata": { "papermill": { - "duration": 0.032174, - "end_time": "2023-01-24T16:30:27.259289", + "duration": 0.036816, + "end_time": "2023-01-25T18:36:38.505474", "exception": false, - "start_time": "2023-01-24T16:30:27.227115", + "start_time": "2023-01-25T18:36:38.468658", "status": "completed" }, "tags": [] @@ -3604,10 +3604,10 @@ "id": "eae44432", "metadata": { "papermill": { - "duration": 0.0321, - "end_time": "2023-01-24T16:30:27.323622", + "duration": 0.037943, + "end_time": "2023-01-25T18:36:38.580979", "exception": false, - "start_time": "2023-01-24T16:30:27.291522", + "start_time": "2023-01-25T18:36:38.543036", "status": "completed" }, "tags": [] @@ -3624,16 +3624,16 @@ "id": "fa84106f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:27.390334Z", - "iopub.status.busy": "2023-01-24T16:30:27.389847Z", - "iopub.status.idle": "2023-01-24T16:30:42.968062Z", - "shell.execute_reply": "2023-01-24T16:30:42.967377Z" + "iopub.execute_input": "2023-01-25T18:36:38.659239Z", + "iopub.status.busy": "2023-01-25T18:36:38.658583Z", + "iopub.status.idle": "2023-01-25T18:36:58.102224Z", + "shell.execute_reply": "2023-01-25T18:36:58.101153Z" }, "papermill": { - "duration": 15.613879, - "end_time": "2023-01-24T16:30:42.969937", + "duration": 19.485732, + "end_time": "2023-01-25T18:36:58.104667", "exception": false, - "start_time": "2023-01-24T16:30:27.356058", + "start_time": "2023-01-25T18:36:38.618935", "status": "completed" }, "tags": [] @@ -3643,7 +3643,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "behavior_ophys_experiment_826587940.nwb: 100%|██████████| 397M/397M [00:11<00:00, 35.3MMB/s]\n", + "behavior_ophys_experiment_826587940.nwb: 100%|██████████| 397M/397M [00:13<00:00, 29.9MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", @@ -3664,16 +3664,16 @@ "id": "94b81ac8", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:43.041539Z", - "iopub.status.busy": "2023-01-24T16:30:43.040811Z", - "iopub.status.idle": "2023-01-24T16:30:43.069854Z", - "shell.execute_reply": "2023-01-24T16:30:43.069258Z" + "iopub.execute_input": "2023-01-25T18:36:58.198727Z", + "iopub.status.busy": "2023-01-25T18:36:58.198021Z", + "iopub.status.idle": "2023-01-25T18:36:58.238397Z", + "shell.execute_reply": "2023-01-25T18:36:58.237284Z" }, "papermill": { - "duration": 0.066361, - "end_time": "2023-01-24T16:30:43.071560", + "duration": 0.089447, + "end_time": "2023-01-25T18:36:58.240826", "exception": false, - "start_time": "2023-01-24T16:30:43.005199", + "start_time": "2023-01-25T18:36:58.151379", "status": "completed" }, "tags": [] @@ -3698,16 +3698,16 @@ "id": "dd1d3e9e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:30:43.142630Z", - "iopub.status.busy": "2023-01-24T16:30:43.142128Z", - "iopub.status.idle": "2023-01-24T16:30:43.647667Z", - "shell.execute_reply": "2023-01-24T16:30:43.646983Z" + "iopub.execute_input": "2023-01-25T18:36:58.334537Z", + "iopub.status.busy": "2023-01-25T18:36:58.333577Z", + "iopub.status.idle": "2023-01-25T18:36:59.133815Z", + "shell.execute_reply": "2023-01-25T18:36:59.132772Z" }, "papermill": { - "duration": 0.542751, - "end_time": "2023-01-24T16:30:43.649699", + "duration": 0.851703, + "end_time": "2023-01-25T18:36:59.136460", "exception": false, - "start_time": "2023-01-24T16:30:43.106948", + "start_time": "2023-01-25T18:36:58.284757", "status": "completed" }, "scrolled": false, @@ -3717,7 +3717,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 40, @@ -3763,10 +3763,10 @@ "id": "fd286129", "metadata": { "papermill": { - "duration": 0.036697, - "end_time": "2023-01-24T16:30:43.723992", + "duration": 0.047336, + "end_time": "2023-01-25T18:36:59.230018", "exception": false, - "start_time": "2023-01-24T16:30:43.687295", + "start_time": "2023-01-25T18:36:59.182682", "status": "completed" }, "tags": [] @@ -3797,17 +3797,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 49.489301, - "end_time": "2023-01-24T16:30:44.280470", + "duration": 62.976802, + "end_time": "2023-01-25T18:37:00.098691", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/visual_behavior_load_ophys_data.ipynb", - "output_path": "/tmp/tmpx3mwmwjk/scratch_nb.ipynb", + "output_path": "/tmp/tmpbj647vnm/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmpx3mwmwjk", + "output_dir": "/tmp/tmpbj647vnm", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T16:29:54.791169", + "start_time": "2023-01-25T18:35:57.121889", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/visual_behavior_mouse_history.ipynb b/doc_template/examples_root/examples/nb/visual_behavior_mouse_history.ipynb index abd4c0c25..00aafe1f8 100644 --- a/doc_template/examples_root/examples/nb/visual_behavior_mouse_history.ipynb +++ b/doc_template/examples_root/examples/nb/visual_behavior_mouse_history.ipynb @@ -5,10 +5,10 @@ "id": "4e2ade4e", "metadata": { "papermill": { - "duration": 0.009834, - "end_time": "2023-01-24T17:30:27.300549", + "duration": 0.013492, + "end_time": "2023-01-25T19:42:49.984714", "exception": false, - "start_time": "2023-01-24T17:30:27.290715", + "start_time": "2023-01-25T19:42:49.971222", "status": "completed" }, "tags": [] @@ -25,10 +25,10 @@ "id": "1f16c32f", "metadata": { "papermill": { - "duration": 0.008757, - "end_time": "2023-01-24T17:30:27.318073", + "duration": 0.011337, + "end_time": "2023-01-25T19:42:50.007978", "exception": false, - "start_time": "2023-01-24T17:30:27.309316", + "start_time": "2023-01-25T19:42:49.996641", "status": "completed" }, "tags": [] @@ -42,10 +42,10 @@ "id": "0445ee15", "metadata": { "papermill": { - "duration": 0.009538, - "end_time": "2023-01-24T17:30:27.336054", + "duration": 0.011146, + "end_time": "2023-01-25T19:42:50.030045", "exception": false, - "start_time": "2023-01-24T17:30:27.326516", + "start_time": "2023-01-25T19:42:50.018899", "status": "completed" }, "tags": [] @@ -60,16 +60,16 @@ "id": "cc32c22f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:30:27.354602Z", - "iopub.status.busy": "2023-01-24T17:30:27.354024Z", - "iopub.status.idle": "2023-01-24T17:30:29.500875Z", - "shell.execute_reply": "2023-01-24T17:30:29.500101Z" + "iopub.execute_input": "2023-01-25T19:42:50.055391Z", + "iopub.status.busy": "2023-01-25T19:42:50.053645Z", + "iopub.status.idle": "2023-01-25T19:42:52.820815Z", + "shell.execute_reply": "2023-01-25T19:42:52.819651Z" }, "papermill": { - "duration": 2.158551, - "end_time": "2023-01-24T17:30:29.503040", + "duration": 2.781598, + "end_time": "2023-01-25T19:42:52.823698", "exception": false, - "start_time": "2023-01-24T17:30:27.344489", + "start_time": "2023-01-25T19:42:50.042100", "status": "completed" }, "tags": [] @@ -79,81 +79,81 @@ "name": "stdout", "output_type": "stream", "text": [ - "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.0)\r\n", - "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", - "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", + "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.1)\r\n", + "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", + "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", + "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", + "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", + "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", + "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", + "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", + "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", + "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", + "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", + "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", + "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", + "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", + "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", - "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", - "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", - "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", - "Requirement already satisfied: requests<3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.28.2)\r\n", - "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", - "Requirement already satisfied: aiohttp==3.7.4 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.7.4)\r\n", - "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", - "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", - "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", - "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", - "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", - "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", - "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", - "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", - "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", - "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", - "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", "Requirement already satisfied: requests-toolbelt<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.10.1)\r\n", - "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", - "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", - "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", - "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", - "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", + "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", + "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", + "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", - "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", - "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (6.0.4)\r\n", - "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", + "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", + "Requirement already satisfied: requests<3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.28.2)\r\n", + "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", + "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", + "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", + "Requirement already satisfied: aiohttp==3.7.4 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.7.4)\r\n", + "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", + "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", "Requirement already satisfied: chardet<4.0,>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.4)\r\n", + "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", + "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (6.0.4)\r\n", + "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", "Requirement already satisfied: yarl<2.0,>=1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (1.8.2)\r\n", - "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", - "Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.3.7)\r\n", "Requirement already satisfied: jmespath<1.0.0,>=0.7.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.10.0)\r\n", + "Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.3.7)\r\n", "Requirement already satisfied: botocore<1.21.0,>=1.20.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (1.20.112)\r\n", "Requirement already satisfied: setuptools in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from glymur==0.8.19->allensdk) (56.0.0)\r\n", "Requirement already satisfied: marshmallow<4.0,>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (3.19.0)\r\n", "Requirement already satisfied: pyyaml in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (6.0)\r\n", - "Requirement already satisfied: ruamel.yaml<1,>=0.16 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (0.17.21)\r\n", "Requirement already satisfied: jsonschema<5,>=2.6.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (4.17.3)\r\n", + "Requirement already satisfied: ruamel.yaml<1,>=0.16 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (0.17.21)\r\n", "Requirement already satisfied: MarkupSafe>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jinja2>=3.0.0->allensdk) (2.1.2)\r\n", - "Requirement already satisfied: pyparsing>=2.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (3.0.9)\r\n", - "Requirement already satisfied: pillow>=6.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (9.4.0)\r\n", "Requirement already satisfied: kiwisolver>=1.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (1.4.4)\r\n", "Requirement already satisfied: cycler>=0.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (0.11.0)\r\n", + "Requirement already satisfied: pillow>=6.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (9.4.0)\r\n", + "Requirement already satisfied: pyparsing>=2.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (3.0.9)\r\n", "Requirement already satisfied: pytz>=2020.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from pandas>=1.1.5->allensdk) (2022.7.1)\r\n", - "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", - "Requirement already satisfied: idna<4,>=2.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.4)\r\n", "Requirement already satisfied: certifi>=2017.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (2022.12.7)\r\n", "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.0.1)\r\n", - "Requirement already satisfied: packaging in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (23.0)\r\n", + "Requirement already satisfied: idna<4,>=2.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.4)\r\n", + "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", "Requirement already satisfied: wheel>=0.32.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (0.38.4)\r\n", "Requirement already satisfied: distro in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (1.8.0)\r\n", - "Requirement already satisfied: PyWavelets>=1.1.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (1.4.1)\r\n", + "Requirement already satisfied: packaging in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (23.0)\r\n", + "Requirement already satisfied: networkx>=2.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (3.0)\r\n", "Requirement already satisfied: tifffile>=2019.7.26 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2023.1.23.1)\r\n", + "Requirement already satisfied: PyWavelets>=1.1.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (1.4.1)\r\n", "Requirement already satisfied: imageio>=2.4.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2.25.0)\r\n", - "Requirement already satisfied: networkx>=2.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (3.0)\r\n", "Requirement already satisfied: patsy>=0.5.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from statsmodels<=0.13.0->allensdk) (0.5.3)\r\n", "Requirement already satisfied: greenlet!=0.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from sqlalchemy->allensdk) (2.0.1)\r\n", + "Requirement already satisfied: py-cpuinfo in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (9.0.0)\r\n", "Requirement already satisfied: numexpr>=2.6.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.8.4)\r\n", "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", - "Requirement already satisfied: py-cpuinfo in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (9.0.0)\r\n", "Requirement already satisfied: blosc2~=2.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.0.0)\r\n", "Requirement already satisfied: msgpack in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from blosc2~=2.0.0->tables->allensdk) (1.0.4)\r\n", "Requirement already satisfied: importlib-resources>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (5.10.2)\r\n", - "Requirement already satisfied: pkgutil-resolve-name>=1.3.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (1.3.10)\r\n", "Requirement already satisfied: pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (0.19.3)\r\n", + "Requirement already satisfied: pkgutil-resolve-name>=1.3.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (1.3.10)\r\n", "Requirement already satisfied: ruamel.yaml.clib>=0.2.6 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from ruamel.yaml<1,>=0.16->hdmf<=3.4.7->allensdk) (0.2.7)\r\n", "Requirement already satisfied: zipp>=3.1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from importlib-resources>=1.4.0->jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (3.11.0)\r\n" ] @@ -168,10 +168,10 @@ "id": "ea47bb9e", "metadata": { "papermill": { - "duration": 0.009332, - "end_time": "2023-01-24T17:30:29.522064", + "duration": 0.011105, + "end_time": "2023-01-25T19:42:52.846724", "exception": false, - "start_time": "2023-01-24T17:30:29.512732", + "start_time": "2023-01-25T19:42:52.835619", "status": "completed" }, "tags": [] @@ -185,10 +185,10 @@ "id": "5a984779", "metadata": { "papermill": { - "duration": 0.009111, - "end_time": "2023-01-24T17:30:29.540350", + "duration": 0.013544, + "end_time": "2023-01-25T19:42:52.871190", "exception": false, - "start_time": "2023-01-24T17:30:29.531239", + "start_time": "2023-01-25T19:42:52.857646", "status": "completed" }, "tags": [] @@ -206,16 +206,16 @@ "id": "63f56928", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:30:29.560344Z", - "iopub.status.busy": "2023-01-24T17:30:29.559758Z", - "iopub.status.idle": "2023-01-24T17:30:33.606808Z", - "shell.execute_reply": "2023-01-24T17:30:33.606003Z" + "iopub.execute_input": "2023-01-25T19:42:52.897841Z", + "iopub.status.busy": "2023-01-25T19:42:52.897469Z", + "iopub.status.idle": "2023-01-25T19:42:58.314425Z", + "shell.execute_reply": "2023-01-25T19:42:58.312925Z" }, "papermill": { - "duration": 4.059296, - "end_time": "2023-01-24T17:30:33.608713", + "duration": 5.433981, + "end_time": "2023-01-25T19:42:58.317115", "exception": false, - "start_time": "2023-01-24T17:30:29.549417", + "start_time": "2023-01-25T19:42:52.883134", "status": "completed" }, "tags": [] @@ -226,81 +226,81 @@ "output_type": "stream", "text": [ "Requirement already satisfied: pip in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (22.3.1)\r\n", - "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.0)\r\n", + "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.1)\r\n", + "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", + "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", + "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", + "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", - "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", - "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", - "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", - "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", - "Requirement already satisfied: requests<3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.28.2)\r\n", + "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", + "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", + "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", + "Requirement already satisfied: requests<3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.28.2)\r\n", + "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", "Requirement already satisfied: aiohttp==3.7.4 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.7.4)\r\n", + "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", + "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", + "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", - "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", - "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", - "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", - "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", - "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", + "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", "Requirement already satisfied: requests-toolbelt<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.10.1)\r\n", - "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", - "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", - "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", - "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", - "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", - "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", - "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", - "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", - "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", - "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", - "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", + "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", + "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", + "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", + "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", + "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", - "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", + "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", + "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", + "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", + "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", - "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (6.0.4)\r\n", "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", - "Requirement already satisfied: yarl<2.0,>=1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (1.8.2)\r\n", "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", "Requirement already satisfied: chardet<4.0,>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.4)\r\n", + "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", + "Requirement already satisfied: yarl<2.0,>=1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (1.8.2)\r\n", "Requirement already satisfied: jmespath<1.0.0,>=0.7.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.10.0)\r\n", - "Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.3.7)\r\n", "Requirement already satisfied: botocore<1.21.0,>=1.20.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (1.20.112)\r\n", + "Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.3.7)\r\n", "Requirement already satisfied: setuptools in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from glymur==0.8.19->allensdk) (56.0.0)\r\n", "Requirement already satisfied: marshmallow<4.0,>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (3.19.0)\r\n", "Requirement already satisfied: pyyaml in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (6.0)\r\n", - "Requirement already satisfied: jsonschema<5,>=2.6.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (4.17.3)\r\n", "Requirement already satisfied: ruamel.yaml<1,>=0.16 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (0.17.21)\r\n", + "Requirement already satisfied: jsonschema<5,>=2.6.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (4.17.3)\r\n", "Requirement already satisfied: MarkupSafe>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jinja2>=3.0.0->allensdk) (2.1.2)\r\n", - "Requirement already satisfied: kiwisolver>=1.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (1.4.4)\r\n", "Requirement already satisfied: cycler>=0.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (0.11.0)\r\n", "Requirement already satisfied: pillow>=6.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (9.4.0)\r\n", "Requirement already satisfied: pyparsing>=2.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (3.0.9)\r\n", + "Requirement already satisfied: kiwisolver>=1.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (1.4.4)\r\n", "Requirement already satisfied: pytz>=2020.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from pandas>=1.1.5->allensdk) (2022.7.1)\r\n", + "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", "Requirement already satisfied: certifi>=2017.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (2022.12.7)\r\n", "Requirement already satisfied: idna<4,>=2.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.4)\r\n", - "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.0.1)\r\n", "Requirement already satisfied: distro in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (1.8.0)\r\n", "Requirement already satisfied: packaging in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (23.0)\r\n", "Requirement already satisfied: wheel>=0.32.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (0.38.4)\r\n", - "Requirement already satisfied: networkx>=2.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (3.0)\r\n", + "Requirement already satisfied: imageio>=2.4.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2.25.0)\r\n", "Requirement already satisfied: tifffile>=2019.7.26 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2023.1.23.1)\r\n", "Requirement already satisfied: PyWavelets>=1.1.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (1.4.1)\r\n", - "Requirement already satisfied: imageio>=2.4.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2.25.0)\r\n", + "Requirement already satisfied: networkx>=2.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (3.0)\r\n", "Requirement already satisfied: patsy>=0.5.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from statsmodels<=0.13.0->allensdk) (0.5.3)\r\n", "Requirement already satisfied: greenlet!=0.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from sqlalchemy->allensdk) (2.0.1)\r\n", - "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", - "Requirement already satisfied: numexpr>=2.6.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.8.4)\r\n", "Requirement already satisfied: blosc2~=2.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.0.0)\r\n", + "Requirement already satisfied: numexpr>=2.6.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.8.4)\r\n", "Requirement already satisfied: py-cpuinfo in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (9.0.0)\r\n", + "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", "Requirement already satisfied: msgpack in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from blosc2~=2.0.0->tables->allensdk) (1.0.4)\r\n", - "Requirement already satisfied: pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (0.19.3)\r\n", - "Requirement already satisfied: pkgutil-resolve-name>=1.3.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (1.3.10)\r\n", "Requirement already satisfied: importlib-resources>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (5.10.2)\r\n", + "Requirement already satisfied: pkgutil-resolve-name>=1.3.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (1.3.10)\r\n", + "Requirement already satisfied: pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (0.19.3)\r\n", "Requirement already satisfied: ruamel.yaml.clib>=0.2.6 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from ruamel.yaml<1,>=0.16->hdmf<=3.4.7->allensdk) (0.2.7)\r\n", "Requirement already satisfied: zipp>=3.1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from importlib-resources>=1.4.0->jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (3.11.0)\r\n" ] @@ -316,10 +316,10 @@ "id": "a9ae3425", "metadata": { "papermill": { - "duration": 0.00998, - "end_time": "2023-01-24T17:30:33.629140", + "duration": 0.01247, + "end_time": "2023-01-25T19:42:58.345053", "exception": false, - "start_time": "2023-01-24T17:30:33.619160", + "start_time": "2023-01-25T19:42:58.332583", "status": "completed" }, "tags": [] @@ -334,16 +334,16 @@ "id": "ac52102e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:30:33.650404Z", - "iopub.status.busy": "2023-01-24T17:30:33.650116Z", - "iopub.status.idle": "2023-01-24T17:30:38.748124Z", - "shell.execute_reply": "2023-01-24T17:30:38.747425Z" + "iopub.execute_input": "2023-01-25T19:42:58.373294Z", + "iopub.status.busy": "2023-01-25T19:42:58.372494Z", + "iopub.status.idle": "2023-01-25T19:43:05.326502Z", + "shell.execute_reply": "2023-01-25T19:43:05.325353Z" }, "papermill": { - "duration": 5.110879, - "end_time": "2023-01-24T17:30:38.749864", + "duration": 6.970941, + "end_time": "2023-01-25T19:43:05.328600", "exception": false, - "start_time": "2023-01-24T17:30:33.638985", + "start_time": "2023-01-25T19:42:58.357659", "status": "completed" }, "tags": [] @@ -361,7 +361,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "allensdk version 2.10.2 or higher is required, you have 2.15.0 installed\n" + "allensdk version 2.10.2 or higher is required, you have 2.15.1 installed\n" ] } ], @@ -386,16 +386,16 @@ "id": "20d529af", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:30:38.772260Z", - "iopub.status.busy": "2023-01-24T17:30:38.771426Z", - "iopub.status.idle": "2023-01-24T17:30:38.778950Z", - "shell.execute_reply": "2023-01-24T17:30:38.778320Z" + "iopub.execute_input": "2023-01-25T19:43:05.356308Z", + "iopub.status.busy": "2023-01-25T19:43:05.355222Z", + "iopub.status.idle": "2023-01-25T19:43:05.366571Z", + "shell.execute_reply": "2023-01-25T19:43:05.365672Z" }, "papermill": { - "duration": 0.020184, - "end_time": "2023-01-24T17:30:38.780559", + "duration": 0.027318, + "end_time": "2023-01-25T19:43:05.368733", "exception": false, - "start_time": "2023-01-24T17:30:38.760375", + "start_time": "2023-01-25T19:43:05.341415", "status": "completed" }, "tags": [] @@ -411,16 +411,16 @@ "id": "b126e7d6", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:30:38.802211Z", - "iopub.status.busy": "2023-01-24T17:30:38.801579Z", - "iopub.status.idle": "2023-01-24T17:30:38.807400Z", - "shell.execute_reply": "2023-01-24T17:30:38.806755Z" + "iopub.execute_input": "2023-01-25T19:43:05.396368Z", + "iopub.status.busy": "2023-01-25T19:43:05.395534Z", + "iopub.status.idle": "2023-01-25T19:43:05.403341Z", + "shell.execute_reply": "2023-01-25T19:43:05.402484Z" }, "papermill": { - "duration": 0.018228, - "end_time": "2023-01-24T17:30:38.808875", + "duration": 0.023839, + "end_time": "2023-01-25T19:43:05.405294", "exception": false, - "start_time": "2023-01-24T17:30:38.790647", + "start_time": "2023-01-25T19:43:05.381455", "status": "completed" }, "tags": [] @@ -430,7 +430,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/tmp/ipykernel_4516/3777615979.py:1: DeprecationWarning: Importing display from IPython.core.display is deprecated since IPython 7.14, please import from IPython display\n", + "/tmp/ipykernel_4642/3777615979.py:1: DeprecationWarning: Importing display from IPython.core.display is deprecated since IPython 7.14, please import from IPython display\n", " from IPython.core.display import display, HTML\n" ] }, @@ -457,10 +457,10 @@ "id": "fba2b66b", "metadata": { "papermill": { - "duration": 0.01008, - "end_time": "2023-01-24T17:30:38.829108", + "duration": 0.01269, + "end_time": "2023-01-25T19:43:05.432005", "exception": false, - "start_time": "2023-01-24T17:30:38.819028", + "start_time": "2023-01-25T19:43:05.419315", "status": "completed" }, "tags": [] @@ -477,16 +477,16 @@ "id": "6d7c550f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:30:38.850882Z", - "iopub.status.busy": "2023-01-24T17:30:38.850344Z", - "iopub.status.idle": "2023-01-24T17:30:38.853725Z", - "shell.execute_reply": "2023-01-24T17:30:38.853052Z" + "iopub.execute_input": "2023-01-25T19:43:05.461074Z", + "iopub.status.busy": "2023-01-25T19:43:05.460072Z", + "iopub.status.idle": "2023-01-25T19:43:05.464619Z", + "shell.execute_reply": "2023-01-25T19:43:05.463607Z" }, "papermill": { - "duration": 0.015973, - "end_time": "2023-01-24T17:30:38.855224", + "duration": 0.021208, + "end_time": "2023-01-25T19:43:05.466700", "exception": false, - "start_time": "2023-01-24T17:30:38.839251", + "start_time": "2023-01-25T19:43:05.445492", "status": "completed" }, "tags": [ @@ -505,16 +505,16 @@ "id": "feac4e93", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:30:38.902473Z", - "iopub.status.busy": "2023-01-24T17:30:38.902037Z", - "iopub.status.idle": "2023-01-24T17:30:40.839266Z", - "shell.execute_reply": "2023-01-24T17:30:40.837916Z" + "iopub.execute_input": "2023-01-25T19:43:05.532941Z", + "iopub.status.busy": "2023-01-25T19:43:05.532077Z", + "iopub.status.idle": "2023-01-25T19:43:07.437788Z", + "shell.execute_reply": "2023-01-25T19:43:07.436710Z" }, "papermill": { - "duration": 1.949916, - "end_time": "2023-01-24T17:30:40.841099", + "duration": 1.924991, + "end_time": "2023-01-25T19:43:07.440186", "exception": false, - "start_time": "2023-01-24T17:30:38.891183", + "start_time": "2023-01-25T19:43:05.515195", "status": "completed" }, "tags": [] @@ -532,14 +532,14 @@ "\n", "To avoid this warning in the future, make sure that\n", "\n", - "/tmp/tmp01u5dz_w/_downloaded_data.json\n", + "/tmp/tmpx3yxk7nd/_downloaded_data.json\n", "\n", "is not deleted between instantiations of this cache\n", " warnings.warn(msg, MissingLocalManifestWarning)\n", - "ophys_session_table.csv: 100%|██████████| 227k/227k [00:00<00:00, 1.63MMB/s] \n", - "behavior_session_table.csv: 100%|██████████| 1.21M/1.21M [00:00<00:00, 8.68MMB/s]\n", - "ophys_experiment_table.csv: 100%|██████████| 610k/610k [00:00<00:00, 6.63MMB/s]\n", - "ophys_cells_table.csv: 100%|██████████| 4.29M/4.29M [00:00<00:00, 19.1MMB/s]\n" + "ophys_session_table.csv: 100%|██████████| 227k/227k [00:00<00:00, 2.10MMB/s]\n", + "behavior_session_table.csv: 100%|██████████| 1.21M/1.21M [00:00<00:00, 8.72MMB/s]\n", + "ophys_experiment_table.csv: 100%|██████████| 610k/610k [00:00<00:00, 6.36MMB/s]\n", + "ophys_cells_table.csv: 100%|██████████| 4.29M/4.29M [00:00<00:00, 19.7MMB/s]\n" ] } ], @@ -554,10 +554,10 @@ "id": "5aaaaaf3", "metadata": { "papermill": { - "duration": 0.012043, - "end_time": "2023-01-24T17:30:40.864762", + "duration": 0.014661, + "end_time": "2023-01-25T19:43:07.469669", "exception": false, - "start_time": "2023-01-24T17:30:40.852719", + "start_time": "2023-01-25T19:43:07.455008", "status": "completed" }, "tags": [] @@ -574,16 +574,16 @@ "id": "d892b037", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:30:40.888289Z", - "iopub.status.busy": "2023-01-24T17:30:40.887795Z", - "iopub.status.idle": "2023-01-24T17:30:40.914509Z", - "shell.execute_reply": "2023-01-24T17:30:40.913826Z" + "iopub.execute_input": "2023-01-25T19:43:07.500330Z", + "iopub.status.busy": "2023-01-25T19:43:07.499501Z", + "iopub.status.idle": "2023-01-25T19:43:07.541818Z", + "shell.execute_reply": "2023-01-25T19:43:07.540405Z" }, "papermill": { - "duration": 0.040309, - "end_time": "2023-01-24T17:30:40.916101", + "duration": 0.06066, + "end_time": "2023-01-25T19:43:07.544277", "exception": false, - "start_time": "2023-01-24T17:30:40.875792", + "start_time": "2023-01-25T19:43:07.483617", "status": "completed" }, "tags": [] @@ -657,234 +657,234 @@ " \n", " \n", " \n", - " 935601725\n", - " CAM2P.3\n", + " 1033820755\n", + " BEH.G-Box4\n", + " Sst-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt\n", + " 524158\n", + " Ai148(TIT2L-GC6f-ICL-tTA2)\n", + " [Sst-IRES-Cre]\n", + " M\n", + " 107.0\n", + " Sst-IRES-Cre\n", + " GCaMP6f\n", + " NaN\n", + " 1.0\n", + " 1.0\n", + " 0.0\n", + " NaN\n", + " NaN\n", + " NaN\n", + " NaN\n", + " 2020-07-02 13:25:34.432\n", + " TRAINING_3_images_G_10uL_reward\n", + " 1.120009e+09\n", + " \n", + " \n", + " 898432373\n", + " MESO.1\n", " Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-G...\n", - " 459777\n", + " 453911\n", " Ai93(TITL-GCaMP6f)\n", " [Slc17a7-IRES2-Cre, Camk2a-tTA]\n", - " F\n", - " 175.0\n", + " M\n", + " 143.0\n", " Slc17a7-IRES2-Cre\n", " GCaMP6f\n", " 0.0\n", - " 3.0\n", - " 55.0\n", + " 5.0\n", + " 28.0\n", " 0.0\n", " NaN\n", " NaN\n", " NaN\n", " NaN\n", - " 2019-08-30 08:56:11.549\n", + " 2019-07-01 08:58:07.192\n", " OPHYS_0_images_A_habituation\n", - " 1.085370e+09\n", + " 1.085365e+09\n", " \n", " \n", - " 1070628235\n", - " CAM2P.4\n", - " Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt\n", - " 544261\n", + " 1050970990\n", + " CAM2P.3\n", + " Sst-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt\n", + " 533527\n", " Ai148(TIT2L-GC6f-ICL-tTA2)\n", - " [Vip-IRES-Cre]\n", - " F\n", - " 148.0\n", - " Vip-IRES-Cre\n", + " [Sst-IRES-Cre]\n", + " M\n", + " 122.0\n", + " Sst-IRES-Cre\n", " GCaMP6f\n", - " 6.0\n", + " 3.0\n", + " 0.0\n", + " 12.0\n", " 2.0\n", - " 5.0\n", - " 9.0\n", - " NaN\n", - " NaN\n", - " NaN\n", + " 1.050957e+09\n", + " [1051009897]\n", + " [1049224697]\n", + " VisualBehavior\n", + " 2020-09-16 13:53:22.544\n", + " OPHYS_3_images_A\n", " NaN\n", - " 2020-12-15 11:09:09.640\n", - " OPHYS_6_images_B\n", - " 1.085381e+09\n", " \n", " \n", - " 975497145\n", - " BEH.D-Box4\n", + " 1044602299\n", + " CAM2P.4\n", " Sst-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt\n", - " 489056\n", + " 524274\n", " Ai148(TIT2L-GC6f-ICL-tTA2)\n", " [Sst-IRES-Cre]\n", " M\n", - " 89.0\n", + " 155.0\n", " Sst-IRES-Cre\n", " GCaMP6f\n", - " NaN\n", - " 3.0\n", - " NaN\n", + " 6.0\n", " 0.0\n", + " 2.0\n", + " 7.0\n", + " 1.044581e+09\n", + " [1044678595]\n", + " [1039579201]\n", + " VisualBehavior\n", + " 2020-08-20 12:54:12.284\n", + " OPHYS_6_images_B\n", " NaN\n", - " NaN\n", - " NaN\n", - " NaN\n", - " 2019-11-01 14:58:11.795\n", - " TRAINING_1_gratings\n", - " 1.085376e+09\n", " \n", " \n", - " 976012750\n", - " CAM2P.5\n", + " 888143869\n", + " CAM2P.4\n", " Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-G...\n", - " 479426\n", + " 456564\n", " Ai94(TITL-GCaMP6s)\n", " [Slc17a7-IRES2-Cre, Camk2a-tTA]\n", " F\n", - " 146.0\n", + " 117.0\n", " Slc17a7-IRES2-Cre\n", " GCaMP6s\n", - " 6.0\n", + " 5.0\n", " 0.0\n", " 1.0\n", - " 6.0\n", + " 4.0\n", + " 8.879969e+08\n", + " [888666715]\n", + " [902748564]\n", + " VisualBehavior\n", + " 2019-06-17 10:39:51.158\n", + " OPHYS_5_images_B_passive\n", + " NaN\n", + " \n", + " \n", + " 964154152\n", + " BEH.B-Box6\n", + " Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-G...\n", + " 479839\n", + " Ai93(TITL-GCaMP6f)\n", + " [Slc17a7-IRES2-Cre, Camk2a-tTA]\n", + " M\n", + " 117.0\n", + " Slc17a7-IRES2-Cre\n", + " GCaMP6f\n", + " NaN\n", + " 0.0\n", + " 7.0\n", + " 0.0\n", " NaN\n", " NaN\n", " NaN\n", " NaN\n", - " 2019-11-04 08:52:39.543\n", - " OPHYS_6_images_B\n", - " 1.081760e+09\n", + " 2019-10-09 14:15:17.609\n", + " TRAINING_5_images_A_epilogue\n", + " 1.081751e+09\n", " \n", " \n", - " 914726630\n", - " BEH.G-Box2\n", + " 1078807115\n", + " BEH.D-Box2\n", " Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt\n", - " 468866\n", + " 550603\n", " Ai148(TIT2L-GC6f-ICL-tTA2)\n", " [Vip-IRES-Cre]\n", " F\n", - " 105.0\n", + " 151.0\n", " Vip-IRES-Cre\n", " GCaMP6f\n", " NaN\n", - " 9.0\n", + " 4.0\n", " NaN\n", " 0.0\n", " NaN\n", " NaN\n", " NaN\n", " NaN\n", - " 2019-07-31 10:04:39.138\n", - " TRAINING_2_gratings_flashed\n", - " 1.081713e+09\n", + " 2021-01-26 13:07:31.700\n", + " TRAINING_1_gratings\n", + " 1.120013e+09\n", " \n", " \n", - " 937854186\n", - " BEH.F-Box1\n", - " Sst-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt\n", - " 477202\n", - " Ai148(TIT2L-GC6f-ICL-tTA2)\n", - " [Sst-IRES-Cre]\n", + " 856467236\n", + " CAM2P.3\n", + " Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-G...\n", + " 445270\n", + " Ai93(TITL-GCaMP6f)\n", + " [Slc17a7-IRES2-Cre, Camk2a-tTA]\n", " M\n", - " 93.0\n", - " Sst-IRES-Cre\n", + " 111.0\n", + " Slc17a7-IRES2-Cre\n", " GCaMP6f\n", - " NaN\n", + " 3.0\n", " 1.0\n", + " 15.0\n", + " 8.0\n", + " 8.562959e+08\n", + " [856938751]\n", + " [845588020]\n", + " VisualBehavior\n", + " 2019-04-24 10:09:27.546\n", + " OPHYS_3_images_A\n", " NaN\n", - " 0.0\n", - " NaN\n", - " NaN\n", - " NaN\n", - " NaN\n", - " 2019-09-03 14:20:45.825\n", - " TRAINING_2_gratings_flashed\n", - " 1.081729e+09\n", " \n", " \n", - " 910393217\n", - " BEH.G-Box5\n", - " Sst-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt\n", - " 457841\n", - " Ai148(TIT2L-GC6f-ICL-tTA2)\n", - " [Sst-IRES-Cre]\n", + " 868555361\n", + " CAM2P.3\n", + " Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-G...\n", + " 450471\n", + " Ai93(TITL-GCaMP6f)\n", + " [Slc17a7-IRES2-Cre, Camk2a-tTA]\n", " F\n", - " 146.0\n", - " Sst-IRES-Cre\n", + " 110.0\n", + " Slc17a7-IRES2-Cre\n", " GCaMP6f\n", - " NaN\n", - " 17.0\n", - " 28.0\n", " 0.0\n", - " NaN\n", - " NaN\n", - " NaN\n", - " NaN\n", - " 2019-07-22 12:32:19.775\n", - " TRAINING_5_images_A_handoff_lapsed\n", - " 1.081702e+09\n", - " \n", - " \n", - " 1040835642\n", - " BEH.B-Box5\n", - " Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt\n", - " 523922\n", - " Ai148(TIT2L-GC6f-ICL-tTA2)\n", - " [Vip-IRES-Cre]\n", - " M\n", - " 141.0\n", - " Vip-IRES-Cre\n", - " GCaMP6f\n", - " NaN\n", - " 16.0\n", - " 24.0\n", + " 2.0\n", + " 18.0\n", " 0.0\n", " NaN\n", " NaN\n", " NaN\n", " NaN\n", - " 2020-08-04 10:30:27.382\n", - " TRAINING_5_images_A_handoff_ready\n", - " 1.081779e+09\n", + " 2019-05-15 09:49:25.185\n", + " OPHYS_0_images_A_habituation\n", + " 1.085363e+09\n", " \n", " \n", - " 866968898\n", - " CAM2P.4\n", + " 874691143\n", + " BEH.D-Box2\n", " Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-G...\n", - " 448900\n", + " 457766\n", " Ai94(TITL-GCaMP6s)\n", " [Slc17a7-IRES2-Cre, Camk2a-tTA]\n", " M\n", - " 119.0\n", + " 86.0\n", " Slc17a7-IRES2-Cre\n", " GCaMP6s\n", - " 2.0\n", - " 0.0\n", - " 18.0\n", - " 1.0\n", - " NaN\n", - " NaN\n", - " NaN\n", - " NaN\n", - " 2019-05-13 09:37:00.668\n", - " OPHYS_2_images_A_passive\n", - " 1.081608e+09\n", - " \n", - " \n", - " 1000361701\n", - " BEH.G-Box3\n", - " Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt\n", - " 486737\n", - " Ai148(TIT2L-GC6f-ICL-tTA2)\n", - " [Vip-IRES-Cre]\n", - " F\n", - " 178.0\n", - " Vip-IRES-Cre\n", - " GCaMP6f\n", " NaN\n", " 2.0\n", - " 32.0\n", + " NaN\n", " 0.0\n", " NaN\n", " NaN\n", " NaN\n", " NaN\n", - " 2020-01-15 09:33:49.657\n", - " TRAINING_5_images_B_handoff_ready\n", - " 1.081773e+09\n", + " 2019-05-23 12:37:09.942\n", + " TRAINING_2_gratings_flashed\n", + " 1.081617e+09\n", " \n", " \n", "\n", @@ -893,146 +893,146 @@ "text/plain": [ " equipment_name \\\n", "behavior_session_id \n", - "935601725 CAM2P.3 \n", - "1070628235 CAM2P.4 \n", - "975497145 BEH.D-Box4 \n", - "976012750 CAM2P.5 \n", - "914726630 BEH.G-Box2 \n", - "937854186 BEH.F-Box1 \n", - "910393217 BEH.G-Box5 \n", - "1040835642 BEH.B-Box5 \n", - "866968898 CAM2P.4 \n", - "1000361701 BEH.G-Box3 \n", + "1033820755 BEH.G-Box4 \n", + "898432373 MESO.1 \n", + "1050970990 CAM2P.3 \n", + "1044602299 CAM2P.4 \n", + "888143869 CAM2P.4 \n", + "964154152 BEH.B-Box6 \n", + "1078807115 BEH.D-Box2 \n", + "856467236 CAM2P.3 \n", + "868555361 CAM2P.3 \n", + "874691143 BEH.D-Box2 \n", "\n", " full_genotype \\\n", "behavior_session_id \n", - "935601725 Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-G... \n", - "1070628235 Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt \n", - "975497145 Sst-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt \n", - "976012750 Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-G... \n", - "914726630 Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt \n", - "937854186 Sst-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt \n", - "910393217 Sst-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt \n", - "1040835642 Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt \n", - "866968898 Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-G... \n", - "1000361701 Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt \n", + "1033820755 Sst-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt \n", + "898432373 Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-G... \n", + "1050970990 Sst-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt \n", + "1044602299 Sst-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt \n", + "888143869 Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-G... \n", + "964154152 Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-G... \n", + "1078807115 Vip-IRES-Cre/wt;Ai148(TIT2L-GC6f-ICL-tTA2)/wt \n", + "856467236 Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-G... \n", + "868555361 Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-G... \n", + "874691143 Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-G... \n", "\n", " mouse_id reporter_line \\\n", "behavior_session_id \n", - "935601725 459777 Ai93(TITL-GCaMP6f) \n", - "1070628235 544261 Ai148(TIT2L-GC6f-ICL-tTA2) \n", - "975497145 489056 Ai148(TIT2L-GC6f-ICL-tTA2) \n", - "976012750 479426 Ai94(TITL-GCaMP6s) \n", - "914726630 468866 Ai148(TIT2L-GC6f-ICL-tTA2) \n", - "937854186 477202 Ai148(TIT2L-GC6f-ICL-tTA2) \n", - "910393217 457841 Ai148(TIT2L-GC6f-ICL-tTA2) \n", - "1040835642 523922 Ai148(TIT2L-GC6f-ICL-tTA2) \n", - "866968898 448900 Ai94(TITL-GCaMP6s) \n", - "1000361701 486737 Ai148(TIT2L-GC6f-ICL-tTA2) \n", + "1033820755 524158 Ai148(TIT2L-GC6f-ICL-tTA2) \n", + "898432373 453911 Ai93(TITL-GCaMP6f) \n", + "1050970990 533527 Ai148(TIT2L-GC6f-ICL-tTA2) \n", + "1044602299 524274 Ai148(TIT2L-GC6f-ICL-tTA2) \n", + "888143869 456564 Ai94(TITL-GCaMP6s) \n", + "964154152 479839 Ai93(TITL-GCaMP6f) \n", + "1078807115 550603 Ai148(TIT2L-GC6f-ICL-tTA2) \n", + "856467236 445270 Ai93(TITL-GCaMP6f) \n", + "868555361 450471 Ai93(TITL-GCaMP6f) \n", + "874691143 457766 Ai94(TITL-GCaMP6s) \n", "\n", " driver_line sex age_in_days \\\n", "behavior_session_id \n", - "935601725 [Slc17a7-IRES2-Cre, Camk2a-tTA] F 175.0 \n", - "1070628235 [Vip-IRES-Cre] F 148.0 \n", - "975497145 [Sst-IRES-Cre] M 89.0 \n", - "976012750 [Slc17a7-IRES2-Cre, Camk2a-tTA] F 146.0 \n", - "914726630 [Vip-IRES-Cre] F 105.0 \n", - "937854186 [Sst-IRES-Cre] M 93.0 \n", - "910393217 [Sst-IRES-Cre] F 146.0 \n", - "1040835642 [Vip-IRES-Cre] M 141.0 \n", - "866968898 [Slc17a7-IRES2-Cre, Camk2a-tTA] M 119.0 \n", - "1000361701 [Vip-IRES-Cre] F 178.0 \n", + "1033820755 [Sst-IRES-Cre] M 107.0 \n", + "898432373 [Slc17a7-IRES2-Cre, Camk2a-tTA] M 143.0 \n", + "1050970990 [Sst-IRES-Cre] M 122.0 \n", + "1044602299 [Sst-IRES-Cre] M 155.0 \n", + "888143869 [Slc17a7-IRES2-Cre, Camk2a-tTA] F 117.0 \n", + "964154152 [Slc17a7-IRES2-Cre, Camk2a-tTA] M 117.0 \n", + "1078807115 [Vip-IRES-Cre] F 151.0 \n", + "856467236 [Slc17a7-IRES2-Cre, Camk2a-tTA] M 111.0 \n", + "868555361 [Slc17a7-IRES2-Cre, Camk2a-tTA] F 110.0 \n", + "874691143 [Slc17a7-IRES2-Cre, Camk2a-tTA] M 86.0 \n", "\n", " cre_line indicator session_number \\\n", "behavior_session_id \n", - "935601725 Slc17a7-IRES2-Cre GCaMP6f 0.0 \n", - "1070628235 Vip-IRES-Cre GCaMP6f 6.0 \n", - "975497145 Sst-IRES-Cre GCaMP6f NaN \n", - "976012750 Slc17a7-IRES2-Cre GCaMP6s 6.0 \n", - "914726630 Vip-IRES-Cre GCaMP6f NaN \n", - "937854186 Sst-IRES-Cre GCaMP6f NaN \n", - "910393217 Sst-IRES-Cre GCaMP6f NaN \n", - "1040835642 Vip-IRES-Cre GCaMP6f NaN \n", - "866968898 Slc17a7-IRES2-Cre GCaMP6s 2.0 \n", - "1000361701 Vip-IRES-Cre GCaMP6f NaN \n", + "1033820755 Sst-IRES-Cre GCaMP6f NaN \n", + "898432373 Slc17a7-IRES2-Cre GCaMP6f 0.0 \n", + "1050970990 Sst-IRES-Cre GCaMP6f 3.0 \n", + "1044602299 Sst-IRES-Cre GCaMP6f 6.0 \n", + "888143869 Slc17a7-IRES2-Cre GCaMP6s 5.0 \n", + "964154152 Slc17a7-IRES2-Cre GCaMP6f NaN \n", + "1078807115 Vip-IRES-Cre GCaMP6f NaN \n", + "856467236 Slc17a7-IRES2-Cre GCaMP6f 3.0 \n", + "868555361 Slc17a7-IRES2-Cre GCaMP6f 0.0 \n", + "874691143 Slc17a7-IRES2-Cre GCaMP6s NaN \n", "\n", " prior_exposures_to_session_type \\\n", "behavior_session_id \n", - "935601725 3.0 \n", - "1070628235 2.0 \n", - "975497145 3.0 \n", - "976012750 0.0 \n", - "914726630 9.0 \n", - "937854186 1.0 \n", - "910393217 17.0 \n", - "1040835642 16.0 \n", - "866968898 0.0 \n", - "1000361701 2.0 \n", + "1033820755 1.0 \n", + "898432373 5.0 \n", + "1050970990 0.0 \n", + "1044602299 0.0 \n", + "888143869 0.0 \n", + "964154152 0.0 \n", + "1078807115 4.0 \n", + "856467236 1.0 \n", + "868555361 2.0 \n", + "874691143 2.0 \n", "\n", " prior_exposures_to_image_set \\\n", "behavior_session_id \n", - "935601725 55.0 \n", - "1070628235 5.0 \n", - "975497145 NaN \n", - "976012750 1.0 \n", - "914726630 NaN \n", - "937854186 NaN \n", - "910393217 28.0 \n", - "1040835642 24.0 \n", - "866968898 18.0 \n", - "1000361701 32.0 \n", + "1033820755 1.0 \n", + "898432373 28.0 \n", + "1050970990 12.0 \n", + "1044602299 2.0 \n", + "888143869 1.0 \n", + "964154152 7.0 \n", + "1078807115 NaN \n", + "856467236 15.0 \n", + "868555361 18.0 \n", + "874691143 NaN \n", "\n", " prior_exposures_to_omissions ophys_session_id \\\n", "behavior_session_id \n", - "935601725 0.0 NaN \n", - "1070628235 9.0 NaN \n", - "975497145 0.0 NaN \n", - "976012750 6.0 NaN \n", - "914726630 0.0 NaN \n", - "937854186 0.0 NaN \n", - "910393217 0.0 NaN \n", - "1040835642 0.0 NaN \n", - "866968898 1.0 NaN \n", - "1000361701 0.0 NaN \n", + "1033820755 0.0 NaN \n", + "898432373 0.0 NaN \n", + "1050970990 2.0 1.050957e+09 \n", + "1044602299 7.0 1.044581e+09 \n", + "888143869 4.0 8.879969e+08 \n", + "964154152 0.0 NaN \n", + "1078807115 0.0 NaN \n", + "856467236 8.0 8.562959e+08 \n", + "868555361 0.0 NaN \n", + "874691143 0.0 NaN \n", "\n", - " ophys_experiment_id ophys_container_id project_code \\\n", - "behavior_session_id \n", - "935601725 NaN NaN NaN \n", - "1070628235 NaN NaN NaN \n", - "975497145 NaN NaN NaN \n", - "976012750 NaN NaN NaN \n", - "914726630 NaN NaN NaN \n", - "937854186 NaN NaN NaN \n", - "910393217 NaN NaN NaN \n", - "1040835642 NaN NaN NaN \n", - "866968898 NaN NaN NaN \n", - "1000361701 NaN NaN NaN \n", - "\n", - " date_of_acquisition \\\n", - "behavior_session_id \n", - "935601725 2019-08-30 08:56:11.549 \n", - "1070628235 2020-12-15 11:09:09.640 \n", - "975497145 2019-11-01 14:58:11.795 \n", - "976012750 2019-11-04 08:52:39.543 \n", - "914726630 2019-07-31 10:04:39.138 \n", - "937854186 2019-09-03 14:20:45.825 \n", - "910393217 2019-07-22 12:32:19.775 \n", - "1040835642 2020-08-04 10:30:27.382 \n", - "866968898 2019-05-13 09:37:00.668 \n", - "1000361701 2020-01-15 09:33:49.657 \n", - "\n", - " session_type file_id \n", - "behavior_session_id \n", - "935601725 OPHYS_0_images_A_habituation 1.085370e+09 \n", - "1070628235 OPHYS_6_images_B 1.085381e+09 \n", - "975497145 TRAINING_1_gratings 1.085376e+09 \n", - "976012750 OPHYS_6_images_B 1.081760e+09 \n", - "914726630 TRAINING_2_gratings_flashed 1.081713e+09 \n", - "937854186 TRAINING_2_gratings_flashed 1.081729e+09 \n", - "910393217 TRAINING_5_images_A_handoff_lapsed 1.081702e+09 \n", - "1040835642 TRAINING_5_images_A_handoff_ready 1.081779e+09 \n", - "866968898 OPHYS_2_images_A_passive 1.081608e+09 \n", - "1000361701 TRAINING_5_images_B_handoff_ready 1.081773e+09 " + " ophys_experiment_id ophys_container_id project_code \\\n", + "behavior_session_id \n", + "1033820755 NaN NaN NaN \n", + "898432373 NaN NaN NaN \n", + "1050970990 [1051009897] [1049224697] VisualBehavior \n", + "1044602299 [1044678595] [1039579201] VisualBehavior \n", + "888143869 [888666715] [902748564] VisualBehavior \n", + "964154152 NaN NaN NaN \n", + "1078807115 NaN NaN NaN \n", + "856467236 [856938751] [845588020] VisualBehavior \n", + "868555361 NaN NaN NaN \n", + "874691143 NaN NaN NaN \n", + "\n", + " date_of_acquisition session_type \\\n", + "behavior_session_id \n", + "1033820755 2020-07-02 13:25:34.432 TRAINING_3_images_G_10uL_reward \n", + "898432373 2019-07-01 08:58:07.192 OPHYS_0_images_A_habituation \n", + "1050970990 2020-09-16 13:53:22.544 OPHYS_3_images_A \n", + "1044602299 2020-08-20 12:54:12.284 OPHYS_6_images_B \n", + "888143869 2019-06-17 10:39:51.158 OPHYS_5_images_B_passive \n", + "964154152 2019-10-09 14:15:17.609 TRAINING_5_images_A_epilogue \n", + "1078807115 2021-01-26 13:07:31.700 TRAINING_1_gratings \n", + "856467236 2019-04-24 10:09:27.546 OPHYS_3_images_A \n", + "868555361 2019-05-15 09:49:25.185 OPHYS_0_images_A_habituation \n", + "874691143 2019-05-23 12:37:09.942 TRAINING_2_gratings_flashed \n", + "\n", + " file_id \n", + "behavior_session_id \n", + "1033820755 1.120009e+09 \n", + "898432373 1.085365e+09 \n", + "1050970990 NaN \n", + "1044602299 NaN \n", + "888143869 NaN \n", + "964154152 1.081751e+09 \n", + "1078807115 1.120013e+09 \n", + "856467236 NaN \n", + "868555361 1.085363e+09 \n", + "874691143 1.081617e+09 " ] }, "execution_count": 9, @@ -1049,10 +1049,10 @@ "id": "f12ffb86", "metadata": { "papermill": { - "duration": 0.011522, - "end_time": "2023-01-24T17:30:40.939220", + "duration": 0.015112, + "end_time": "2023-01-25T19:43:07.575131", "exception": false, - "start_time": "2023-01-24T17:30:40.927698", + "start_time": "2023-01-25T19:43:07.560019", "status": "completed" }, "tags": [] @@ -1068,16 +1068,16 @@ "id": "996653c7", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:30:40.963728Z", - "iopub.status.busy": "2023-01-24T17:30:40.963077Z", - "iopub.status.idle": "2023-01-24T17:30:40.967876Z", - "shell.execute_reply": "2023-01-24T17:30:40.967353Z" + "iopub.execute_input": "2023-01-25T19:43:07.608182Z", + "iopub.status.busy": "2023-01-25T19:43:07.606665Z", + "iopub.status.idle": "2023-01-25T19:43:07.616151Z", + "shell.execute_reply": "2023-01-25T19:43:07.615195Z" }, "papermill": { - "duration": 0.018497, - "end_time": "2023-01-24T17:30:40.969223", + "duration": 0.02806, + "end_time": "2023-01-25T19:43:07.618303", "exception": false, - "start_time": "2023-01-24T17:30:40.950726", + "start_time": "2023-01-25T19:43:07.590243", "status": "completed" }, "tags": [] @@ -1104,10 +1104,10 @@ "id": "7c38c6ab", "metadata": { "papermill": { - "duration": 0.011538, - "end_time": "2023-01-24T17:30:40.992565", + "duration": 0.014407, + "end_time": "2023-01-25T19:43:07.647771", "exception": false, - "start_time": "2023-01-24T17:30:40.981027", + "start_time": "2023-01-25T19:43:07.633364", "status": "completed" }, "tags": [] @@ -1137,16 +1137,16 @@ "id": "dc94df56", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:30:41.017061Z", - "iopub.status.busy": "2023-01-24T17:30:41.016585Z", - "iopub.status.idle": "2023-01-24T17:30:41.061962Z", - "shell.execute_reply": "2023-01-24T17:30:41.061294Z" + "iopub.execute_input": "2023-01-25T19:43:07.679395Z", + "iopub.status.busy": "2023-01-25T19:43:07.678829Z", + "iopub.status.idle": "2023-01-25T19:43:07.747207Z", + "shell.execute_reply": "2023-01-25T19:43:07.746195Z" }, "papermill": { - "duration": 0.059601, - "end_time": "2023-01-24T17:30:41.063693", + "duration": 0.087386, + "end_time": "2023-01-25T19:43:07.750283", "exception": false, - "start_time": "2023-01-24T17:30:41.004092", + "start_time": "2023-01-25T19:43:07.662897", "status": "completed" }, "scrolled": false, @@ -2228,10 +2228,10 @@ "id": "74a8a58a", "metadata": { "papermill": { - "duration": 0.012779, - "end_time": "2023-01-24T17:30:41.089349", + "duration": 0.0155, + "end_time": "2023-01-25T19:43:07.784703", "exception": false, - "start_time": "2023-01-24T17:30:41.076570", + "start_time": "2023-01-25T19:43:07.769203", "status": "completed" }, "tags": [] @@ -2251,16 +2251,16 @@ "id": "c0fbbfa9", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:30:41.116236Z", - "iopub.status.busy": "2023-01-24T17:30:41.115590Z", - "iopub.status.idle": "2023-01-24T17:36:10.563439Z", - "shell.execute_reply": "2023-01-24T17:36:10.561752Z" + "iopub.execute_input": "2023-01-25T19:43:07.820223Z", + "iopub.status.busy": "2023-01-25T19:43:07.819656Z", + "iopub.status.idle": "2023-01-25T19:49:56.739885Z", + "shell.execute_reply": "2023-01-25T19:49:56.737496Z" }, "papermill": { - "duration": 329.463997, - "end_time": "2023-01-24T17:36:10.566094", + "duration": 408.953698, + "end_time": "2023-01-25T19:49:56.754812", "exception": false, - "start_time": "2023-01-24T17:30:41.102097", + "start_time": "2023-01-25T19:43:07.801114", "status": "completed" }, "tags": [] @@ -2270,142 +2270,142 @@ "name": "stderr", "output_type": "stream", "text": [ - "behavior_session_831129394.nwb: 100%|██████████| 51.7M/51.7M [00:01<00:00, 37.3MMB/s]\n", + "behavior_session_831129394.nwb: 100%|██████████| 51.7M/51.7M [00:01<00:00, 31.5MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_832021447.nwb: 100%|██████████| 66.9M/66.9M [00:01<00:00, 38.1MMB/s]\n", + "behavior_session_832021447.nwb: 100%|██████████| 66.9M/66.9M [00:02<00:00, 30.0MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_832544149.nwb: 100%|██████████| 66.9M/66.9M [00:01<00:00, 37.9MMB/s]\n", + "behavior_session_832544149.nwb: 100%|██████████| 66.9M/66.9M [00:02<00:00, 32.0MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_833328750.nwb: 100%|██████████| 66.8M/66.8M [00:01<00:00, 40.6MMB/s]\n", + "behavior_session_833328750.nwb: 100%|██████████| 66.8M/66.8M [00:02<00:00, 24.8MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_834087859.nwb: 100%|██████████| 66.7M/66.7M [00:01<00:00, 37.9MMB/s]\n", + "behavior_session_834087859.nwb: 100%|██████████| 66.7M/66.7M [00:02<00:00, 29.2MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_834903060.nwb: 100%|██████████| 67.9M/67.9M [00:01<00:00, 41.5MMB/s]\n", + "behavior_session_834903060.nwb: 100%|██████████| 67.9M/67.9M [00:02<00:00, 30.9MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_835557296.nwb: 100%|██████████| 68.0M/68.0M [00:02<00:00, 31.4MMB/s]\n", + "behavior_session_835557296.nwb: 100%|██████████| 68.0M/68.0M [00:02<00:00, 29.0MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_836166694.nwb: 100%|██████████| 188M/188M [00:05<00:00, 35.3MMB/s]\n", + "behavior_session_836166694.nwb: 100%|██████████| 188M/188M [00:05<00:00, 32.0MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_836761653.nwb: 100%|██████████| 188M/188M [00:04<00:00, 38.0MMB/s]\n", + "behavior_session_836761653.nwb: 100%|██████████| 188M/188M [00:06<00:00, 30.0MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_837192567.nwb: 100%|██████████| 188M/188M [00:04<00:00, 38.3MMB/s]\n", + "behavior_session_837192567.nwb: 100%|██████████| 188M/188M [00:05<00:00, 31.3MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_837638916.nwb: 100%|██████████| 188M/188M [00:05<00:00, 35.6MMB/s]\n", + "behavior_session_837638916.nwb: 100%|██████████| 188M/188M [00:05<00:00, 31.6MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_838496126.nwb: 100%|██████████| 193M/193M [00:05<00:00, 37.4MMB/s]\n", + "behavior_session_838496126.nwb: 100%|██████████| 193M/193M [00:05<00:00, 37.2MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_839234289.nwb: 100%|██████████| 193M/193M [00:05<00:00, 36.8MMB/s]\n", + "behavior_session_839234289.nwb: 100%|██████████| 193M/193M [00:05<00:00, 35.3MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_839566045.nwb: 100%|██████████| 193M/193M [00:05<00:00, 34.9MMB/s]\n", + "behavior_session_839566045.nwb: 100%|██████████| 193M/193M [00:05<00:00, 32.4MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_839939986.nwb: 100%|██████████| 193M/193M [00:05<00:00, 32.6MMB/s]\n", + "behavior_session_839939986.nwb: 100%|██████████| 193M/193M [00:06<00:00, 28.0MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_840594514.nwb: 100%|██████████| 193M/193M [00:05<00:00, 36.5MMB/s]\n", + "behavior_session_840594514.nwb: 100%|██████████| 193M/193M [00:06<00:00, 29.8MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_841148118.nwb: 100%|██████████| 193M/193M [00:05<00:00, 33.8MMB/s]\n", + "behavior_session_841148118.nwb: 100%|██████████| 193M/193M [00:06<00:00, 29.4MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_841707177.nwb: 100%|██████████| 193M/193M [00:05<00:00, 36.1MMB/s]\n", + "behavior_session_841707177.nwb: 100%|██████████| 193M/193M [00:06<00:00, 31.4MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_842174399.nwb: 100%|██████████| 193M/193M [00:04<00:00, 38.9MMB/s]\n", + "behavior_session_842174399.nwb: 100%|██████████| 193M/193M [00:05<00:00, 35.6MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_ophys_experiment_842973730.nwb: 100%|██████████| 864M/864M [00:22<00:00, 37.9MMB/s]\n", + "behavior_ophys_experiment_842973730.nwb: 100%|██████████| 864M/864M [00:27<00:00, 31.6MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_ophys_experiment_843519218.nwb: 100%|██████████| 829M/829M [00:24<00:00, 34.3MMB/s]\n", + "behavior_ophys_experiment_843519218.nwb: 100%|██████████| 829M/829M [00:32<00:00, 25.6MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_844164376.nwb: 100%|██████████| 193M/193M [00:06<00:00, 30.8MMB/s]\n", + "behavior_session_844164376.nwb: 100%|██████████| 193M/193M [00:06<00:00, 29.7MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_844849972.nwb: 100%|██████████| 193M/193M [00:05<00:00, 37.4MMB/s]\n", + "behavior_session_844849972.nwb: 100%|██████████| 193M/193M [00:06<00:00, 29.8MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_ophys_experiment_848694639.nwb: 100%|██████████| 428M/428M [00:13<00:00, 32.8MMB/s]\n", + "behavior_ophys_experiment_848694639.nwb: 100%|██████████| 428M/428M [00:14<00:00, 29.3MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_846194950.nwb: 100%|██████████| 193M/193M [00:05<00:00, 37.1MMB/s]\n", + "behavior_session_846194950.nwb: 100%|██████████| 193M/193M [00:06<00:00, 29.6MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_ophys_experiment_847125577.nwb: 100%|██████████| 924M/924M [00:30<00:00, 30.5MMB/s]\n", + "behavior_ophys_experiment_847125577.nwb: 100%|██████████| 924M/924M [00:32<00:00, 28.1MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_ophys_experiment_848698709.nwb: 100%|██████████| 1.33G/1.33G [00:41<00:00, 31.7MMB/s]\n", + "behavior_ophys_experiment_848698709.nwb: 100%|██████████| 1.33G/1.33G [00:48<00:00, 27.5MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_session_853526948.nwb: 100%|██████████| 193M/193M [00:05<00:00, 32.3MMB/s]\n", + "behavior_session_853526948.nwb: 100%|██████████| 193M/193M [00:06<00:00, 30.4MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", @@ -2425,10 +2425,10 @@ "id": "ff0cddf4", "metadata": { "papermill": { - "duration": 0.087056, - "end_time": "2023-01-24T17:36:10.739656", + "duration": 0.131939, + "end_time": "2023-01-25T19:49:57.128830", "exception": false, - "start_time": "2023-01-24T17:36:10.652600", + "start_time": "2023-01-25T19:49:56.996891", "status": "completed" }, "tags": [] @@ -2444,16 +2444,16 @@ "id": "2c457e12", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:10.916601Z", - "iopub.status.busy": "2023-01-24T17:36:10.915545Z", - "iopub.status.idle": "2023-01-24T17:36:10.922766Z", - "shell.execute_reply": "2023-01-24T17:36:10.922212Z" + "iopub.execute_input": "2023-01-25T19:49:57.405024Z", + "iopub.status.busy": "2023-01-25T19:49:57.403987Z", + "iopub.status.idle": "2023-01-25T19:49:57.415175Z", + "shell.execute_reply": "2023-01-25T19:49:57.414345Z" }, "papermill": { - "duration": 0.09752, - "end_time": "2023-01-24T17:36:10.924172", + "duration": 0.156803, + "end_time": "2023-01-25T19:49:57.418325", "exception": false, - "start_time": "2023-01-24T17:36:10.826652", + "start_time": "2023-01-25T19:49:57.261522", "status": "completed" }, "scrolled": true, @@ -2496,10 +2496,10 @@ "id": "0f7a6887", "metadata": { "papermill": { - "duration": 0.0856, - "end_time": "2023-01-24T17:36:11.096477", + "duration": 0.133392, + "end_time": "2023-01-25T19:49:57.679499", "exception": false, - "start_time": "2023-01-24T17:36:11.010877", + "start_time": "2023-01-25T19:49:57.546107", "status": "completed" }, "tags": [] @@ -2514,16 +2514,16 @@ "id": "17525cab", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:11.271331Z", - "iopub.status.busy": "2023-01-24T17:36:11.271041Z", - "iopub.status.idle": "2023-01-24T17:36:11.276277Z", - "shell.execute_reply": "2023-01-24T17:36:11.275642Z" + "iopub.execute_input": "2023-01-25T19:49:57.941769Z", + "iopub.status.busy": "2023-01-25T19:49:57.941341Z", + "iopub.status.idle": "2023-01-25T19:49:57.948702Z", + "shell.execute_reply": "2023-01-25T19:49:57.947862Z" }, "papermill": { - "duration": 0.09508, - "end_time": "2023-01-24T17:36:11.278082", + "duration": 0.139962, + "end_time": "2023-01-25T19:49:57.952072", "exception": false, - "start_time": "2023-01-24T17:36:11.183002", + "start_time": "2023-01-25T19:49:57.812110", "status": "completed" }, "tags": [] @@ -2539,10 +2539,10 @@ "id": "e90defcb", "metadata": { "papermill": { - "duration": 0.086174, - "end_time": "2023-01-24T17:36:11.449768", + "duration": 0.129178, + "end_time": "2023-01-25T19:49:58.211679", "exception": false, - "start_time": "2023-01-24T17:36:11.363594", + "start_time": "2023-01-25T19:49:58.082501", "status": "completed" }, "tags": [] @@ -2558,16 +2558,16 @@ "id": "5083aad7", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:11.621679Z", - "iopub.status.busy": "2023-01-24T17:36:11.621383Z", - "iopub.status.idle": "2023-01-24T17:36:11.628092Z", - "shell.execute_reply": "2023-01-24T17:36:11.627442Z" + "iopub.execute_input": "2023-01-25T19:49:58.591431Z", + "iopub.status.busy": "2023-01-25T19:49:58.590436Z", + "iopub.status.idle": "2023-01-25T19:49:58.633582Z", + "shell.execute_reply": "2023-01-25T19:49:58.632321Z" }, "papermill": { - "duration": 0.09439, - "end_time": "2023-01-24T17:36:11.629594", + "duration": 0.291819, + "end_time": "2023-01-25T19:49:58.636252", "exception": false, - "start_time": "2023-01-24T17:36:11.535204", + "start_time": "2023-01-25T19:49:58.344433", "status": "completed" }, "tags": [] @@ -2603,10 +2603,10 @@ "id": "b7186587", "metadata": { "papermill": { - "duration": 0.084218, - "end_time": "2023-01-24T17:36:11.798402", + "duration": 0.134006, + "end_time": "2023-01-25T19:49:58.957153", "exception": false, - "start_time": "2023-01-24T17:36:11.714184", + "start_time": "2023-01-25T19:49:58.823147", "status": "completed" }, "tags": [] @@ -2622,16 +2622,16 @@ "id": "0d49dd24", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:11.970486Z", - "iopub.status.busy": "2023-01-24T17:36:11.969913Z", - "iopub.status.idle": "2023-01-24T17:36:11.979282Z", - "shell.execute_reply": "2023-01-24T17:36:11.978595Z" + "iopub.execute_input": "2023-01-25T19:49:59.223328Z", + "iopub.status.busy": "2023-01-25T19:49:59.222363Z", + "iopub.status.idle": "2023-01-25T19:49:59.238050Z", + "shell.execute_reply": "2023-01-25T19:49:59.236867Z" }, "papermill": { - "duration": 0.097179, - "end_time": "2023-01-24T17:36:11.980728", + "duration": 0.154198, + "end_time": "2023-01-25T19:49:59.240858", "exception": false, - "start_time": "2023-01-24T17:36:11.883549", + "start_time": "2023-01-25T19:49:59.086660", "status": "completed" }, "tags": [] @@ -2649,10 +2649,10 @@ "id": "820d6b7e", "metadata": { "papermill": { - "duration": 0.084843, - "end_time": "2023-01-24T17:36:12.210406", + "duration": 0.129106, + "end_time": "2023-01-25T19:49:59.511144", "exception": false, - "start_time": "2023-01-24T17:36:12.125563", + "start_time": "2023-01-25T19:49:59.382038", "status": "completed" }, "tags": [] @@ -2668,16 +2668,16 @@ "id": "a0e09d3d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:12.382775Z", - "iopub.status.busy": "2023-01-24T17:36:12.382189Z", - "iopub.status.idle": "2023-01-24T17:36:12.408897Z", - "shell.execute_reply": "2023-01-24T17:36:12.408222Z" + "iopub.execute_input": "2023-01-25T19:49:59.778534Z", + "iopub.status.busy": "2023-01-25T19:49:59.777741Z", + "iopub.status.idle": "2023-01-25T19:49:59.817875Z", + "shell.execute_reply": "2023-01-25T19:49:59.816584Z" }, "papermill": { - "duration": 0.11462, - "end_time": "2023-01-24T17:36:12.410398", + "duration": 0.175659, + "end_time": "2023-01-25T19:49:59.820101", "exception": false, - "start_time": "2023-01-24T17:36:12.295778", + "start_time": "2023-01-25T19:49:59.644442", "status": "completed" }, "tags": [] @@ -2839,10 +2839,10 @@ "id": "fbe586f5", "metadata": { "papermill": { - "duration": 0.085061, - "end_time": "2023-01-24T17:36:12.581018", + "duration": 0.187308, + "end_time": "2023-01-25T19:50:00.148898", "exception": false, - "start_time": "2023-01-24T17:36:12.495957", + "start_time": "2023-01-25T19:49:59.961590", "status": "completed" }, "tags": [] @@ -2858,16 +2858,16 @@ "id": "853bb2ef", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:12.754232Z", - "iopub.status.busy": "2023-01-24T17:36:12.753654Z", - "iopub.status.idle": "2023-01-24T17:36:12.764881Z", - "shell.execute_reply": "2023-01-24T17:36:12.764176Z" + "iopub.execute_input": "2023-01-25T19:50:00.387760Z", + "iopub.status.busy": "2023-01-25T19:50:00.386928Z", + "iopub.status.idle": "2023-01-25T19:50:00.402029Z", + "shell.execute_reply": "2023-01-25T19:50:00.401176Z" }, "papermill": { - "duration": 0.099589, - "end_time": "2023-01-24T17:36:12.766409", + "duration": 0.137558, + "end_time": "2023-01-25T19:50:00.404128", "exception": false, - "start_time": "2023-01-24T17:36:12.666820", + "start_time": "2023-01-25T19:50:00.266570", "status": "completed" }, "tags": [] @@ -2900,29 +2900,29 @@ " \n", " \n", " \n", - " 2832\n", - " 3192.545083\n", - " 191424\n", + " 2870\n", + " 3218.579257\n", + " 192985\n", " \n", " \n", - " 1645\n", - " 2016.104328\n", - " 120885\n", + " 221\n", + " 475.151952\n", + " 28490\n", " \n", " \n", - " 3171\n", - " 3594.932201\n", - " 215551\n", + " 73\n", + " 336.775626\n", + " 20193\n", " \n", " \n", - " 2702\n", - " 3004.485325\n", - " 180148\n", + " 1176\n", + " 1512.199000\n", + " 90671\n", " \n", " \n", - " 109\n", - " 362.893122\n", - " 21759\n", + " 2630\n", + " 2915.575589\n", + " 174817\n", " \n", " \n", "\n", @@ -2930,11 +2930,11 @@ ], "text/plain": [ " timestamps frame\n", - "2832 3192.545083 191424\n", - "1645 2016.104328 120885\n", - "3171 3594.932201 215551\n", - "2702 3004.485325 180148\n", - "109 362.893122 21759" + "2870 3218.579257 192985\n", + "221 475.151952 28490\n", + "73 336.775626 20193\n", + "1176 1512.199000 90671\n", + "2630 2915.575589 174817" ] }, "execution_count": 18, @@ -2951,10 +2951,10 @@ "id": "51c4fcaa", "metadata": { "papermill": { - "duration": 0.085666, - "end_time": "2023-01-24T17:36:12.939051", + "duration": 0.124925, + "end_time": "2023-01-25T19:50:00.663686", "exception": false, - "start_time": "2023-01-24T17:36:12.853385", + "start_time": "2023-01-25T19:50:00.538761", "status": "completed" }, "tags": [] @@ -2970,16 +2970,16 @@ "id": "47edbecd", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:13.112523Z", - "iopub.status.busy": "2023-01-24T17:36:13.111952Z", - "iopub.status.idle": "2023-01-24T17:36:13.120417Z", - "shell.execute_reply": "2023-01-24T17:36:13.119735Z" + "iopub.execute_input": "2023-01-25T19:50:00.924658Z", + "iopub.status.busy": "2023-01-25T19:50:00.923505Z", + "iopub.status.idle": "2023-01-25T19:50:00.938222Z", + "shell.execute_reply": "2023-01-25T19:50:00.937277Z" }, "papermill": { - "duration": 0.097544, - "end_time": "2023-01-24T17:36:13.121885", + "duration": 0.154797, + "end_time": "2023-01-25T19:50:00.940948", "exception": false, - "start_time": "2023-01-24T17:36:13.024341", + "start_time": "2023-01-25T19:50:00.786151", "status": "completed" }, "tags": [] @@ -3013,33 +3013,33 @@ " \n", " \n", " \n", - " 106\n", + " 74\n", " 0.007\n", - " 3027.117226\n", + " 2294.124514\n", " False\n", " \n", " \n", - " 124\n", + " 10\n", " 0.007\n", - " 3378.970374\n", + " 547.650677\n", " False\n", " \n", " \n", - " 92\n", + " 45\n", " 0.007\n", - " 2728.132893\n", + " 1511.765365\n", " False\n", " \n", " \n", - " 51\n", + " 69\n", " 0.007\n", - " 1738.034074\n", + " 2108.683208\n", " False\n", " \n", " \n", - " 53\n", + " 76\n", " 0.007\n", - " 1788.351260\n", + " 2340.672531\n", " False\n", " \n", " \n", @@ -3047,12 +3047,12 @@ "" ], "text/plain": [ - " volume timestamps auto_rewarded\n", - "106 0.007 3027.117226 False\n", - "124 0.007 3378.970374 False\n", - "92 0.007 2728.132893 False\n", - "51 0.007 1738.034074 False\n", - "53 0.007 1788.351260 False" + " volume timestamps auto_rewarded\n", + "74 0.007 2294.124514 False\n", + "10 0.007 547.650677 False\n", + "45 0.007 1511.765365 False\n", + "69 0.007 2108.683208 False\n", + "76 0.007 2340.672531 False" ] }, "execution_count": 19, @@ -3069,10 +3069,10 @@ "id": "28da6b4e", "metadata": { "papermill": { - "duration": 0.086361, - "end_time": "2023-01-24T17:36:13.294494", + "duration": 0.143065, + "end_time": "2023-01-25T19:50:01.221576", "exception": false, - "start_time": "2023-01-24T17:36:13.208133", + "start_time": "2023-01-25T19:50:01.078511", "status": "completed" }, "tags": [] @@ -3088,16 +3088,16 @@ "id": "d533cd8e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:13.469130Z", - "iopub.status.busy": "2023-01-24T17:36:13.468558Z", - "iopub.status.idle": "2023-01-24T17:36:13.475823Z", - "shell.execute_reply": "2023-01-24T17:36:13.475295Z" + "iopub.execute_input": "2023-01-25T19:50:01.491137Z", + "iopub.status.busy": "2023-01-25T19:50:01.490486Z", + "iopub.status.idle": "2023-01-25T19:50:01.501349Z", + "shell.execute_reply": "2023-01-25T19:50:01.500144Z" }, "papermill": { - "duration": 0.095832, - "end_time": "2023-01-24T17:36:13.477314", + "duration": 0.146903, + "end_time": "2023-01-25T19:50:01.504085", "exception": false, - "start_time": "2023-01-24T17:36:13.381482", + "start_time": "2023-01-25T19:50:01.357182", "status": "completed" }, "tags": [] @@ -3181,10 +3181,10 @@ "id": "99fbd519", "metadata": { "papermill": { - "duration": 0.086494, - "end_time": "2023-01-24T17:36:13.650818", + "duration": 0.132564, + "end_time": "2023-01-25T19:50:01.771398", "exception": false, - "start_time": "2023-01-24T17:36:13.564324", + "start_time": "2023-01-25T19:50:01.638834", "status": "completed" }, "tags": [] @@ -3198,10 +3198,10 @@ "id": "1451597b", "metadata": { "papermill": { - "duration": 0.08675, - "end_time": "2023-01-24T17:36:13.823624", + "duration": 0.13635, + "end_time": "2023-01-25T19:50:02.039751", "exception": false, - "start_time": "2023-01-24T17:36:13.736874", + "start_time": "2023-01-25T19:50:01.903401", "status": "completed" }, "tags": [] @@ -3216,16 +3216,16 @@ "id": "91138ca3", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:14.028380Z", - "iopub.status.busy": "2023-01-24T17:36:14.028095Z", - "iopub.status.idle": "2023-01-24T17:36:14.039952Z", - "shell.execute_reply": "2023-01-24T17:36:14.039320Z" + "iopub.execute_input": "2023-01-25T19:50:02.304293Z", + "iopub.status.busy": "2023-01-25T19:50:02.303555Z", + "iopub.status.idle": "2023-01-25T19:50:02.320900Z", + "shell.execute_reply": "2023-01-25T19:50:02.319738Z" }, "papermill": { - "duration": 0.131696, - "end_time": "2023-01-24T17:36:14.041621", + "duration": 0.152164, + "end_time": "2023-01-25T19:50:02.322966", "exception": false, - "start_time": "2023-01-24T17:36:13.909925", + "start_time": "2023-01-25T19:50:02.170802", "status": "completed" }, "tags": [] @@ -3242,10 +3242,10 @@ "id": "e196d97e", "metadata": { "papermill": { - "duration": 0.085127, - "end_time": "2023-01-24T17:36:14.212917", + "duration": 0.131931, + "end_time": "2023-01-25T19:50:02.585836", "exception": false, - "start_time": "2023-01-24T17:36:14.127790", + "start_time": "2023-01-25T19:50:02.453905", "status": "completed" }, "tags": [] @@ -3260,16 +3260,16 @@ "id": "4dc57491", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:14.387506Z", - "iopub.status.busy": "2023-01-24T17:36:14.387220Z", - "iopub.status.idle": "2023-01-24T17:36:14.395365Z", - "shell.execute_reply": "2023-01-24T17:36:14.394647Z" + "iopub.execute_input": "2023-01-25T19:50:02.905970Z", + "iopub.status.busy": "2023-01-25T19:50:02.904801Z", + "iopub.status.idle": "2023-01-25T19:50:02.918165Z", + "shell.execute_reply": "2023-01-25T19:50:02.917293Z" }, "papermill": { - "duration": 0.097633, - "end_time": "2023-01-24T17:36:14.396865", + "duration": 0.156587, + "end_time": "2023-01-25T19:50:02.920151", "exception": false, - "start_time": "2023-01-24T17:36:14.299232", + "start_time": "2023-01-25T19:50:02.763564", "status": "completed" }, "tags": [] @@ -3344,10 +3344,10 @@ "id": "ca252172", "metadata": { "papermill": { - "duration": 0.085957, - "end_time": "2023-01-24T17:36:14.570377", + "duration": 0.130202, + "end_time": "2023-01-25T19:50:03.188652", "exception": false, - "start_time": "2023-01-24T17:36:14.484420", + "start_time": "2023-01-25T19:50:03.058450", "status": "completed" }, "tags": [] @@ -3362,16 +3362,16 @@ "id": "8841065a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:14.744253Z", - "iopub.status.busy": "2023-01-24T17:36:14.743687Z", - "iopub.status.idle": "2023-01-24T17:36:14.860758Z", - "shell.execute_reply": "2023-01-24T17:36:14.860176Z" + "iopub.execute_input": "2023-01-25T19:50:03.450490Z", + "iopub.status.busy": "2023-01-25T19:50:03.449800Z", + "iopub.status.idle": "2023-01-25T19:50:03.601183Z", + "shell.execute_reply": "2023-01-25T19:50:03.600081Z" }, "papermill": { - "duration": 0.206154, - "end_time": "2023-01-24T17:36:14.862423", + "duration": 0.28477, + "end_time": "2023-01-25T19:50:03.603688", "exception": false, - "start_time": "2023-01-24T17:36:14.656269", + "start_time": "2023-01-25T19:50:03.318918", "status": "completed" }, "scrolled": false, @@ -4364,7 +4364,7 @@ { "data": { "text/html": [ - "
    " + "
    " ], "text/plain": [ "" @@ -5359,7 +5359,7 @@ { "data": { "text/html": [ - "
    " + "
    " ], "text/plain": [ "" @@ -5393,10 +5393,10 @@ "id": "2513e874", "metadata": { "papermill": { - "duration": 0.088892, - "end_time": "2023-01-24T17:36:15.041893", + "duration": 0.133757, + "end_time": "2023-01-25T19:50:03.886182", "exception": false, - "start_time": "2023-01-24T17:36:14.953001", + "start_time": "2023-01-25T19:50:03.752425", "status": "completed" }, "tags": [] @@ -5410,10 +5410,10 @@ "id": "ced53b36", "metadata": { "papermill": { - "duration": 0.088153, - "end_time": "2023-01-24T17:36:15.218911", + "duration": 0.133435, + "end_time": "2023-01-25T19:50:04.153793", "exception": false, - "start_time": "2023-01-24T17:36:15.130758", + "start_time": "2023-01-25T19:50:04.020358", "status": "completed" }, "tags": [] @@ -5429,16 +5429,16 @@ "id": "647c08c2", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:15.396677Z", - "iopub.status.busy": "2023-01-24T17:36:15.396255Z", - "iopub.status.idle": "2023-01-24T17:36:15.419307Z", - "shell.execute_reply": "2023-01-24T17:36:15.418760Z" + "iopub.execute_input": "2023-01-25T19:50:04.422936Z", + "iopub.status.busy": "2023-01-25T19:50:04.422110Z", + "iopub.status.idle": "2023-01-25T19:50:04.454122Z", + "shell.execute_reply": "2023-01-25T19:50:04.453271Z" }, "papermill": { - "duration": 0.113939, - "end_time": "2023-01-24T17:36:15.420882", + "duration": 0.167967, + "end_time": "2023-01-25T19:50:04.456660", "exception": false, - "start_time": "2023-01-24T17:36:15.306943", + "start_time": "2023-01-25T19:50:04.288693", "status": "completed" }, "tags": [] @@ -5514,12 +5514,12 @@ " \n", " \n", " \n", - " 458\n", - " 2536.854330\n", - " 2540.239984\n", - " [2539.789691882208, 2539.923110867734]\n", + " 471\n", + " 2575.180093\n", + " 2576.164127\n", + " [2575.5970604587346, 2575.7304536820156, 2575....\n", " NaN\n", - " 0.000\n", + " 0.0\n", " False\n", " False\n", " False\n", @@ -5529,21 +5529,21 @@ " False\n", " False\n", " False\n", - " 3.385654\n", + " 0.984034\n", " NaN\n", " NaN\n", " NaN\n", " NaN\n", - " im065\n", - " im065\n", + " im069\n", + " im069\n", " \n", " \n", - " 148\n", - " 937.679519\n", - " 940.064421\n", - " [939.5974266686244, 939.7475486509502]\n", + " 364\n", + " 2041.137838\n", + " 2045.657516\n", + " [2045.3406591945095]\n", " NaN\n", - " 0.000\n", + " 0.0\n", " False\n", " False\n", " False\n", @@ -5553,45 +5553,45 @@ " False\n", " False\n", " False\n", - " 2.384902\n", + " 4.519678\n", " NaN\n", " NaN\n", " NaN\n", " NaN\n", - " im061\n", - " im061\n", + " im066\n", + " im066\n", " \n", " \n", - " 535\n", - " 2724.680608\n", - " 2731.968858\n", - " [2728.1328932165634, 2728.750022922759, 2729.0...\n", - " 2728.132893\n", - " 0.007\n", - " True\n", + " 194\n", + " 1170.469279\n", + " 1172.053692\n", + " [1171.6033669154858, 1171.7368086159695]\n", + " NaN\n", + " 0.0\n", + " False\n", " False\n", " False\n", - " True\n", " False\n", " True\n", " False\n", " False\n", " False\n", - " 7.288250\n", - " 2728.132893\n", - " 163551.0\n", - " 2727.70378\n", - " 0.429113\n", - " im085\n", - " im077\n", + " False\n", + " 1.584412\n", + " NaN\n", + " NaN\n", + " NaN\n", + " NaN\n", + " im069\n", + " im069\n", " \n", " \n", - " 585\n", - " 3018.978405\n", - " 3022.113856\n", - " [3021.6635369842406, 3021.796935470891]\n", + " 179\n", + " 1081.826391\n", + " 1086.629592\n", + " [1085.9291145502357, 1086.1626337864436, 1086....\n", " NaN\n", - " 0.000\n", + " 0.0\n", " False\n", " False\n", " False\n", @@ -5601,21 +5601,21 @@ " False\n", " False\n", " False\n", - " 3.135451\n", + " 4.803201\n", " NaN\n", " NaN\n", " NaN\n", " NaN\n", - " im061\n", - " im061\n", + " im085\n", + " im085\n", " \n", " \n", - " 194\n", - " 1170.469279\n", - " 1172.053692\n", - " [1171.6033669154858, 1171.7368086159695]\n", + " 341\n", + " 1913.485372\n", + " 1918.088494\n", + " [1917.6214574656915, 1917.7715836032294]\n", " NaN\n", - " 0.000\n", + " 0.0\n", " False\n", " False\n", " False\n", @@ -5625,13 +5625,13 @@ " False\n", " False\n", " False\n", - " 1.584412\n", + " 4.603122\n", " NaN\n", " NaN\n", " NaN\n", " NaN\n", - " im069\n", - " im069\n", + " im077\n", + " im077\n", " \n", " \n", "\n", @@ -5640,51 +5640,51 @@ "text/plain": [ " start_time stop_time \\\n", "trials_id \n", - "458 2536.854330 2540.239984 \n", - "148 937.679519 940.064421 \n", - "535 2724.680608 2731.968858 \n", - "585 3018.978405 3022.113856 \n", + "471 2575.180093 2576.164127 \n", + "364 2041.137838 2045.657516 \n", "194 1170.469279 1172.053692 \n", + "179 1081.826391 1086.629592 \n", + "341 1913.485372 1918.088494 \n", "\n", " lick_times reward_time \\\n", "trials_id \n", - "458 [2539.789691882208, 2539.923110867734] NaN \n", - "148 [939.5974266686244, 939.7475486509502] NaN \n", - "535 [2728.1328932165634, 2728.750022922759, 2729.0... 2728.132893 \n", - "585 [3021.6635369842406, 3021.796935470891] NaN \n", + "471 [2575.5970604587346, 2575.7304536820156, 2575.... NaN \n", + "364 [2045.3406591945095] NaN \n", "194 [1171.6033669154858, 1171.7368086159695] NaN \n", + "179 [1085.9291145502357, 1086.1626337864436, 1086.... NaN \n", + "341 [1917.6214574656915, 1917.7715836032294] NaN \n", "\n", " reward_volume hit false_alarm miss is_change aborted \\\n", "trials_id \n", - "458 0.000 False False False False True \n", - "148 0.000 False False False False True \n", - "535 0.007 True False False True False \n", - "585 0.000 False False False False True \n", - "194 0.000 False False False False True \n", + "471 0.0 False False False False True \n", + "364 0.0 False False False False True \n", + "194 0.0 False False False False True \n", + "179 0.0 False False False False True \n", + "341 0.0 False False False False True \n", "\n", " go catch auto_rewarded correct_reject trial_length \\\n", "trials_id \n", - "458 False False False False 3.385654 \n", - "148 False False False False 2.384902 \n", - "535 True False False False 7.288250 \n", - "585 False False False False 3.135451 \n", + "471 False False False False 0.984034 \n", + "364 False False False False 4.519678 \n", "194 False False False False 1.584412 \n", + "179 False False False False 4.803201 \n", + "341 False False False False 4.603122 \n", "\n", " response_time change_frame change_time response_latency \\\n", "trials_id \n", - "458 NaN NaN NaN NaN \n", - "148 NaN NaN NaN NaN \n", - "535 2728.132893 163551.0 2727.70378 0.429113 \n", - "585 NaN NaN NaN NaN \n", + "471 NaN NaN NaN NaN \n", + "364 NaN NaN NaN NaN \n", "194 NaN NaN NaN NaN \n", + "179 NaN NaN NaN NaN \n", + "341 NaN NaN NaN NaN \n", "\n", " initial_image_name change_image_name \n", "trials_id \n", - "458 im065 im065 \n", - "148 im061 im061 \n", - "535 im085 im077 \n", - "585 im061 im061 \n", - "194 im069 im069 " + "471 im069 im069 \n", + "364 im066 im066 \n", + "194 im069 im069 \n", + "179 im085 im085 \n", + "341 im077 im077 " ] }, "execution_count": 24, @@ -5701,10 +5701,10 @@ "id": "16905cd9", "metadata": { "papermill": { - "duration": 0.088368, - "end_time": "2023-01-24T17:36:15.598827", + "duration": 0.139479, + "end_time": "2023-01-25T19:50:04.754643", "exception": false, - "start_time": "2023-01-24T17:36:15.510459", + "start_time": "2023-01-25T19:50:04.615164", "status": "completed" }, "tags": [] @@ -5725,16 +5725,16 @@ "id": "caa527ef", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:15.776807Z", - "iopub.status.busy": "2023-01-24T17:36:15.776229Z", - "iopub.status.idle": "2023-01-24T17:36:15.790157Z", - "shell.execute_reply": "2023-01-24T17:36:15.789619Z" + "iopub.execute_input": "2023-01-25T19:50:05.026161Z", + "iopub.status.busy": "2023-01-25T19:50:05.025326Z", + "iopub.status.idle": "2023-01-25T19:50:05.051094Z", + "shell.execute_reply": "2023-01-25T19:50:05.049680Z" }, "papermill": { - "duration": 0.10461, - "end_time": "2023-01-24T17:36:15.791718", + "duration": 0.164843, + "end_time": "2023-01-25T19:50:05.053800", "exception": false, - "start_time": "2023-01-24T17:36:15.687108", + "start_time": "2023-01-25T19:50:04.888957", "status": "completed" }, "tags": [] @@ -5782,10 +5782,10 @@ "id": "807123e3", "metadata": { "papermill": { - "duration": 0.08886, - "end_time": "2023-01-24T17:36:15.969739", + "duration": 0.134799, + "end_time": "2023-01-25T19:50:05.323809", "exception": false, - "start_time": "2023-01-24T17:36:15.880879", + "start_time": "2023-01-25T19:50:05.189010", "status": "completed" }, "tags": [] @@ -5800,16 +5800,16 @@ "id": "7d0f5d72", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:16.149349Z", - "iopub.status.busy": "2023-01-24T17:36:16.148776Z", - "iopub.status.idle": "2023-01-24T17:36:16.875216Z", - "shell.execute_reply": "2023-01-24T17:36:16.874266Z" + "iopub.execute_input": "2023-01-25T19:50:05.585229Z", + "iopub.status.busy": "2023-01-25T19:50:05.584660Z", + "iopub.status.idle": "2023-01-25T19:50:07.008485Z", + "shell.execute_reply": "2023-01-25T19:50:07.007452Z" }, "papermill": { - "duration": 0.818227, - "end_time": "2023-01-24T17:36:16.876963", + "duration": 1.557581, + "end_time": "2023-01-25T19:50:07.012439", "exception": false, - "start_time": "2023-01-24T17:36:16.058736", + "start_time": "2023-01-25T19:50:05.454858", "status": "completed" }, "tags": [] @@ -5857,10 +5857,10 @@ "id": "70da6184", "metadata": { "papermill": { - "duration": 0.089319, - "end_time": "2023-01-24T17:36:17.057306", + "duration": 0.201801, + "end_time": "2023-01-25T19:50:07.348735", "exception": false, - "start_time": "2023-01-24T17:36:16.967987", + "start_time": "2023-01-25T19:50:07.146934", "status": "completed" }, "tags": [] @@ -5876,16 +5876,16 @@ "id": "febbf8b6", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:17.238940Z", - "iopub.status.busy": "2023-01-24T17:36:17.238296Z", - "iopub.status.idle": "2023-01-24T17:36:37.462370Z", - "shell.execute_reply": "2023-01-24T17:36:37.461753Z" + "iopub.execute_input": "2023-01-25T19:50:07.632879Z", + "iopub.status.busy": "2023-01-25T19:50:07.631836Z", + "iopub.status.idle": "2023-01-25T19:50:46.838046Z", + "shell.execute_reply": "2023-01-25T19:50:46.837135Z" }, "papermill": { - "duration": 20.316748, - "end_time": "2023-01-24T17:36:37.464227", + "duration": 39.496893, + "end_time": "2023-01-25T19:50:46.985102", "exception": false, - "start_time": "2023-01-24T17:36:17.147479", + "start_time": "2023-01-25T19:50:07.488209", "status": "completed" }, "tags": [] @@ -5903,16 +5903,16 @@ "id": "08670cce", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:37.674717Z", - "iopub.status.busy": "2023-01-24T17:36:37.674219Z", - "iopub.status.idle": "2023-01-24T17:36:37.691899Z", - "shell.execute_reply": "2023-01-24T17:36:37.691233Z" + "iopub.execute_input": "2023-01-25T19:50:47.265422Z", + "iopub.status.busy": "2023-01-25T19:50:47.264391Z", + "iopub.status.idle": "2023-01-25T19:50:47.297201Z", + "shell.execute_reply": "2023-01-25T19:50:47.296330Z" }, "papermill": { - "duration": 0.138836, - "end_time": "2023-01-24T17:36:37.693383", + "duration": 0.174689, + "end_time": "2023-01-25T19:50:47.299582", "exception": false, - "start_time": "2023-01-24T17:36:37.554547", + "start_time": "2023-01-25T19:50:47.124893", "status": "completed" }, "tags": [] @@ -6171,10 +6171,10 @@ "id": "4ca6eac5", "metadata": { "papermill": { - "duration": 0.090621, - "end_time": "2023-01-24T17:36:37.873396", + "duration": 0.148638, + "end_time": "2023-01-25T19:50:47.587938", "exception": false, - "start_time": "2023-01-24T17:36:37.782775", + "start_time": "2023-01-25T19:50:47.439300", "status": "completed" }, "tags": [] @@ -6189,16 +6189,16 @@ "id": "50232076", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:38.053729Z", - "iopub.status.busy": "2023-01-24T17:36:38.053162Z", - "iopub.status.idle": "2023-01-24T17:36:38.091067Z", - "shell.execute_reply": "2023-01-24T17:36:38.090516Z" + "iopub.execute_input": "2023-01-25T19:50:47.882490Z", + "iopub.status.busy": "2023-01-25T19:50:47.881741Z", + "iopub.status.idle": "2023-01-25T19:50:47.944686Z", + "shell.execute_reply": "2023-01-25T19:50:47.943597Z" }, "papermill": { - "duration": 0.130724, - "end_time": "2023-01-24T17:36:38.093023", + "duration": 0.207967, + "end_time": "2023-01-25T19:50:47.948553", "exception": false, - "start_time": "2023-01-24T17:36:37.962299", + "start_time": "2023-01-25T19:50:47.740586", "status": "completed" }, "tags": [] @@ -6740,10 +6740,10 @@ "id": "fac4dd45", "metadata": { "papermill": { - "duration": 0.089749, - "end_time": "2023-01-24T17:36:38.272816", + "duration": 0.126078, + "end_time": "2023-01-25T19:50:48.228162", "exception": false, - "start_time": "2023-01-24T17:36:38.183067", + "start_time": "2023-01-25T19:50:48.102084", "status": "completed" }, "tags": [] @@ -6759,16 +6759,16 @@ "id": "c9a1db3f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:36:38.454237Z", - "iopub.status.busy": "2023-01-24T17:36:38.453680Z", - "iopub.status.idle": "2023-01-24T17:36:38.590671Z", - "shell.execute_reply": "2023-01-24T17:36:38.590122Z" + "iopub.execute_input": "2023-01-25T19:50:48.491975Z", + "iopub.status.busy": "2023-01-25T19:50:48.491280Z", + "iopub.status.idle": "2023-01-25T19:50:48.718905Z", + "shell.execute_reply": "2023-01-25T19:50:48.718071Z" }, "papermill": { - "duration": 0.229134, - "end_time": "2023-01-24T17:36:38.592180", + "duration": 0.363084, + "end_time": "2023-01-25T19:50:48.721612", "exception": false, - "start_time": "2023-01-24T17:36:38.363046", + "start_time": "2023-01-25T19:50:48.358528", "status": "completed" }, "tags": [] @@ -7760,7 +7760,7 @@ { "data": { "text/html": [ - "
    " + "
    " ], "text/plain": [ "" @@ -7799,10 +7799,10 @@ "id": "2f3440d5", "metadata": { "papermill": { - "duration": 0.090628, - "end_time": "2023-01-24T17:36:38.774716", + "duration": 0.134155, + "end_time": "2023-01-25T19:50:49.011225", "exception": false, - "start_time": "2023-01-24T17:36:38.684088", + "start_time": "2023-01-25T19:50:48.877070", "status": "completed" }, "tags": [] @@ -7834,17 +7834,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 374.010533, - "end_time": "2023-01-24T17:36:40.289249", + "duration": 483.457936, + "end_time": "2023-01-25T19:50:52.231327", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/visual_behavior_mouse_history.ipynb", - "output_path": "/tmp/tmp01u5dz_w/scratch_nb.ipynb", + "output_path": "/tmp/tmpx3yxk7nd/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmp01u5dz_w", + "output_dir": "/tmp/tmpx3yxk7nd", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T17:30:26.278716", + "start_time": "2023-01-25T19:42:48.773391", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_LFP_analysis.ipynb b/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_LFP_analysis.ipynb index 003e45453..face6e106 100644 --- a/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_LFP_analysis.ipynb +++ b/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_LFP_analysis.ipynb @@ -5,10 +5,10 @@ "id": "6bb02f1a", "metadata": { "papermill": { - "duration": 0.008499, - "end_time": "2023-01-24T16:23:04.640405", + "duration": 0.011324, + "end_time": "2023-01-25T18:27:34.223150", "exception": false, - "start_time": "2023-01-24T16:23:04.631906", + "start_time": "2023-01-25T18:27:34.211826", "status": "completed" }, "tags": [] @@ -38,10 +38,10 @@ "id": "e36acc8a", "metadata": { "papermill": { - "duration": 0.007385, - "end_time": "2023-01-24T16:23:04.656083", + "duration": 0.009856, + "end_time": "2023-01-25T18:27:34.248699", "exception": false, - "start_time": "2023-01-24T16:23:04.648698", + "start_time": "2023-01-25T18:27:34.238843", "status": "completed" }, "tags": [] @@ -55,10 +55,10 @@ "id": "6c7d2610", "metadata": { "papermill": { - "duration": 0.007213, - "end_time": "2023-01-24T16:23:04.670505", + "duration": 0.010663, + "end_time": "2023-01-25T18:27:34.271240", "exception": false, - "start_time": "2023-01-24T16:23:04.663292", + "start_time": "2023-01-25T18:27:34.260577", "status": "completed" }, "tags": [] @@ -73,16 +73,16 @@ "id": "7bc37452", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:23:04.687269Z", - "iopub.status.busy": "2023-01-24T16:23:04.686713Z", - "iopub.status.idle": "2023-01-24T16:23:09.709835Z", - "shell.execute_reply": "2023-01-24T16:23:09.709155Z" + "iopub.execute_input": "2023-01-25T18:27:34.293220Z", + "iopub.status.busy": "2023-01-25T18:27:34.292535Z", + "iopub.status.idle": "2023-01-25T18:27:40.909166Z", + "shell.execute_reply": "2023-01-25T18:27:40.908086Z" }, "papermill": { - "duration": 5.034029, - "end_time": "2023-01-24T16:23:09.711717", + "duration": 6.630047, + "end_time": "2023-01-25T18:27:40.911853", "exception": false, - "start_time": "2023-01-24T16:23:04.677688", + "start_time": "2023-01-25T18:27:34.281806", "status": "completed" }, "tags": [] @@ -113,16 +113,16 @@ "id": "af872b41", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:23:09.729257Z", - "iopub.status.busy": "2023-01-24T16:23:09.728445Z", - "iopub.status.idle": "2023-01-24T16:23:09.731988Z", - "shell.execute_reply": "2023-01-24T16:23:09.731317Z" + "iopub.execute_input": "2023-01-25T18:27:40.934272Z", + "iopub.status.busy": "2023-01-25T18:27:40.933721Z", + "iopub.status.idle": "2023-01-25T18:27:40.937938Z", + "shell.execute_reply": "2023-01-25T18:27:40.937034Z" }, "papermill": { - "duration": 0.013681, - "end_time": "2023-01-24T16:23:09.733558", + "duration": 0.018151, + "end_time": "2023-01-25T18:27:40.940345", "exception": false, - "start_time": "2023-01-24T16:23:09.719877", + "start_time": "2023-01-25T18:27:40.922194", "status": "completed" }, "tags": [ @@ -139,10 +139,10 @@ "id": "77a62a62", "metadata": { "papermill": { - "duration": 0.00734, - "end_time": "2023-01-24T16:23:09.768236", + "duration": 0.011663, + "end_time": "2023-01-25T18:27:40.995066", "exception": false, - "start_time": "2023-01-24T16:23:09.760896", + "start_time": "2023-01-25T18:27:40.983403", "status": "completed" }, "tags": [] @@ -157,16 +157,16 @@ "id": "a8c7bacd", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:23:09.784269Z", - "iopub.status.busy": "2023-01-24T16:23:09.783813Z", - "iopub.status.idle": "2023-01-24T16:23:17.328244Z", - "shell.execute_reply": "2023-01-24T16:23:17.327556Z" + "iopub.execute_input": "2023-01-25T18:27:41.018329Z", + "iopub.status.busy": "2023-01-25T18:27:41.017513Z", + "iopub.status.idle": "2023-01-25T18:27:50.562356Z", + "shell.execute_reply": "2023-01-25T18:27:50.561326Z" }, "papermill": { - "duration": 7.554668, - "end_time": "2023-01-24T16:23:17.330242", + "duration": 9.558959, + "end_time": "2023-01-25T18:27:50.565133", "exception": false, - "start_time": "2023-01-24T16:23:09.775574", + "start_time": "2023-01-25T18:27:41.006174", "status": "completed" }, "tags": [] @@ -184,15 +184,15 @@ "\n", "To avoid this warning in the future, make sure that\n", "\n", - "/tmp/tmpiz8m_nab/_downloaded_data.json\n", + "/tmp/tmpnvtsv43n/_downloaded_data.json\n", "\n", "is not deleted between instantiations of this cache\n", " warnings.warn(msg, MissingLocalManifestWarning)\n", - "ecephys_sessions.csv: 100%|██████████| 64.7k/64.7k [00:00<00:00, 853kMB/s]\n", - "behavior_sessions.csv: 100%|██████████| 562k/562k [00:00<00:00, 3.53MMB/s] \n", - "units.csv: 100%|██████████| 132M/132M [00:03<00:00, 35.0MMB/s]\n", - "probes.csv: 100%|██████████| 130k/130k [00:00<00:00, 1.38MMB/s]\n", - "channels.csv: 100%|██████████| 27.9M/27.9M [00:00<00:00, 30.9MMB/s]\n" + "ecephys_sessions.csv: 100%|██████████| 64.7k/64.7k [00:00<00:00, 951kMB/s]\n", + "behavior_sessions.csv: 100%|██████████| 562k/562k [00:00<00:00, 4.03MMB/s] \n", + "units.csv: 100%|██████████| 132M/132M [00:04<00:00, 26.6MMB/s]\n", + "probes.csv: 100%|██████████| 130k/130k [00:00<00:00, 1.03MMB/s] \n", + "channels.csv: 100%|██████████| 27.9M/27.9M [00:01<00:00, 22.1MMB/s]\n" ] } ], @@ -206,10 +206,10 @@ "id": "3711ac01", "metadata": { "papermill": { - "duration": 0.010062, - "end_time": "2023-01-24T16:23:17.350739", + "duration": 0.01699, + "end_time": "2023-01-25T18:27:50.595978", "exception": false, - "start_time": "2023-01-24T16:23:17.340677", + "start_time": "2023-01-25T18:27:50.578988", "status": "completed" }, "tags": [] @@ -226,16 +226,16 @@ "id": "d9d52da5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:23:17.371892Z", - "iopub.status.busy": "2023-01-24T16:23:17.371353Z", - "iopub.status.idle": "2023-01-24T16:23:17.376488Z", - "shell.execute_reply": "2023-01-24T16:23:17.375968Z" + "iopub.execute_input": "2023-01-25T18:27:50.624454Z", + "iopub.status.busy": "2023-01-25T18:27:50.623844Z", + "iopub.status.idle": "2023-01-25T18:27:50.632044Z", + "shell.execute_reply": "2023-01-25T18:27:50.631061Z" }, "papermill": { - "duration": 0.017408, - "end_time": "2023-01-24T16:23:17.377982", + "duration": 0.024908, + "end_time": "2023-01-25T18:27:50.634113", "exception": false, - "start_time": "2023-01-24T16:23:17.360574", + "start_time": "2023-01-25T18:27:50.609205", "status": "completed" }, "tags": [] @@ -261,10 +261,10 @@ "id": "cb05bec5", "metadata": { "papermill": { - "duration": 0.009828, - "end_time": "2023-01-24T16:23:17.397683", + "duration": 0.022536, + "end_time": "2023-01-25T18:27:50.670493", "exception": false, - "start_time": "2023-01-24T16:23:17.387855", + "start_time": "2023-01-25T18:27:50.647957", "status": "completed" }, "tags": [] @@ -279,16 +279,16 @@ "id": "3a176ce5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:23:17.418781Z", - "iopub.status.busy": "2023-01-24T16:23:17.418307Z", - "iopub.status.idle": "2023-01-24T16:23:17.433078Z", - "shell.execute_reply": "2023-01-24T16:23:17.432398Z" + "iopub.execute_input": "2023-01-25T18:27:50.700203Z", + "iopub.status.busy": "2023-01-25T18:27:50.699599Z", + "iopub.status.idle": "2023-01-25T18:27:50.727398Z", + "shell.execute_reply": "2023-01-25T18:27:50.726485Z" }, "papermill": { - "duration": 0.026978, - "end_time": "2023-01-24T16:23:17.434548", + "duration": 0.045413, + "end_time": "2023-01-25T18:27:50.729626", "exception": false, - "start_time": "2023-01-24T16:23:17.407570", + "start_time": "2023-01-25T18:27:50.684213", "status": "completed" }, "tags": [] @@ -458,10 +458,10 @@ "id": "a311a723", "metadata": { "papermill": { - "duration": 0.01014, - "end_time": "2023-01-24T16:23:17.455133", + "duration": 0.016486, + "end_time": "2023-01-25T18:27:50.764849", "exception": false, - "start_time": "2023-01-24T16:23:17.444993", + "start_time": "2023-01-25T18:27:50.748363", "status": "completed" }, "tags": [] @@ -476,16 +476,16 @@ "id": "2efbb620", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:23:17.477188Z", - "iopub.status.busy": "2023-01-24T16:23:17.476481Z", - "iopub.status.idle": "2023-01-24T16:25:34.226433Z", - "shell.execute_reply": "2023-01-24T16:25:34.219728Z" + "iopub.execute_input": "2023-01-25T18:27:50.798184Z", + "iopub.status.busy": "2023-01-25T18:27:50.797607Z", + "iopub.status.idle": "2023-01-25T18:30:29.086163Z", + "shell.execute_reply": "2023-01-25T18:30:29.069164Z" }, "papermill": { - "duration": 136.820824, - "end_time": "2023-01-24T16:25:34.286128", + "duration": 158.479422, + "end_time": "2023-01-25T18:30:29.260858", "exception": false, - "start_time": "2023-01-24T16:23:17.465304", + "start_time": "2023-01-25T18:27:50.781436", "status": "completed" }, "tags": [] @@ -495,7 +495,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "ecephys_session_1064644573.nwb: 100%|██████████| 2.99G/2.99G [01:31<00:00, 32.7MMB/s]\n" + "ecephys_session_1064644573.nwb: 100%|██████████| 2.99G/2.99G [01:47<00:00, 27.9MMB/s]\n" ] } ], @@ -510,10 +510,10 @@ "id": "45708378", "metadata": { "papermill": { - "duration": 1.149131, - "end_time": "2023-01-24T16:25:35.604228", + "duration": 0.059558, + "end_time": "2023-01-25T18:30:29.730848", "exception": false, - "start_time": "2023-01-24T16:25:34.455097", + "start_time": "2023-01-25T18:30:29.671290", "status": "completed" }, "tags": [] @@ -527,10 +527,10 @@ "id": "d3bb9f65", "metadata": { "papermill": { - "duration": 0.038133, - "end_time": "2023-01-24T16:25:35.680947", + "duration": 0.058159, + "end_time": "2023-01-25T18:30:29.845905", "exception": false, - "start_time": "2023-01-24T16:25:35.642814", + "start_time": "2023-01-25T18:30:29.787746", "status": "completed" }, "tags": [] @@ -547,16 +547,16 @@ "id": "00df4338", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:25:35.761686Z", - "iopub.status.busy": "2023-01-24T16:25:35.761105Z", - "iopub.status.idle": "2023-01-24T16:28:50.103685Z", - "shell.execute_reply": "2023-01-24T16:28:50.092994Z" + "iopub.execute_input": "2023-01-25T18:30:29.997045Z", + "iopub.status.busy": "2023-01-25T18:30:29.996255Z", + "iopub.status.idle": "2023-01-25T18:34:16.430868Z", + "shell.execute_reply": "2023-01-25T18:34:16.413348Z" }, "papermill": { - "duration": 194.471296, - "end_time": "2023-01-24T16:28:50.190388", + "duration": 226.632327, + "end_time": "2023-01-25T18:34:16.538365", "exception": false, - "start_time": "2023-01-24T16:25:35.719092", + "start_time": "2023-01-25T18:30:29.906038", "status": "completed" }, "tags": [] @@ -566,7 +566,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "probe_probeC_lfp.nwb: 100%|██████████| 4.68G/4.68G [02:38<00:00, 29.6MMB/s]\n" + "probe_probeC_lfp.nwb: 100%|██████████| 4.68G/4.68G [03:08<00:00, 24.8MMB/s]\n" ] } ], @@ -580,16 +580,16 @@ "id": "7e2eb29a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:28:50.763082Z", - "iopub.status.busy": "2023-01-24T16:28:50.762344Z", - "iopub.status.idle": "2023-01-24T16:28:50.955502Z", - "shell.execute_reply": "2023-01-24T16:28:50.954592Z" + "iopub.execute_input": "2023-01-25T18:34:17.211705Z", + "iopub.status.busy": "2023-01-25T18:34:17.208556Z", + "iopub.status.idle": "2023-01-25T18:34:17.810684Z", + "shell.execute_reply": "2023-01-25T18:34:17.807256Z" }, "papermill": { - "duration": 0.456391, - "end_time": "2023-01-24T16:28:51.118456", + "duration": 0.801901, + "end_time": "2023-01-25T18:34:17.863839", "exception": false, - "start_time": "2023-01-24T16:28:50.662065", + "start_time": "2023-01-25T18:34:17.061938", "status": "completed" }, "scrolled": true, @@ -978,7 +978,7 @@ " -1.7549999e-05, -3.1590000e-05, 7.7999999e-07]], dtype=float32)\n", "Coordinates:\n", " * time (time) float64 4.97 4.971 4.972 ... 9.545e+03 9.545e+03 9.545e+03\n", - " * channel (channel) int64 1066253838 1066253842 ... 1066254228 1066254232
  • " ], "text/plain": [ "\n", @@ -1071,10 +1071,10 @@ "id": "bd695f40", "metadata": { "papermill": { - "duration": 0.085881, - "end_time": "2023-01-24T16:28:51.331659", + "duration": 0.144343, + "end_time": "2023-01-25T18:34:18.157276", "exception": false, - "start_time": "2023-01-24T16:28:51.245778", + "start_time": "2023-01-25T18:34:18.012933", "status": "completed" }, "tags": [] @@ -1093,16 +1093,16 @@ "id": "aa596d59", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:28:51.500553Z", - "iopub.status.busy": "2023-01-24T16:28:51.499793Z", - "iopub.status.idle": "2023-01-24T16:28:51.571191Z", - "shell.execute_reply": "2023-01-24T16:28:51.570451Z" + "iopub.execute_input": "2023-01-25T18:34:18.417430Z", + "iopub.status.busy": "2023-01-25T18:34:18.417058Z", + "iopub.status.idle": "2023-01-25T18:34:18.525302Z", + "shell.execute_reply": "2023-01-25T18:34:18.524186Z" }, "papermill": { - "duration": 0.157312, - "end_time": "2023-01-24T16:28:51.573558", + "duration": 0.242946, + "end_time": "2023-01-25T18:34:18.529121", "exception": false, - "start_time": "2023-01-24T16:28:51.416246", + "start_time": "2023-01-25T18:34:18.286175", "status": "completed" }, "tags": [] @@ -1490,7 +1490,7 @@ " -2.34000004e-06, 2.55449995e-05, 9.74999966e-06]], dtype=float32)\n", "Coordinates:\n", " * time (time) float64 100.0 100.0 100.0 100.0 ... 101.0 101.0 101.0 101.0\n", - " * channel (channel) int64 1066253838 1066253842 ... 1066254228 1066254232
  • " ], "text/plain": [ "\n", @@ -1585,10 +1585,10 @@ "id": "de6105ee", "metadata": { "papermill": { - "duration": 0.082486, - "end_time": "2023-01-24T16:28:51.742374", + "duration": 0.13224, + "end_time": "2023-01-25T18:34:18.799608", "exception": false, - "start_time": "2023-01-24T16:28:51.659888", + "start_time": "2023-01-25T18:34:18.667368", "status": "completed" }, "tags": [] @@ -1605,16 +1605,16 @@ "id": "7cac1641", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:28:51.909853Z", - "iopub.status.busy": "2023-01-24T16:28:51.909287Z", - "iopub.status.idle": "2023-01-24T16:28:57.203650Z", - "shell.execute_reply": "2023-01-24T16:28:57.202885Z" + "iopub.execute_input": "2023-01-25T18:34:21.200808Z", + "iopub.status.busy": "2023-01-25T18:34:21.199939Z", + "iopub.status.idle": "2023-01-25T18:34:28.805300Z", + "shell.execute_reply": "2023-01-25T18:34:28.804284Z" }, "papermill": { - "duration": 5.387476, - "end_time": "2023-01-24T16:28:57.212756", + "duration": 7.736544, + "end_time": "2023-01-25T18:34:28.808855", "exception": false, - "start_time": "2023-01-24T16:28:51.825280", + "start_time": "2023-01-25T18:34:21.072311", "status": "completed" }, "tags": [] @@ -1653,10 +1653,10 @@ "id": "fbf5089b", "metadata": { "papermill": { - "duration": 0.08389, - "end_time": "2023-01-24T16:28:57.381796", + "duration": 0.13179, + "end_time": "2023-01-25T18:34:29.081666", "exception": false, - "start_time": "2023-01-24T16:28:57.297906", + "start_time": "2023-01-25T18:34:28.949876", "status": "completed" }, "tags": [] @@ -1671,16 +1671,16 @@ "id": "8759de75", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:28:57.553151Z", - "iopub.status.busy": "2023-01-24T16:28:57.552572Z", - "iopub.status.idle": "2023-01-24T16:28:58.017910Z", - "shell.execute_reply": "2023-01-24T16:28:58.014684Z" + "iopub.execute_input": "2023-01-25T18:34:29.348354Z", + "iopub.status.busy": "2023-01-25T18:34:29.347590Z", + "iopub.status.idle": "2023-01-25T18:34:29.916583Z", + "shell.execute_reply": "2023-01-25T18:34:29.915252Z" }, "papermill": { - "duration": 0.553687, - "end_time": "2023-01-24T16:28:58.019704", + "duration": 0.713626, + "end_time": "2023-01-25T18:34:29.930522", "exception": false, - "start_time": "2023-01-24T16:28:57.466017", + "start_time": "2023-01-25T18:34:29.216896", "status": "completed" }, "tags": [] @@ -1710,10 +1710,10 @@ "id": "c0a0f7e7", "metadata": { "papermill": { - "duration": 1.51123, - "end_time": "2023-01-24T16:28:59.620965", + "duration": 0.13722, + "end_time": "2023-01-25T18:34:30.224721", "exception": false, - "start_time": "2023-01-24T16:28:58.109735", + "start_time": "2023-01-25T18:34:30.087501", "status": "completed" }, "tags": [] @@ -1733,10 +1733,10 @@ "id": "f2d24e61", "metadata": { "papermill": { - "duration": 0.087419, - "end_time": "2023-01-24T16:28:59.797508", + "duration": 0.136045, + "end_time": "2023-01-25T18:34:30.496381", "exception": false, - "start_time": "2023-01-24T16:28:59.710089", + "start_time": "2023-01-25T18:34:30.360336", "status": "completed" }, "tags": [] @@ -1750,10 +1750,10 @@ "id": "ea4842bb", "metadata": { "papermill": { - "duration": 0.087337, - "end_time": "2023-01-24T16:28:59.972521", + "duration": 0.134631, + "end_time": "2023-01-25T18:34:30.765729", "exception": false, - "start_time": "2023-01-24T16:28:59.885184", + "start_time": "2023-01-25T18:34:30.631098", "status": "completed" }, "tags": [] @@ -1770,16 +1770,16 @@ "id": "610620f1", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:00.152265Z", - "iopub.status.busy": "2023-01-24T16:29:00.151766Z", - "iopub.status.idle": "2023-01-24T16:29:00.205849Z", - "shell.execute_reply": "2023-01-24T16:29:00.205191Z" + "iopub.execute_input": "2023-01-25T18:34:31.040520Z", + "iopub.status.busy": "2023-01-25T18:34:31.039429Z", + "iopub.status.idle": "2023-01-25T18:34:32.615604Z", + "shell.execute_reply": "2023-01-25T18:34:32.614050Z" }, "papermill": { - "duration": 0.146245, - "end_time": "2023-01-24T16:29:00.207519", + "duration": 1.715203, + "end_time": "2023-01-25T18:34:32.618127", "exception": false, - "start_time": "2023-01-24T16:29:00.061274", + "start_time": "2023-01-25T18:34:30.902924", "status": "completed" }, "tags": [] @@ -1797,10 +1797,10 @@ "id": "d4cc9fc5", "metadata": { "papermill": { - "duration": 0.088281, - "end_time": "2023-01-24T16:29:00.384624", + "duration": 0.13455, + "end_time": "2023-01-25T18:34:32.895199", "exception": false, - "start_time": "2023-01-24T16:29:00.296343", + "start_time": "2023-01-25T18:34:32.760649", "status": "completed" }, "tags": [] @@ -1815,16 +1815,16 @@ "id": "fa3123dd", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:00.563082Z", - "iopub.status.busy": "2023-01-24T16:29:00.562360Z", - "iopub.status.idle": "2023-01-24T16:29:00.570886Z", - "shell.execute_reply": "2023-01-24T16:29:00.569979Z" + "iopub.execute_input": "2023-01-25T18:34:33.180806Z", + "iopub.status.busy": "2023-01-25T18:34:33.180213Z", + "iopub.status.idle": "2023-01-25T18:34:33.189983Z", + "shell.execute_reply": "2023-01-25T18:34:33.189048Z" }, "papermill": { - "duration": 0.100113, - "end_time": "2023-01-24T16:29:00.572829", + "duration": 0.163049, + "end_time": "2023-01-25T18:34:33.192627", "exception": false, - "start_time": "2023-01-24T16:29:00.472716", + "start_time": "2023-01-25T18:34:33.029578", "status": "completed" }, "tags": [] @@ -1865,16 +1865,16 @@ "id": "1bd6e1c9", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:00.750462Z", - "iopub.status.busy": "2023-01-24T16:29:00.749874Z", - "iopub.status.idle": "2023-01-24T16:29:01.048731Z", - "shell.execute_reply": "2023-01-24T16:29:01.048029Z" + "iopub.execute_input": "2023-01-25T18:34:33.466247Z", + "iopub.status.busy": "2023-01-25T18:34:33.465665Z", + "iopub.status.idle": "2023-01-25T18:34:34.274595Z", + "shell.execute_reply": "2023-01-25T18:34:34.273486Z" }, "papermill": { - "duration": 0.389378, - "end_time": "2023-01-24T16:29:01.050602", + "duration": 0.950807, + "end_time": "2023-01-25T18:34:34.277542", "exception": false, - "start_time": "2023-01-24T16:29:00.661224", + "start_time": "2023-01-25T18:34:33.326735", "status": "completed" }, "tags": [] @@ -1889,10 +1889,10 @@ "id": "603b86c2", "metadata": { "papermill": { - "duration": 0.088284, - "end_time": "2023-01-24T16:29:01.227626", + "duration": 0.136539, + "end_time": "2023-01-25T18:34:34.597494", "exception": false, - "start_time": "2023-01-24T16:29:01.139342", + "start_time": "2023-01-25T18:34:34.460955", "status": "completed" }, "tags": [] @@ -1909,16 +1909,16 @@ "id": "81490736", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:01.405985Z", - "iopub.status.busy": "2023-01-24T16:29:01.405222Z", - "iopub.status.idle": "2023-01-24T16:29:01.579858Z", - "shell.execute_reply": "2023-01-24T16:29:01.579199Z" + "iopub.execute_input": "2023-01-25T18:34:34.867293Z", + "iopub.status.busy": "2023-01-25T18:34:34.866389Z", + "iopub.status.idle": "2023-01-25T18:34:35.105187Z", + "shell.execute_reply": "2023-01-25T18:34:35.104116Z" }, "papermill": { - "duration": 0.265971, - "end_time": "2023-01-24T16:29:01.581837", + "duration": 0.374544, + "end_time": "2023-01-25T18:34:35.107562", "exception": false, - "start_time": "2023-01-24T16:29:01.315866", + "start_time": "2023-01-25T18:34:34.733018", "status": "completed" }, "tags": [] @@ -1938,16 +1938,16 @@ "id": "351ba531", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:01.762596Z", - "iopub.status.busy": "2023-01-24T16:29:01.762018Z", - "iopub.status.idle": "2023-01-24T16:29:02.352310Z", - "shell.execute_reply": "2023-01-24T16:29:02.351639Z" + "iopub.execute_input": "2023-01-25T18:34:35.379373Z", + "iopub.status.busy": "2023-01-25T18:34:35.378776Z", + "iopub.status.idle": "2023-01-25T18:34:36.256360Z", + "shell.execute_reply": "2023-01-25T18:34:36.255231Z" }, "papermill": { - "duration": 0.681964, - "end_time": "2023-01-24T16:29:02.353956", + "duration": 1.020285, + "end_time": "2023-01-25T18:34:36.261810", "exception": false, - "start_time": "2023-01-24T16:29:01.671992", + "start_time": "2023-01-25T18:34:35.241525", "status": "completed" }, "tags": [] @@ -1957,7 +1957,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "/tmp/ipykernel_2401/759061444.py:3: MatplotlibDeprecationWarning: shading='flat' when X and Y have the same dimensions as C is deprecated since 3.3. Either specify the corners of the quadrilaterals with X and Y, or pass shading='auto', 'nearest' or 'gouraud', or set rcParams['pcolor.shading']. This will become an error two minor releases later.\n", + "/tmp/ipykernel_2315/759061444.py:3: MatplotlibDeprecationWarning: shading='flat' when X and Y have the same dimensions as C is deprecated since 3.3. Either specify the corners of the quadrilaterals with X and Y, or pass shading='auto', 'nearest' or 'gouraud', or set rcParams['pcolor.shading']. This will become an error two minor releases later.\n", " im = ax.pcolor(aligned_lfp.time_from_presentation_onset.values, lfp_chan_depths, aligned_lfp.mean(dim='presentation_id').data)\n" ] }, @@ -2001,10 +2001,10 @@ "id": "ce0b8630", "metadata": { "papermill": { - "duration": 0.0899, - "end_time": "2023-01-24T16:29:02.534948", + "duration": 0.14882, + "end_time": "2023-01-25T18:34:36.553862", "exception": false, - "start_time": "2023-01-24T16:29:02.445048", + "start_time": "2023-01-25T18:34:36.405042", "status": "completed" }, "tags": [] @@ -2020,10 +2020,10 @@ "id": "d4a6b152", "metadata": { "papermill": { - "duration": 0.0896, - "end_time": "2023-01-24T16:29:02.744091", + "duration": 0.135251, + "end_time": "2023-01-25T18:34:36.824073", "exception": false, - "start_time": "2023-01-24T16:29:02.654491", + "start_time": "2023-01-25T18:34:36.688822", "status": "completed" }, "tags": [] @@ -2037,10 +2037,10 @@ "id": "47be379c", "metadata": { "papermill": { - "duration": 0.08984, - "end_time": "2023-01-24T16:29:02.924234", + "duration": 0.141154, + "end_time": "2023-01-25T18:34:37.099672", "exception": false, - "start_time": "2023-01-24T16:29:02.834394", + "start_time": "2023-01-25T18:34:36.958518", "status": "completed" }, "tags": [] @@ -2059,16 +2059,16 @@ "id": "d930606b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:03.105296Z", - "iopub.status.busy": "2023-01-24T16:29:03.104561Z", - "iopub.status.idle": "2023-01-24T16:29:03.359235Z", - "shell.execute_reply": "2023-01-24T16:29:03.358569Z" + "iopub.execute_input": "2023-01-25T18:34:37.394330Z", + "iopub.status.busy": "2023-01-25T18:34:37.393553Z", + "iopub.status.idle": "2023-01-25T18:34:37.756769Z", + "shell.execute_reply": "2023-01-25T18:34:37.755641Z" }, "papermill": { - "duration": 0.347193, - "end_time": "2023-01-24T16:29:03.361222", + "duration": 0.506649, + "end_time": "2023-01-25T18:34:37.759881", "exception": false, - "start_time": "2023-01-24T16:29:03.014029", + "start_time": "2023-01-25T18:34:37.253232", "status": "completed" }, "tags": [] @@ -2099,10 +2099,10 @@ "id": "e55f23c2", "metadata": { "papermill": { - "duration": 0.089368, - "end_time": "2023-01-24T16:29:03.540678", + "duration": 0.14285, + "end_time": "2023-01-25T18:34:38.036694", "exception": false, - "start_time": "2023-01-24T16:29:03.451310", + "start_time": "2023-01-25T18:34:37.893844", "status": "completed" }, "tags": [] @@ -2117,16 +2117,16 @@ "id": "ba9e694d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:03.723459Z", - "iopub.status.busy": "2023-01-24T16:29:03.722726Z", - "iopub.status.idle": "2023-01-24T16:29:03.733068Z", - "shell.execute_reply": "2023-01-24T16:29:03.732468Z" + "iopub.execute_input": "2023-01-25T18:34:38.317563Z", + "iopub.status.busy": "2023-01-25T18:34:38.316786Z", + "iopub.status.idle": "2023-01-25T18:34:38.338891Z", + "shell.execute_reply": "2023-01-25T18:34:38.337894Z" }, "papermill": { - "duration": 0.102977, - "end_time": "2023-01-24T16:29:03.734603", + "duration": 0.163786, + "end_time": "2023-01-25T18:34:38.341125", "exception": false, - "start_time": "2023-01-24T16:29:03.631626", + "start_time": "2023-01-25T18:34:38.177339", "status": "completed" }, "tags": [] @@ -2149,10 +2149,10 @@ "id": "9875c468", "metadata": { "papermill": { - "duration": 0.089435, - "end_time": "2023-01-24T16:29:03.914170", + "duration": 0.152064, + "end_time": "2023-01-25T18:34:38.672446", "exception": false, - "start_time": "2023-01-24T16:29:03.824735", + "start_time": "2023-01-25T18:34:38.520382", "status": "completed" }, "tags": [] @@ -2167,16 +2167,16 @@ "id": "02f2ae77", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:04.097375Z", - "iopub.status.busy": "2023-01-24T16:29:04.096809Z", - "iopub.status.idle": "2023-01-24T16:29:04.104903Z", - "shell.execute_reply": "2023-01-24T16:29:04.104279Z" + "iopub.execute_input": "2023-01-25T18:34:38.955919Z", + "iopub.status.busy": "2023-01-25T18:34:38.954240Z", + "iopub.status.idle": "2023-01-25T18:34:38.964792Z", + "shell.execute_reply": "2023-01-25T18:34:38.963829Z" }, "papermill": { - "duration": 0.101785, - "end_time": "2023-01-24T16:29:04.106447", + "duration": 0.148981, + "end_time": "2023-01-25T18:34:38.966925", "exception": false, - "start_time": "2023-01-24T16:29:04.004662", + "start_time": "2023-01-25T18:34:38.817944", "status": "completed" }, "tags": [] @@ -2193,10 +2193,10 @@ "id": "dbfaa6fa", "metadata": { "papermill": { - "duration": 0.089472, - "end_time": "2023-01-24T16:29:04.286501", + "duration": 0.140701, + "end_time": "2023-01-25T18:34:39.260327", "exception": false, - "start_time": "2023-01-24T16:29:04.197029", + "start_time": "2023-01-25T18:34:39.119626", "status": "completed" }, "tags": [] @@ -2211,16 +2211,16 @@ "id": "a931b411", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:04.469150Z", - "iopub.status.busy": "2023-01-24T16:29:04.468421Z", - "iopub.status.idle": "2023-01-24T16:29:04.676232Z", - "shell.execute_reply": "2023-01-24T16:29:04.675521Z" + "iopub.execute_input": "2023-01-25T18:34:39.539162Z", + "iopub.status.busy": "2023-01-25T18:34:39.537825Z", + "iopub.status.idle": "2023-01-25T18:34:39.951368Z", + "shell.execute_reply": "2023-01-25T18:34:39.950351Z" }, "papermill": { - "duration": 0.301422, - "end_time": "2023-01-24T16:29:04.678152", + "duration": 0.553389, + "end_time": "2023-01-25T18:34:39.954293", "exception": false, - "start_time": "2023-01-24T16:29:04.376730", + "start_time": "2023-01-25T18:34:39.400904", "status": "completed" }, "scrolled": false, @@ -2230,7 +2230,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 21, @@ -2265,10 +2265,10 @@ "id": "0e4a4b82", "metadata": { "papermill": { - "duration": 0.090396, - "end_time": "2023-01-24T16:29:04.860766", + "duration": 0.1395, + "end_time": "2023-01-25T18:34:40.236731", "exception": false, - "start_time": "2023-01-24T16:29:04.770370", + "start_time": "2023-01-25T18:34:40.097231", "status": "completed" }, "tags": [] @@ -2282,10 +2282,10 @@ "id": "61740ecb", "metadata": { "papermill": { - "duration": 0.121053, - "end_time": "2023-01-24T16:29:05.073406", + "duration": 0.140206, + "end_time": "2023-01-25T18:34:40.520424", "exception": false, - "start_time": "2023-01-24T16:29:04.952353", + "start_time": "2023-01-25T18:34:40.380218", "status": "completed" }, "tags": [] @@ -2300,16 +2300,16 @@ "id": "0e7ea558", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:05.256964Z", - "iopub.status.busy": "2023-01-24T16:29:05.256661Z", - "iopub.status.idle": "2023-01-24T16:29:16.545197Z", - "shell.execute_reply": "2023-01-24T16:29:16.544450Z" + "iopub.execute_input": "2023-01-25T18:34:40.803690Z", + "iopub.status.busy": "2023-01-25T18:34:40.802375Z", + "iopub.status.idle": "2023-01-25T18:35:02.518371Z", + "shell.execute_reply": "2023-01-25T18:35:02.517269Z" }, "papermill": { - "duration": 11.382834, - "end_time": "2023-01-24T16:29:16.547486", + "duration": 21.860007, + "end_time": "2023-01-25T18:35:02.521678", "exception": false, - "start_time": "2023-01-24T16:29:05.164652", + "start_time": "2023-01-25T18:34:40.661671", "status": "completed" }, "tags": [] @@ -2326,10 +2326,10 @@ "id": "fa2a9ac2", "metadata": { "papermill": { - "duration": 0.090741, - "end_time": "2023-01-24T16:29:16.729857", + "duration": 0.134464, + "end_time": "2023-01-25T18:35:02.793819", "exception": false, - "start_time": "2023-01-24T16:29:16.639116", + "start_time": "2023-01-25T18:35:02.659355", "status": "completed" }, "tags": [] @@ -2344,16 +2344,16 @@ "id": "371c67e5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:16.912727Z", - "iopub.status.busy": "2023-01-24T16:29:16.912401Z", - "iopub.status.idle": "2023-01-24T16:29:17.567272Z", - "shell.execute_reply": "2023-01-24T16:29:17.566619Z" + "iopub.execute_input": "2023-01-25T18:35:03.089148Z", + "iopub.status.busy": "2023-01-25T18:35:03.088438Z", + "iopub.status.idle": "2023-01-25T18:35:03.731231Z", + "shell.execute_reply": "2023-01-25T18:35:03.730211Z" }, "papermill": { - "duration": 0.74821, - "end_time": "2023-01-24T16:29:17.568888", + "duration": 0.79318, + "end_time": "2023-01-25T18:35:03.735864", "exception": false, - "start_time": "2023-01-24T16:29:16.820678", + "start_time": "2023-01-25T18:35:02.942684", "status": "completed" }, "tags": [] @@ -2397,10 +2397,10 @@ "id": "35146fb2", "metadata": { "papermill": { - "duration": 0.092703, - "end_time": "2023-01-24T16:29:17.754943", + "duration": 0.133935, + "end_time": "2023-01-25T18:35:04.014657", "exception": false, - "start_time": "2023-01-24T16:29:17.662240", + "start_time": "2023-01-25T18:35:03.880722", "status": "completed" }, "tags": [] @@ -2414,10 +2414,10 @@ "id": "77f477b5", "metadata": { "papermill": { - "duration": 0.091633, - "end_time": "2023-01-24T16:29:17.938615", + "duration": 0.185282, + "end_time": "2023-01-25T18:35:04.342028", "exception": false, - "start_time": "2023-01-24T16:29:17.846982", + "start_time": "2023-01-25T18:35:04.156746", "status": "completed" }, "tags": [] @@ -2431,10 +2431,10 @@ "id": "f3b251a4", "metadata": { "papermill": { - "duration": 0.092492, - "end_time": "2023-01-24T16:29:18.123580", + "duration": 0.14298, + "end_time": "2023-01-25T18:35:04.624353", "exception": false, - "start_time": "2023-01-24T16:29:18.031088", + "start_time": "2023-01-25T18:35:04.481373", "status": "completed" }, "tags": [] @@ -2451,16 +2451,16 @@ "id": "89fe5ff3", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:18.309381Z", - "iopub.status.busy": "2023-01-24T16:29:18.308823Z", - "iopub.status.idle": "2023-01-24T16:29:20.865998Z", - "shell.execute_reply": "2023-01-24T16:29:20.864576Z" + "iopub.execute_input": "2023-01-25T18:35:04.898448Z", + "iopub.status.busy": "2023-01-25T18:35:04.897642Z", + "iopub.status.idle": "2023-01-25T18:35:08.450713Z", + "shell.execute_reply": "2023-01-25T18:35:08.448419Z" }, "papermill": { - "duration": 2.651448, - "end_time": "2023-01-24T16:29:20.867694", + "duration": 3.691085, + "end_time": "2023-01-25T18:35:08.452948", "exception": false, - "start_time": "2023-01-24T16:29:18.216246", + "start_time": "2023-01-25T18:35:04.761863", "status": "completed" }, "scrolled": true, @@ -2851,7 +2851,7 @@ " * virtual_channel_index (virtual_channel_index) int64 0 1 2 3 ... 381 382 383\n", " * time (time) float64 -0.1 -0.0996 -0.0992 ... 0.2496 0.25\n", " vertical_position (virtual_channel_index) int64 0 10 20 ... 3820 3830\n", - " horizontal_position (virtual_channel_index) int64 24 24 24 ... 24 24 24
  • " ], "text/plain": [ "\n", @@ -2970,10 +2970,10 @@ "id": "22aca494", "metadata": { "papermill": { - "duration": 0.091858, - "end_time": "2023-01-24T16:29:21.054480", + "duration": 0.139536, + "end_time": "2023-01-25T18:35:08.732601", "exception": false, - "start_time": "2023-01-24T16:29:20.962622", + "start_time": "2023-01-25T18:35:08.593065", "status": "completed" }, "tags": [] @@ -2988,16 +2988,16 @@ "id": "d657c261", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:21.240771Z", - "iopub.status.busy": "2023-01-24T16:29:21.240204Z", - "iopub.status.idle": "2023-01-24T16:29:23.983922Z", - "shell.execute_reply": "2023-01-24T16:29:23.983260Z" + "iopub.execute_input": "2023-01-25T18:35:09.024720Z", + "iopub.status.busy": "2023-01-25T18:35:09.024103Z", + "iopub.status.idle": "2023-01-25T18:35:13.141476Z", + "shell.execute_reply": "2023-01-25T18:35:13.140603Z" }, "papermill": { - "duration": 2.839089, - "end_time": "2023-01-24T16:29:23.985527", + "duration": 4.266598, + "end_time": "2023-01-25T18:35:13.144004", "exception": false, - "start_time": "2023-01-24T16:29:21.146438", + "start_time": "2023-01-25T18:35:08.877406", "status": "completed" }, "tags": [] @@ -3007,9 +3007,9 @@ "name": "stderr", "output_type": "stream", "text": [ - "/tmp/ipykernel_2401/216337481.py:1: DeprecationWarning: Please use `gaussian_filter` from the `scipy.ndimage` namespace, the `scipy.ndimage.filters` namespace is deprecated.\n", + "/tmp/ipykernel_2315/216337481.py:1: DeprecationWarning: Please use `gaussian_filter` from the `scipy.ndimage` namespace, the `scipy.ndimage.filters` namespace is deprecated.\n", " from scipy.ndimage.filters import gaussian_filter\n", - "/tmp/ipykernel_2401/216337481.py:9: MatplotlibDeprecationWarning: shading='flat' when X and Y have the same dimensions as C is deprecated since 3.3. Either specify the corners of the quadrilaterals with X and Y, or pass shading='auto', 'nearest' or 'gouraud', or set rcParams['pcolor.shading']. This will become an error two minor releases later.\n", + "/tmp/ipykernel_2315/216337481.py:9: MatplotlibDeprecationWarning: shading='flat' when X and Y have the same dimensions as C is deprecated since 3.3. Either specify the corners of the quadrilaterals with X and Y, or pass shading='auto', 'nearest' or 'gouraud', or set rcParams['pcolor.shading']. This will become an error two minor releases later.\n", " _ = ax.pcolor(csd[\"time\"], csd[\"vertical_position\"], filtered_csd, vmin=-3e4, vmax=3e4)\n" ] }, @@ -3072,10 +3072,10 @@ "id": "1ff7e354", "metadata": { "papermill": { - "duration": 0.095454, - "end_time": "2023-01-24T16:29:24.177995", + "duration": 0.146481, + "end_time": "2023-01-25T18:35:13.440645", "exception": false, - "start_time": "2023-01-24T16:29:24.082541", + "start_time": "2023-01-25T18:35:13.294164", "status": "completed" }, "tags": [] @@ -3090,16 +3090,16 @@ "id": "aa32f450", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:24.369813Z", - "iopub.status.busy": "2023-01-24T16:29:24.369121Z", - "iopub.status.idle": "2023-01-24T16:29:24.376473Z", - "shell.execute_reply": "2023-01-24T16:29:24.375819Z" + "iopub.execute_input": "2023-01-25T18:35:13.723941Z", + "iopub.status.busy": "2023-01-25T18:35:13.723230Z", + "iopub.status.idle": "2023-01-25T18:35:13.733324Z", + "shell.execute_reply": "2023-01-25T18:35:13.732372Z" }, "papermill": { - "duration": 0.105355, - "end_time": "2023-01-24T16:29:24.378717", + "duration": 0.153198, + "end_time": "2023-01-25T18:35:13.735440", "exception": false, - "start_time": "2023-01-24T16:29:24.273362", + "start_time": "2023-01-25T18:35:13.582242", "status": "completed" }, "tags": [] @@ -3142,17 +3142,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 383.533824, - "end_time": "2023-01-24T16:29:27.195116", + "duration": 463.615143, + "end_time": "2023-01-25T18:35:16.804301", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/visual_behavior_neuropixels_LFP_analysis.ipynb", - "output_path": "/tmp/tmpiz8m_nab/scratch_nb.ipynb", + "output_path": "/tmp/tmpnvtsv43n/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmpiz8m_nab", + "output_dir": "/tmp/tmpnvtsv43n", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T16:23:03.661292", + "start_time": "2023-01-25T18:27:33.189158", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_analyzing_behavior_only_data.ipynb b/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_analyzing_behavior_only_data.ipynb index 803987545..51dbb9056 100644 --- a/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_analyzing_behavior_only_data.ipynb +++ b/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_analyzing_behavior_only_data.ipynb @@ -5,10 +5,10 @@ "id": "030588c0", "metadata": { "papermill": { - "duration": 0.010055, - "end_time": "2023-01-24T16:29:29.548003", + "duration": 0.013151, + "end_time": "2023-01-25T18:35:20.054291", "exception": false, - "start_time": "2023-01-24T16:29:29.537948", + "start_time": "2023-01-25T18:35:20.041140", "status": "completed" }, "tags": [] @@ -35,10 +35,10 @@ "id": "a9c9929e", "metadata": { "papermill": { - "duration": 0.006631, - "end_time": "2023-01-24T16:29:29.561497", + "duration": 0.009613, + "end_time": "2023-01-25T18:35:20.074131", "exception": false, - "start_time": "2023-01-24T16:29:29.554866", + "start_time": "2023-01-25T18:35:20.064518", "status": "completed" }, "tags": [] @@ -55,16 +55,16 @@ "id": "1ea087c1", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:29.576287Z", - "iopub.status.busy": "2023-01-24T16:29:29.575736Z", - "iopub.status.idle": "2023-01-24T16:29:35.306577Z", - "shell.execute_reply": "2023-01-24T16:29:35.305898Z" + "iopub.execute_input": "2023-01-25T18:35:20.095441Z", + "iopub.status.busy": "2023-01-25T18:35:20.095069Z", + "iopub.status.idle": "2023-01-25T18:35:28.745244Z", + "shell.execute_reply": "2023-01-25T18:35:28.744161Z" }, "papermill": { - "duration": 5.740594, - "end_time": "2023-01-24T16:29:35.308642", + "duration": 8.664661, + "end_time": "2023-01-25T18:35:28.747871", "exception": false, - "start_time": "2023-01-24T16:29:29.568048", + "start_time": "2023-01-25T18:35:20.083210", "status": "completed" }, "tags": [] @@ -96,16 +96,16 @@ "id": "ae6a6e0b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:35.324725Z", - "iopub.status.busy": "2023-01-24T16:29:35.323845Z", - "iopub.status.idle": "2023-01-24T16:29:35.329007Z", - "shell.execute_reply": "2023-01-24T16:29:35.327933Z" + "iopub.execute_input": "2023-01-25T18:35:28.771880Z", + "iopub.status.busy": "2023-01-25T18:35:28.769663Z", + "iopub.status.idle": "2023-01-25T18:35:28.775706Z", + "shell.execute_reply": "2023-01-25T18:35:28.774795Z" }, "papermill": { - "duration": 0.01471, - "end_time": "2023-01-24T16:29:35.330592", + "duration": 0.019816, + "end_time": "2023-01-25T18:35:28.778037", "exception": false, - "start_time": "2023-01-24T16:29:35.315882", + "start_time": "2023-01-25T18:35:28.758221", "status": "completed" }, "tags": [ @@ -122,10 +122,10 @@ "id": "6808cf44", "metadata": { "papermill": { - "duration": 0.006752, - "end_time": "2023-01-24T16:29:35.363243", + "duration": 0.009416, + "end_time": "2023-01-25T18:35:28.823848", "exception": false, - "start_time": "2023-01-24T16:29:35.356491", + "start_time": "2023-01-25T18:35:28.814432", "status": "completed" }, "tags": [] @@ -140,16 +140,16 @@ "id": "0cfc22fc", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:35.377906Z", - "iopub.status.busy": "2023-01-24T16:29:35.377510Z", - "iopub.status.idle": "2023-01-24T16:29:42.417822Z", - "shell.execute_reply": "2023-01-24T16:29:42.417133Z" + "iopub.execute_input": "2023-01-25T18:35:28.844342Z", + "iopub.status.busy": "2023-01-25T18:35:28.843792Z", + "iopub.status.idle": "2023-01-25T18:35:36.173010Z", + "shell.execute_reply": "2023-01-25T18:35:36.171861Z" }, "papermill": { - "duration": 7.049768, - "end_time": "2023-01-24T16:29:42.419697", + "duration": 7.34245, + "end_time": "2023-01-25T18:35:36.175856", "exception": false, - "start_time": "2023-01-24T16:29:35.369929", + "start_time": "2023-01-25T18:35:28.833406", "status": "completed" }, "tags": [] @@ -167,15 +167,15 @@ "\n", "To avoid this warning in the future, make sure that\n", "\n", - "/tmp/tmpsg_eldbb/_downloaded_data.json\n", + "/tmp/tmp2kxc62j7/_downloaded_data.json\n", "\n", "is not deleted between instantiations of this cache\n", " warnings.warn(msg, MissingLocalManifestWarning)\n", - "ecephys_sessions.csv: 100%|██████████| 64.7k/64.7k [00:00<00:00, 908kMB/s]\n", - "behavior_sessions.csv: 100%|██████████| 562k/562k [00:00<00:00, 4.58MMB/s]\n", + "ecephys_sessions.csv: 100%|██████████| 64.7k/64.7k [00:00<00:00, 1.25MMB/s]\n", + "behavior_sessions.csv: 100%|██████████| 562k/562k [00:00<00:00, 6.92MMB/s]\n", "units.csv: 100%|██████████| 132M/132M [00:03<00:00, 41.0MMB/s]\n", - "probes.csv: 100%|██████████| 130k/130k [00:00<00:00, 1.15MMB/s] \n", - "channels.csv: 100%|██████████| 27.9M/27.9M [00:00<00:00, 35.8MMB/s]\n" + "probes.csv: 100%|██████████| 130k/130k [00:00<00:00, 1.43MMB/s]\n", + "channels.csv: 100%|██████████| 27.9M/27.9M [00:00<00:00, 40.3MMB/s]\n" ] } ], @@ -189,10 +189,10 @@ "id": "da5a95cf", "metadata": { "papermill": { - "duration": 0.009572, - "end_time": "2023-01-24T16:29:42.438960", + "duration": 0.01222, + "end_time": "2023-01-25T18:35:36.206902", "exception": false, - "start_time": "2023-01-24T16:29:42.429388", + "start_time": "2023-01-25T18:35:36.194682", "status": "completed" }, "tags": [] @@ -207,16 +207,16 @@ "id": "e4a95e78", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:42.458830Z", - "iopub.status.busy": "2023-01-24T16:29:42.458319Z", - "iopub.status.idle": "2023-01-24T16:29:42.473852Z", - "shell.execute_reply": "2023-01-24T16:29:42.473192Z" + "iopub.execute_input": "2023-01-25T18:35:36.235231Z", + "iopub.status.busy": "2023-01-25T18:35:36.234282Z", + "iopub.status.idle": "2023-01-25T18:35:36.257737Z", + "shell.execute_reply": "2023-01-25T18:35:36.256748Z" }, "papermill": { - "duration": 0.027322, - "end_time": "2023-01-24T16:29:42.475479", + "duration": 0.040007, + "end_time": "2023-01-25T18:35:36.260278", "exception": false, - "start_time": "2023-01-24T16:29:42.448157", + "start_time": "2023-01-25T18:35:36.220271", "status": "completed" }, "tags": [] @@ -455,10 +455,10 @@ "id": "613472a7", "metadata": { "papermill": { - "duration": 0.009408, - "end_time": "2023-01-24T16:29:42.494412", + "duration": 0.012602, + "end_time": "2023-01-25T18:35:36.286984", "exception": false, - "start_time": "2023-01-24T16:29:42.485004", + "start_time": "2023-01-25T18:35:36.274382", "status": "completed" }, "tags": [] @@ -473,16 +473,16 @@ "id": "0a0671ef", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:42.514580Z", - "iopub.status.busy": "2023-01-24T16:29:42.514125Z", - "iopub.status.idle": "2023-01-24T16:29:42.539611Z", - "shell.execute_reply": "2023-01-24T16:29:42.539052Z" + "iopub.execute_input": "2023-01-25T18:35:36.315486Z", + "iopub.status.busy": "2023-01-25T18:35:36.315087Z", + "iopub.status.idle": "2023-01-25T18:35:36.352185Z", + "shell.execute_reply": "2023-01-25T18:35:36.351241Z" }, "papermill": { - "duration": 0.037421, - "end_time": "2023-01-24T16:29:42.541263", + "duration": 0.05454, + "end_time": "2023-01-25T18:35:36.354215", "exception": false, - "start_time": "2023-01-24T16:29:42.503842", + "start_time": "2023-01-25T18:35:36.299675", "status": "completed" }, "tags": [] @@ -1595,16 +1595,16 @@ "id": "8bb8b483", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:42.564199Z", - "iopub.status.busy": "2023-01-24T16:29:42.563567Z", - "iopub.status.idle": "2023-01-24T16:29:42.567608Z", - "shell.execute_reply": "2023-01-24T16:29:42.567124Z" + "iopub.execute_input": "2023-01-25T18:35:36.385212Z", + "iopub.status.busy": "2023-01-25T18:35:36.384292Z", + "iopub.status.idle": "2023-01-25T18:35:36.390496Z", + "shell.execute_reply": "2023-01-25T18:35:36.389686Z" }, "papermill": { - "duration": 0.016794, - "end_time": "2023-01-24T16:29:42.568976", + "duration": 0.023267, + "end_time": "2023-01-25T18:35:36.392387", "exception": false, - "start_time": "2023-01-24T16:29:42.552182", + "start_time": "2023-01-25T18:35:36.369120", "status": "completed" }, "tags": [] @@ -1630,10 +1630,10 @@ "id": "a7059ab8", "metadata": { "papermill": { - "duration": 0.010542, - "end_time": "2023-01-24T16:29:42.590203", + "duration": 0.014959, + "end_time": "2023-01-25T18:35:36.422692", "exception": false, - "start_time": "2023-01-24T16:29:42.579661", + "start_time": "2023-01-25T18:35:36.407733", "status": "completed" }, "tags": [] @@ -1647,10 +1647,10 @@ "id": "7bb7330a", "metadata": { "papermill": { - "duration": 0.010577, - "end_time": "2023-01-24T16:29:42.611382", + "duration": 0.014269, + "end_time": "2023-01-25T18:35:36.451238", "exception": false, - "start_time": "2023-01-24T16:29:42.600805", + "start_time": "2023-01-25T18:35:36.436969", "status": "completed" }, "tags": [] @@ -1667,16 +1667,16 @@ "id": "002a9b8f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:42.634225Z", - "iopub.status.busy": "2023-01-24T16:29:42.633581Z", - "iopub.status.idle": "2023-01-24T16:29:51.286737Z", - "shell.execute_reply": "2023-01-24T16:29:51.286074Z" + "iopub.execute_input": "2023-01-25T18:35:36.481803Z", + "iopub.status.busy": "2023-01-25T18:35:36.481069Z", + "iopub.status.idle": "2023-01-25T18:35:47.903941Z", + "shell.execute_reply": "2023-01-25T18:35:47.902592Z" }, "papermill": { - "duration": 8.666587, - "end_time": "2023-01-24T16:29:51.288561", + "duration": 11.441834, + "end_time": "2023-01-25T18:35:47.907131", "exception": false, - "start_time": "2023-01-24T16:29:42.621974", + "start_time": "2023-01-25T18:35:36.465297", "status": "completed" }, "tags": [] @@ -1686,7 +1686,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "behavior_session_1052316794.nwb: 100%|██████████| 188M/188M [00:05<00:00, 35.2MMB/s]\n" + "behavior_session_1052316794.nwb: 100%|██████████| 188M/188M [00:06<00:00, 28.3MMB/s]\n" ] } ], @@ -1699,10 +1699,10 @@ "id": "97d92ab5", "metadata": { "papermill": { - "duration": 0.0129, - "end_time": "2023-01-24T16:29:51.315106", + "duration": 0.016655, + "end_time": "2023-01-25T18:35:47.944457", "exception": false, - "start_time": "2023-01-24T16:29:51.302206", + "start_time": "2023-01-25T18:35:47.927802", "status": "completed" }, "tags": [] @@ -1717,16 +1717,16 @@ "id": "a0e31418", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:51.341968Z", - "iopub.status.busy": "2023-01-24T16:29:51.341229Z", - "iopub.status.idle": "2023-01-24T16:29:51.346241Z", - "shell.execute_reply": "2023-01-24T16:29:51.345614Z" + "iopub.execute_input": "2023-01-25T18:35:47.982142Z", + "iopub.status.busy": "2023-01-25T18:35:47.980645Z", + "iopub.status.idle": "2023-01-25T18:35:47.992088Z", + "shell.execute_reply": "2023-01-25T18:35:47.991146Z" }, "papermill": { - "duration": 0.020048, - "end_time": "2023-01-24T16:29:51.347683", + "duration": 0.0327, + "end_time": "2023-01-25T18:35:47.994049", "exception": false, - "start_time": "2023-01-24T16:29:51.327635", + "start_time": "2023-01-25T18:35:47.961349", "status": "completed" }, "tags": [] @@ -1767,10 +1767,10 @@ "id": "d53312b1", "metadata": { "papermill": { - "duration": 0.012595, - "end_time": "2023-01-24T16:29:51.373066", + "duration": 0.017604, + "end_time": "2023-01-25T18:35:48.030494", "exception": false, - "start_time": "2023-01-24T16:29:51.360471", + "start_time": "2023-01-25T18:35:48.012890", "status": "completed" }, "tags": [] @@ -1785,16 +1785,16 @@ "id": "de983187", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:51.399754Z", - "iopub.status.busy": "2023-01-24T16:29:51.399288Z", - "iopub.status.idle": "2023-01-24T16:29:51.403017Z", - "shell.execute_reply": "2023-01-24T16:29:51.402471Z" + "iopub.execute_input": "2023-01-25T18:35:48.067337Z", + "iopub.status.busy": "2023-01-25T18:35:48.066411Z", + "iopub.status.idle": "2023-01-25T18:35:48.072144Z", + "shell.execute_reply": "2023-01-25T18:35:48.071141Z" }, "papermill": { - "duration": 0.018704, - "end_time": "2023-01-24T16:29:51.404335", + "duration": 0.027096, + "end_time": "2023-01-25T18:35:48.074249", "exception": false, - "start_time": "2023-01-24T16:29:51.385631", + "start_time": "2023-01-25T18:35:48.047153", "status": "completed" }, "tags": [] @@ -1809,10 +1809,10 @@ "id": "a39fac08", "metadata": { "papermill": { - "duration": 0.012706, - "end_time": "2023-01-24T16:29:51.429712", + "duration": 0.017097, + "end_time": "2023-01-25T18:35:48.108635", "exception": false, - "start_time": "2023-01-24T16:29:51.417006", + "start_time": "2023-01-25T18:35:48.091538", "status": "completed" }, "tags": [] @@ -1827,16 +1827,16 @@ "id": "759fefbc", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:51.456348Z", - "iopub.status.busy": "2023-01-24T16:29:51.455776Z", - "iopub.status.idle": "2023-01-24T16:29:51.461029Z", - "shell.execute_reply": "2023-01-24T16:29:51.460545Z" + "iopub.execute_input": "2023-01-25T18:35:48.150673Z", + "iopub.status.busy": "2023-01-25T18:35:48.150292Z", + "iopub.status.idle": "2023-01-25T18:35:48.160375Z", + "shell.execute_reply": "2023-01-25T18:35:48.159374Z" }, "papermill": { - "duration": 0.020034, - "end_time": "2023-01-24T16:29:51.462372", + "duration": 0.035378, + "end_time": "2023-01-25T18:35:48.163121", "exception": false, - "start_time": "2023-01-24T16:29:51.442338", + "start_time": "2023-01-25T18:35:48.127743", "status": "completed" }, "tags": [] @@ -1872,10 +1872,10 @@ "id": "9806173b", "metadata": { "papermill": { - "duration": 0.012734, - "end_time": "2023-01-24T16:29:51.487777", + "duration": 0.018556, + "end_time": "2023-01-25T18:35:48.199892", "exception": false, - "start_time": "2023-01-24T16:29:51.475043", + "start_time": "2023-01-25T18:35:48.181336", "status": "completed" }, "tags": [] @@ -1891,10 +1891,10 @@ "id": "0cf22367", "metadata": { "papermill": { - "duration": 0.012721, - "end_time": "2023-01-24T16:29:51.513176", + "duration": 0.017898, + "end_time": "2023-01-25T18:35:48.235788", "exception": false, - "start_time": "2023-01-24T16:29:51.500455", + "start_time": "2023-01-25T18:35:48.217890", "status": "completed" }, "tags": [] @@ -1910,16 +1910,16 @@ "id": "0ebe20eb", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:51.540451Z", - "iopub.status.busy": "2023-01-24T16:29:51.539914Z", - "iopub.status.idle": "2023-01-24T16:29:51.553617Z", - "shell.execute_reply": "2023-01-24T16:29:51.552994Z" + "iopub.execute_input": "2023-01-25T18:35:48.273709Z", + "iopub.status.busy": "2023-01-25T18:35:48.273134Z", + "iopub.status.idle": "2023-01-25T18:35:50.114013Z", + "shell.execute_reply": "2023-01-25T18:35:50.113010Z" }, "papermill": { - "duration": 0.029532, - "end_time": "2023-01-24T16:29:51.555566", + "duration": 1.863557, + "end_time": "2023-01-25T18:35:50.116752", "exception": false, - "start_time": "2023-01-24T16:29:51.526034", + "start_time": "2023-01-25T18:35:48.253195", "status": "completed" }, "tags": [] @@ -1959,6 +1959,7 @@ " stimulus_block\n", " stimulus_name\n", " end_time\n", + " trials_id\n", " \n", " \n", " stimulus_presentations_id\n", @@ -1975,6 +1976,7 @@ " \n", " \n", " \n", + " \n", " \n", " \n", " \n", @@ -1993,6 +1995,7 @@ " 0\n", " Natural_Images_Lum_Matched_set_ophys_G_2019\n", " 1.272240\n", + " 0\n", " \n", " \n", " 1\n", @@ -2009,6 +2012,7 @@ " 0\n", " Natural_Images_Lum_Matched_set_ophys_G_2019\n", " 2.022860\n", + " 0\n", " \n", " \n", " 2\n", @@ -2025,6 +2029,7 @@ " 0\n", " Natural_Images_Lum_Matched_set_ophys_G_2019\n", " 2.773497\n", + " 0\n", " \n", " \n", " 3\n", @@ -2041,6 +2046,7 @@ " 0\n", " Natural_Images_Lum_Matched_set_ophys_G_2019\n", " 3.524126\n", + " 0\n", " \n", " \n", " 4\n", @@ -2057,6 +2063,7 @@ " 0\n", " Natural_Images_Lum_Matched_set_ophys_G_2019\n", " 4.274811\n", + " 0\n", " \n", " \n", "\n", @@ -2095,13 +2102,13 @@ "3 Natural_Images_Lum_Matched_set_ophys_G_2019 \n", "4 Natural_Images_Lum_Matched_set_ophys_G_2019 \n", "\n", - " end_time \n", - "stimulus_presentations_id \n", - "0 1.272240 \n", - "1 2.022860 \n", - "2 2.773497 \n", - "3 3.524126 \n", - "4 4.274811 " + " end_time trials_id \n", + "stimulus_presentations_id \n", + "0 1.272240 0 \n", + "1 2.022860 0 \n", + "2 2.773497 0 \n", + "3 3.524126 0 \n", + "4 4.274811 0 " ] }, "execution_count": 12, @@ -2119,10 +2126,10 @@ "id": "a3d9724d", "metadata": { "papermill": { - "duration": 0.012982, - "end_time": "2023-01-24T16:29:51.581572", + "duration": 0.027361, + "end_time": "2023-01-25T18:35:50.163526", "exception": false, - "start_time": "2023-01-24T16:29:51.568590", + "start_time": "2023-01-25T18:35:50.136165", "status": "completed" }, "tags": [] @@ -2158,10 +2165,10 @@ "id": "be257fb6", "metadata": { "papermill": { - "duration": 0.012882, - "end_time": "2023-01-24T16:29:51.607426", + "duration": 0.016803, + "end_time": "2023-01-25T18:35:50.197658", "exception": false, - "start_time": "2023-01-24T16:29:51.594544", + "start_time": "2023-01-25T18:35:50.180855", "status": "completed" }, "tags": [] @@ -2177,16 +2184,16 @@ "id": "9f1a0b65", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:51.635017Z", - "iopub.status.busy": "2023-01-24T16:29:51.634459Z", - "iopub.status.idle": "2023-01-24T16:29:51.641904Z", - "shell.execute_reply": "2023-01-24T16:29:51.641303Z" + "iopub.execute_input": "2023-01-25T18:35:50.235428Z", + "iopub.status.busy": "2023-01-25T18:35:50.234688Z", + "iopub.status.idle": "2023-01-25T18:35:50.245986Z", + "shell.execute_reply": "2023-01-25T18:35:50.245155Z" }, "papermill": { - "duration": 0.022993, - "end_time": "2023-01-24T16:29:51.643385", + "duration": 0.03201, + "end_time": "2023-01-25T18:35:50.247916", "exception": false, - "start_time": "2023-01-24T16:29:51.620392", + "start_time": "2023-01-25T18:35:50.215906", "status": "completed" }, "tags": [] @@ -2219,29 +2226,29 @@ " \n", " \n", " \n", - " 1118\n", - " 1007.045367\n", - " 60366\n", + " 1533\n", + " 1468.690703\n", + " 88041\n", " \n", " \n", - " 2564\n", - " 2330.395391\n", - " 139699\n", + " 2888\n", + " 2575.989087\n", + " 154422\n", " \n", " \n", - " 1200\n", - " 1076.688385\n", - " 64541\n", + " 926\n", + " 764.487689\n", + " 45825\n", " \n", " \n", - " 1892\n", - " 1765.027789\n", - " 105806\n", + " 899\n", + " 734.595408\n", + " 44033\n", " \n", " \n", - " 2248\n", - " 2112.892418\n", - " 126660\n", + " 2711\n", + " 2418.220606\n", + " 144964\n", " \n", " \n", "\n", @@ -2249,11 +2256,11 @@ ], "text/plain": [ " timestamps frame\n", - "1118 1007.045367 60366\n", - "2564 2330.395391 139699\n", - "1200 1076.688385 64541\n", - "1892 1765.027789 105806\n", - "2248 2112.892418 126660" + "1533 1468.690703 88041\n", + "2888 2575.989087 154422\n", + "926 764.487689 45825\n", + "899 734.595408 44033\n", + "2711 2418.220606 144964" ] }, "execution_count": 13, @@ -2270,10 +2277,10 @@ "id": "edb21a2c", "metadata": { "papermill": { - "duration": 0.013062, - "end_time": "2023-01-24T16:29:51.669702", + "duration": 0.019632, + "end_time": "2023-01-25T18:35:50.285403", "exception": false, - "start_time": "2023-01-24T16:29:51.656640", + "start_time": "2023-01-25T18:35:50.265771", "status": "completed" }, "tags": [] @@ -2289,16 +2296,16 @@ "id": "86fb5a8d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:51.697320Z", - "iopub.status.busy": "2023-01-24T16:29:51.696842Z", - "iopub.status.idle": "2023-01-24T16:29:51.704762Z", - "shell.execute_reply": "2023-01-24T16:29:51.704157Z" + "iopub.execute_input": "2023-01-25T18:35:50.321821Z", + "iopub.status.busy": "2023-01-25T18:35:50.321233Z", + "iopub.status.idle": "2023-01-25T18:35:50.332943Z", + "shell.execute_reply": "2023-01-25T18:35:50.331996Z" }, "papermill": { - "duration": 0.023393, - "end_time": "2023-01-24T16:29:51.706188", + "duration": 0.032905, + "end_time": "2023-01-25T18:35:50.335018", "exception": false, - "start_time": "2023-01-24T16:29:51.682795", + "start_time": "2023-01-25T18:35:50.302113", "status": "completed" }, "tags": [] @@ -2332,33 +2339,33 @@ " \n", " \n", " \n", - " 50\n", + " 3\n", " 0.005\n", - " 884.523857\n", - " False\n", + " 47.707395\n", + " True\n", " \n", " \n", - " 101\n", + " 27\n", " 0.005\n", - " 2024.950445\n", + " 472.420978\n", " False\n", " \n", " \n", - " 6\n", + " 124\n", " 0.005\n", - " 105.773838\n", + " 2410.197027\n", " False\n", " \n", " \n", - " 11\n", + " 21\n", " 0.005\n", - " 215.484379\n", + " 374.053458\n", " False\n", " \n", " \n", - " 110\n", + " 87\n", " 0.005\n", - " 2190.775816\n", + " 1756.854159\n", " False\n", " \n", " \n", @@ -2367,11 +2374,11 @@ ], "text/plain": [ " volume timestamps auto_rewarded\n", - "50 0.005 884.523857 False\n", - "101 0.005 2024.950445 False\n", - "6 0.005 105.773838 False\n", - "11 0.005 215.484379 False\n", - "110 0.005 2190.775816 False" + "3 0.005 47.707395 True\n", + "27 0.005 472.420978 False\n", + "124 0.005 2410.197027 False\n", + "21 0.005 374.053458 False\n", + "87 0.005 1756.854159 False" ] }, "execution_count": 14, @@ -2388,10 +2395,10 @@ "id": "5d5520e7", "metadata": { "papermill": { - "duration": 0.013186, - "end_time": "2023-01-24T16:29:51.732822", + "duration": 0.021969, + "end_time": "2023-01-25T18:35:50.374209", "exception": false, - "start_time": "2023-01-24T16:29:51.719636", + "start_time": "2023-01-25T18:35:50.352240", "status": "completed" }, "tags": [] @@ -2407,16 +2414,16 @@ "id": "fdd759e6", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:51.760789Z", - "iopub.status.busy": "2023-01-24T16:29:51.760135Z", - "iopub.status.idle": "2023-01-24T16:29:51.767230Z", - "shell.execute_reply": "2023-01-24T16:29:51.766603Z" + "iopub.execute_input": "2023-01-25T18:35:50.413087Z", + "iopub.status.busy": "2023-01-25T18:35:50.412516Z", + "iopub.status.idle": "2023-01-25T18:35:50.423973Z", + "shell.execute_reply": "2023-01-25T18:35:50.423013Z" }, "papermill": { - "duration": 0.022654, - "end_time": "2023-01-24T16:29:51.768678", + "duration": 0.033465, + "end_time": "2023-01-25T18:35:50.426080", "exception": false, - "start_time": "2023-01-24T16:29:51.746024", + "start_time": "2023-01-25T18:35:50.392615", "status": "completed" }, "tags": [] @@ -2500,10 +2507,10 @@ "id": "67fc0824", "metadata": { "papermill": { - "duration": 0.013394, - "end_time": "2023-01-24T16:29:51.795588", + "duration": 0.018962, + "end_time": "2023-01-25T18:35:50.463057", "exception": false, - "start_time": "2023-01-24T16:29:51.782194", + "start_time": "2023-01-25T18:35:50.444095", "status": "completed" }, "tags": [] @@ -2517,10 +2524,10 @@ "id": "b241c77a", "metadata": { "papermill": { - "duration": 0.013289, - "end_time": "2023-01-24T16:29:51.822306", + "duration": 0.018534, + "end_time": "2023-01-25T18:35:50.500469", "exception": false, - "start_time": "2023-01-24T16:29:51.809017", + "start_time": "2023-01-25T18:35:50.481935", "status": "completed" }, "tags": [] @@ -2535,16 +2542,16 @@ "id": "a5ba15f7", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:51.850722Z", - "iopub.status.busy": "2023-01-24T16:29:51.850043Z", - "iopub.status.idle": "2023-01-24T16:29:51.887234Z", - "shell.execute_reply": "2023-01-24T16:29:51.886609Z" + "iopub.execute_input": "2023-01-25T18:35:50.540255Z", + "iopub.status.busy": "2023-01-25T18:35:50.539352Z", + "iopub.status.idle": "2023-01-25T18:35:52.434259Z", + "shell.execute_reply": "2023-01-25T18:35:52.433148Z" }, "papermill": { - "duration": 0.053418, - "end_time": "2023-01-24T16:29:51.889090", + "duration": 1.917663, + "end_time": "2023-01-25T18:35:52.436722", "exception": false, - "start_time": "2023-01-24T16:29:51.835672", + "start_time": "2023-01-25T18:35:50.519059", "status": "completed" }, "tags": [] @@ -2563,10 +2570,10 @@ "id": "9d7de8ae", "metadata": { "papermill": { - "duration": 0.013495, - "end_time": "2023-01-24T16:29:51.916183", + "duration": 0.018222, + "end_time": "2023-01-25T18:35:52.472874", "exception": false, - "start_time": "2023-01-24T16:29:51.902688", + "start_time": "2023-01-25T18:35:52.454652", "status": "completed" }, "tags": [] @@ -2581,16 +2588,16 @@ "id": "a9998dbe", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:51.944607Z", - "iopub.status.busy": "2023-01-24T16:29:51.944142Z", - "iopub.status.idle": "2023-01-24T16:29:51.951650Z", - "shell.execute_reply": "2023-01-24T16:29:51.951013Z" + "iopub.execute_input": "2023-01-25T18:35:52.510807Z", + "iopub.status.busy": "2023-01-25T18:35:52.510323Z", + "iopub.status.idle": "2023-01-25T18:35:52.521387Z", + "shell.execute_reply": "2023-01-25T18:35:52.520408Z" }, "papermill": { - "duration": 0.023554, - "end_time": "2023-01-24T16:29:51.953118", + "duration": 0.033465, + "end_time": "2023-01-25T18:35:52.523477", "exception": false, - "start_time": "2023-01-24T16:29:51.929564", + "start_time": "2023-01-25T18:35:52.490012", "status": "completed" }, "tags": [] @@ -2665,10 +2672,10 @@ "id": "01ff8229", "metadata": { "papermill": { - "duration": 0.013351, - "end_time": "2023-01-24T16:29:51.979762", + "duration": 0.020313, + "end_time": "2023-01-25T18:35:52.562916", "exception": false, - "start_time": "2023-01-24T16:29:51.966411", + "start_time": "2023-01-25T18:35:52.542603", "status": "completed" }, "tags": [] @@ -2683,16 +2690,16 @@ "id": "0dc214b7", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:52.008046Z", - "iopub.status.busy": "2023-01-24T16:29:52.007471Z", - "iopub.status.idle": "2023-01-24T16:29:52.257261Z", - "shell.execute_reply": "2023-01-24T16:29:52.255044Z" + "iopub.execute_input": "2023-01-25T18:35:52.602007Z", + "iopub.status.busy": "2023-01-25T18:35:52.601385Z", + "iopub.status.idle": "2023-01-25T18:35:52.982667Z", + "shell.execute_reply": "2023-01-25T18:35:52.981759Z" }, "papermill": { - "duration": 0.266069, - "end_time": "2023-01-24T16:29:52.259238", + "duration": 0.403208, + "end_time": "2023-01-25T18:35:52.984701", "exception": false, - "start_time": "2023-01-24T16:29:51.993169", + "start_time": "2023-01-25T18:35:52.581493", "status": "completed" }, "scrolled": false, @@ -2743,10 +2750,10 @@ "id": "1b3eb232", "metadata": { "papermill": { - "duration": 0.014838, - "end_time": "2023-01-24T16:29:52.289347", + "duration": 0.019893, + "end_time": "2023-01-25T18:35:53.025082", "exception": false, - "start_time": "2023-01-24T16:29:52.274509", + "start_time": "2023-01-25T18:35:53.005189", "status": "completed" }, "tags": [] @@ -2760,10 +2767,10 @@ "id": "5735de40", "metadata": { "papermill": { - "duration": 0.01456, - "end_time": "2023-01-24T16:29:52.318535", + "duration": 0.024539, + "end_time": "2023-01-25T18:35:53.069212", "exception": false, - "start_time": "2023-01-24T16:29:52.303975", + "start_time": "2023-01-25T18:35:53.044673", "status": "completed" }, "tags": [] @@ -2778,16 +2785,16 @@ "id": "577fc78d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:52.349193Z", - "iopub.status.busy": "2023-01-24T16:29:52.348691Z", - "iopub.status.idle": "2023-01-24T16:29:52.368969Z", - "shell.execute_reply": "2023-01-24T16:29:52.368374Z" + "iopub.execute_input": "2023-01-25T18:35:53.114619Z", + "iopub.status.busy": "2023-01-25T18:35:53.113813Z", + "iopub.status.idle": "2023-01-25T18:35:53.144477Z", + "shell.execute_reply": "2023-01-25T18:35:53.143332Z" }, "papermill": { - "duration": 0.03725, - "end_time": "2023-01-24T16:29:52.370361", + "duration": 0.058934, + "end_time": "2023-01-25T18:35:53.147994", "exception": false, - "start_time": "2023-01-24T16:29:52.333111", + "start_time": "2023-01-25T18:35:53.089060", "status": "completed" }, "scrolled": true, @@ -3047,10 +3054,10 @@ "id": "054ab87a", "metadata": { "papermill": { - "duration": 0.014974, - "end_time": "2023-01-24T16:29:52.400456", + "duration": 0.021797, + "end_time": "2023-01-25T18:35:53.196876", "exception": false, - "start_time": "2023-01-24T16:29:52.385482", + "start_time": "2023-01-25T18:35:53.175079", "status": "completed" }, "tags": [] @@ -3106,10 +3113,10 @@ "id": "edc92625", "metadata": { "papermill": { - "duration": 0.014808, - "end_time": "2023-01-24T16:29:52.430158", + "duration": 0.022864, + "end_time": "2023-01-25T18:35:53.244865", "exception": false, - "start_time": "2023-01-24T16:29:52.415350", + "start_time": "2023-01-25T18:35:53.222001", "status": "completed" }, "tags": [] @@ -3124,16 +3131,16 @@ "id": "65c6f5f0", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:52.461470Z", - "iopub.status.busy": "2023-01-24T16:29:52.460951Z", - "iopub.status.idle": "2023-01-24T16:29:53.130964Z", - "shell.execute_reply": "2023-01-24T16:29:53.130237Z" + "iopub.execute_input": "2023-01-25T18:35:53.289206Z", + "iopub.status.busy": "2023-01-25T18:35:53.288211Z", + "iopub.status.idle": "2023-01-25T18:35:54.560990Z", + "shell.execute_reply": "2023-01-25T18:35:54.559971Z" }, "papermill": { - "duration": 0.687635, - "end_time": "2023-01-24T16:29:53.132665", + "duration": 1.298841, + "end_time": "2023-01-25T18:35:54.564323", "exception": false, - "start_time": "2023-01-24T16:29:52.445030", + "start_time": "2023-01-25T18:35:53.265482", "status": "completed" }, "tags": [] @@ -3181,10 +3188,10 @@ "id": "f7d86355", "metadata": { "papermill": { - "duration": 0.01523, - "end_time": "2023-01-24T16:29:53.163711", + "duration": 0.019298, + "end_time": "2023-01-25T18:35:54.604080", "exception": false, - "start_time": "2023-01-24T16:29:53.148481", + "start_time": "2023-01-25T18:35:54.584782", "status": "completed" }, "tags": [] @@ -3199,16 +3206,16 @@ "id": "3e7501cd", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:53.195368Z", - "iopub.status.busy": "2023-01-24T16:29:53.194731Z", - "iopub.status.idle": "2023-01-24T16:29:53.208938Z", - "shell.execute_reply": "2023-01-24T16:29:53.208318Z" + "iopub.execute_input": "2023-01-25T18:35:54.647121Z", + "iopub.status.busy": "2023-01-25T18:35:54.646540Z", + "iopub.status.idle": "2023-01-25T18:35:54.669940Z", + "shell.execute_reply": "2023-01-25T18:35:54.668939Z" }, "papermill": { - "duration": 0.031686, - "end_time": "2023-01-24T16:29:53.210383", + "duration": 0.047934, + "end_time": "2023-01-25T18:35:54.671945", "exception": false, - "start_time": "2023-01-24T16:29:53.178697", + "start_time": "2023-01-25T18:35:54.624011", "status": "completed" }, "tags": [] @@ -3328,10 +3335,10 @@ "id": "a28980ee", "metadata": { "papermill": { - "duration": 0.015221, - "end_time": "2023-01-24T16:29:53.240912", + "duration": 0.019, + "end_time": "2023-01-25T18:35:54.711425", "exception": false, - "start_time": "2023-01-24T16:29:53.225691", + "start_time": "2023-01-25T18:35:54.692425", "status": "completed" }, "tags": [] @@ -3346,16 +3353,16 @@ "id": "2c897286", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:53.273024Z", - "iopub.status.busy": "2023-01-24T16:29:53.272525Z", - "iopub.status.idle": "2023-01-24T16:29:53.698117Z", - "shell.execute_reply": "2023-01-24T16:29:53.697402Z" + "iopub.execute_input": "2023-01-25T18:35:54.752612Z", + "iopub.status.busy": "2023-01-25T18:35:54.751566Z", + "iopub.status.idle": "2023-01-25T18:35:55.518051Z", + "shell.execute_reply": "2023-01-25T18:35:55.516932Z" }, "papermill": { - "duration": 0.443569, - "end_time": "2023-01-24T16:29:53.699859", + "duration": 0.789883, + "end_time": "2023-01-25T18:35:55.521003", "exception": false, - "start_time": "2023-01-24T16:29:53.256290", + "start_time": "2023-01-25T18:35:54.731120", "status": "completed" }, "scrolled": false, @@ -3398,10 +3405,10 @@ "id": "b798d071", "metadata": { "papermill": { - "duration": 0.015999, - "end_time": "2023-01-24T16:29:53.732285", + "duration": 0.02272, + "end_time": "2023-01-25T18:35:55.567304", "exception": false, - "start_time": "2023-01-24T16:29:53.716286", + "start_time": "2023-01-25T18:35:55.544584", "status": "completed" }, "tags": [] @@ -3416,16 +3423,16 @@ "id": "ec18396a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:29:53.766077Z", - "iopub.status.busy": "2023-01-24T16:29:53.765331Z", - "iopub.status.idle": "2023-01-24T16:29:53.778446Z", - "shell.execute_reply": "2023-01-24T16:29:53.777860Z" + "iopub.execute_input": "2023-01-25T18:35:55.610608Z", + "iopub.status.busy": "2023-01-25T18:35:55.610016Z", + "iopub.status.idle": "2023-01-25T18:35:55.629898Z", + "shell.execute_reply": "2023-01-25T18:35:55.629037Z" }, "papermill": { - "duration": 0.03157, - "end_time": "2023-01-24T16:29:53.779785", + "duration": 0.044626, + "end_time": "2023-01-25T18:35:55.632971", "exception": false, - "start_time": "2023-01-24T16:29:53.748215", + "start_time": "2023-01-25T18:35:55.588345", "status": "completed" }, "tags": [] @@ -3548,10 +3555,10 @@ "id": "e253e460", "metadata": { "papermill": { - "duration": 0.016094, - "end_time": "2023-01-24T16:29:53.812167", + "duration": 0.026336, + "end_time": "2023-01-25T18:35:55.680273", "exception": false, - "start_time": "2023-01-24T16:29:53.796073", + "start_time": "2023-01-25T18:35:55.653937", "status": "completed" }, "tags": [] @@ -3581,17 +3588,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 26.050963, - "end_time": "2023-01-24T16:29:54.347186", + "duration": 38.050972, + "end_time": "2023-01-25T18:35:56.525441", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/visual_behavior_neuropixels_analyzing_behavior_only_data.ipynb", - "output_path": "/tmp/tmpsg_eldbb/scratch_nb.ipynb", + "output_path": "/tmp/tmp2kxc62j7/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmpsg_eldbb", + "output_dir": "/tmp/tmp2kxc62j7", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T16:29:28.296223", + "start_time": "2023-01-25T18:35:18.474469", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_data_access.ipynb b/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_data_access.ipynb index a2c5ad259..d063ce197 100644 --- a/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_data_access.ipynb +++ b/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_data_access.ipynb @@ -5,10 +5,10 @@ "id": "6eac13f8", "metadata": { "papermill": { - "duration": 0.012837, - "end_time": "2023-01-24T16:51:54.785755", + "duration": 0.015857, + "end_time": "2023-01-25T18:57:47.057480", "exception": false, - "start_time": "2023-01-24T16:51:54.772918", + "start_time": "2023-01-25T18:57:47.041623", "status": "completed" }, "pycharm": { @@ -25,10 +25,10 @@ "id": "bf750919", "metadata": { "papermill": { - "duration": 0.010256, - "end_time": "2023-01-24T16:51:54.806674", + "duration": 0.013144, + "end_time": "2023-01-25T18:57:47.085911", "exception": false, - "start_time": "2023-01-24T16:51:54.796418", + "start_time": "2023-01-25T18:57:47.072767", "status": "completed" }, "pycharm": { @@ -51,10 +51,10 @@ "id": "01a7f135", "metadata": { "papermill": { - "duration": 0.010196, - "end_time": "2023-01-24T16:51:54.827127", + "duration": 0.012553, + "end_time": "2023-01-25T18:57:47.111329", "exception": false, - "start_time": "2023-01-24T16:51:54.816931", + "start_time": "2023-01-25T18:57:47.098776", "status": "completed" }, "pycharm": { @@ -75,10 +75,10 @@ "id": "04404969", "metadata": { "papermill": { - "duration": 0.010217, - "end_time": "2023-01-24T16:51:54.847570", + "duration": 0.013538, + "end_time": "2023-01-25T18:57:47.137547", "exception": false, - "start_time": "2023-01-24T16:51:54.837353", + "start_time": "2023-01-25T18:57:47.124009", "status": "completed" }, "pycharm": { @@ -109,10 +109,10 @@ "id": "c9962815", "metadata": { "papermill": { - "duration": 0.010157, - "end_time": "2023-01-24T16:51:54.867914", + "duration": 0.012731, + "end_time": "2023-01-25T18:57:47.163643", "exception": false, - "start_time": "2023-01-24T16:51:54.857757", + "start_time": "2023-01-25T18:57:47.150912", "status": "completed" }, "pycharm": { @@ -129,10 +129,10 @@ "id": "82546c42", "metadata": { "papermill": { - "duration": 0.010181, - "end_time": "2023-01-24T16:51:54.888444", + "duration": 0.012134, + "end_time": "2023-01-25T18:57:47.188553", "exception": false, - "start_time": "2023-01-24T16:51:54.878263", + "start_time": "2023-01-25T18:57:47.176419", "status": "completed" }, "pycharm": { @@ -150,16 +150,16 @@ "id": "7a03b5d1", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:51:54.910560Z", - "iopub.status.busy": "2023-01-24T16:51:54.910003Z", - "iopub.status.idle": "2023-01-24T16:51:57.237748Z", - "shell.execute_reply": "2023-01-24T16:51:57.236961Z" + "iopub.execute_input": "2023-01-25T18:57:47.220249Z", + "iopub.status.busy": "2023-01-25T18:57:47.219857Z", + "iopub.status.idle": "2023-01-25T18:57:50.306455Z", + "shell.execute_reply": "2023-01-25T18:57:50.305300Z" }, "papermill": { - "duration": 2.340979, - "end_time": "2023-01-24T16:51:57.239764", + "duration": 3.107232, + "end_time": "2023-01-25T18:57:50.309745", "exception": false, - "start_time": "2023-01-24T16:51:54.898785", + "start_time": "2023-01-25T18:57:47.202513", "status": "completed" }, "pycharm": { @@ -172,81 +172,81 @@ "name": "stdout", "output_type": "stream", "text": [ - "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.0)\r\n", - "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", - "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", - "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", - "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", + "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.1)\r\n", + "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", + "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", + "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", + "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", + "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", + "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", "Requirement already satisfied: aiohttp==3.7.4 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.7.4)\r\n", + "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", + "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", - "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", - "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", - "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", - "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", - "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", - "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", + "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", + "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", + "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", + "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", + "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", - "Requirement already satisfied: requests<3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.28.2)\r\n", - "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", - "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", - "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", - "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", - "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", - "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", - "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", + "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", + "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", - "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", - "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", "Requirement already satisfied: requests-toolbelt<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.10.1)\r\n", - "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", - "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", - "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", - "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", + "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", + "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", + "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", + "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", + "Requirement already satisfied: requests<3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.28.2)\r\n", "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", - "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", - "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", - "Requirement already satisfied: chardet<4.0,>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.4)\r\n", - "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", - "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", + "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", + "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", + "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", + "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", + "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", "Requirement already satisfied: yarl<2.0,>=1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (1.8.2)\r\n", "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (6.0.4)\r\n", + "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", + "Requirement already satisfied: chardet<4.0,>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.4)\r\n", + "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", + "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", "Requirement already satisfied: jmespath<1.0.0,>=0.7.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.10.0)\r\n", "Requirement already satisfied: botocore<1.21.0,>=1.20.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (1.20.112)\r\n", "Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.3.7)\r\n", "Requirement already satisfied: setuptools in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from glymur==0.8.19->allensdk) (56.0.0)\r\n", - "Requirement already satisfied: pyyaml in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (6.0)\r\n", "Requirement already satisfied: marshmallow<4.0,>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (3.19.0)\r\n", - "Requirement already satisfied: ruamel.yaml<1,>=0.16 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (0.17.21)\r\n", + "Requirement already satisfied: pyyaml in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (6.0)\r\n", "Requirement already satisfied: jsonschema<5,>=2.6.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (4.17.3)\r\n", + "Requirement already satisfied: ruamel.yaml<1,>=0.16 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (0.17.21)\r\n", "Requirement already satisfied: MarkupSafe>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jinja2>=3.0.0->allensdk) (2.1.2)\r\n", - "Requirement already satisfied: cycler>=0.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (0.11.0)\r\n", - "Requirement already satisfied: kiwisolver>=1.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (1.4.4)\r\n", "Requirement already satisfied: pillow>=6.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (9.4.0)\r\n", + "Requirement already satisfied: kiwisolver>=1.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (1.4.4)\r\n", + "Requirement already satisfied: cycler>=0.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (0.11.0)\r\n", "Requirement already satisfied: pyparsing>=2.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (3.0.9)\r\n", "Requirement already satisfied: pytz>=2020.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from pandas>=1.1.5->allensdk) (2022.7.1)\r\n", "Requirement already satisfied: certifi>=2017.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (2022.12.7)\r\n", - "Requirement already satisfied: idna<4,>=2.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.4)\r\n", - "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.0.1)\r\n", "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", - "Requirement already satisfied: packaging in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (23.0)\r\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.0.1)\r\n", + "Requirement already satisfied: idna<4,>=2.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.4)\r\n", "Requirement already satisfied: wheel>=0.32.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (0.38.4)\r\n", + "Requirement already satisfied: packaging in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (23.0)\r\n", "Requirement already satisfied: distro in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (1.8.0)\r\n", - "Requirement already satisfied: tifffile>=2019.7.26 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2023.1.23.1)\r\n", "Requirement already satisfied: networkx>=2.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (3.0)\r\n", - "Requirement already satisfied: PyWavelets>=1.1.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (1.4.1)\r\n", "Requirement already satisfied: imageio>=2.4.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2.25.0)\r\n", + "Requirement already satisfied: PyWavelets>=1.1.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (1.4.1)\r\n", + "Requirement already satisfied: tifffile>=2019.7.26 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2023.1.23.1)\r\n", "Requirement already satisfied: patsy>=0.5.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from statsmodels<=0.13.0->allensdk) (0.5.3)\r\n", "Requirement already satisfied: greenlet!=0.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from sqlalchemy->allensdk) (2.0.1)\r\n", "Requirement already satisfied: py-cpuinfo in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (9.0.0)\r\n", - "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", - "Requirement already satisfied: numexpr>=2.6.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.8.4)\r\n", "Requirement already satisfied: blosc2~=2.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.0.0)\r\n", + "Requirement already satisfied: numexpr>=2.6.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.8.4)\r\n", + "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", "Requirement already satisfied: msgpack in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from blosc2~=2.0.0->tables->allensdk) (1.0.4)\r\n", "Requirement already satisfied: pkgutil-resolve-name>=1.3.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (1.3.10)\r\n", - "Requirement already satisfied: importlib-resources>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (5.10.2)\r\n", "Requirement already satisfied: pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (0.19.3)\r\n", + "Requirement already satisfied: importlib-resources>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (5.10.2)\r\n", "Requirement already satisfied: ruamel.yaml.clib>=0.2.6 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from ruamel.yaml<1,>=0.16->hdmf<=3.4.7->allensdk) (0.2.7)\r\n", "Requirement already satisfied: zipp>=3.1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from importlib-resources>=1.4.0->jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (3.11.0)\r\n" ] @@ -261,10 +261,10 @@ "id": "ee59e9f7", "metadata": { "papermill": { - "duration": 0.011016, - "end_time": "2023-01-24T16:51:57.262248", + "duration": 0.013992, + "end_time": "2023-01-25T18:57:50.338483", "exception": false, - "start_time": "2023-01-24T16:51:57.251232", + "start_time": "2023-01-25T18:57:50.324491", "status": "completed" }, "pycharm": { @@ -281,10 +281,10 @@ "id": "5ec0e747", "metadata": { "papermill": { - "duration": 0.010849, - "end_time": "2023-01-24T16:51:57.284003", + "duration": 0.013292, + "end_time": "2023-01-25T18:57:50.366532", "exception": false, - "start_time": "2023-01-24T16:51:57.273154", + "start_time": "2023-01-25T18:57:50.353240", "status": "completed" }, "pycharm": { @@ -305,16 +305,16 @@ "id": "5a360236", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:51:57.307992Z", - "iopub.status.busy": "2023-01-24T16:51:57.307189Z", - "iopub.status.idle": "2023-01-24T16:52:01.373568Z", - "shell.execute_reply": "2023-01-24T16:52:01.372785Z" + "iopub.execute_input": "2023-01-25T18:57:50.396044Z", + "iopub.status.busy": "2023-01-25T18:57:50.395396Z", + "iopub.status.idle": "2023-01-25T18:57:55.614058Z", + "shell.execute_reply": "2023-01-25T18:57:55.612793Z" }, "papermill": { - "duration": 4.080663, - "end_time": "2023-01-24T16:52:01.375679", + "duration": 5.236332, + "end_time": "2023-01-25T18:57:55.616415", "exception": false, - "start_time": "2023-01-24T16:51:57.295016", + "start_time": "2023-01-25T18:57:50.380083", "status": "completed" }, "pycharm": { @@ -328,81 +328,81 @@ "output_type": "stream", "text": [ "Requirement already satisfied: pip in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (22.3.1)\r\n", - "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.0)\r\n", - "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", + "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.1)\r\n", + "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", + "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", "Requirement already satisfied: requests<3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.28.2)\r\n", - "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", - "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", - "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", - "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", - "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", + "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", + "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", + "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", + "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", + "Requirement already satisfied: aiohttp==3.7.4 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.7.4)\r\n", + "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", + "Requirement already satisfied: requests-toolbelt<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.10.1)\r\n", "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", - "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", + "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", + "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", + "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", + "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", + "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", + "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", + "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", + "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", + "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", + "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", - "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", - "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", - "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", - "Requirement already satisfied: aiohttp==3.7.4 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.7.4)\r\n", - "Requirement already satisfied: requests-toolbelt<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.10.1)\r\n", - "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", - "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", - "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", - "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", - "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", - "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", + "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", - "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", - "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", - "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", - "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", - "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (6.0.4)\r\n", - "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", + "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", + "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", + "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", + "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (6.0.4)\r\n", + "Requirement already satisfied: chardet<4.0,>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.4)\r\n", "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", "Requirement already satisfied: yarl<2.0,>=1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (1.8.2)\r\n", - "Requirement already satisfied: chardet<4.0,>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.4)\r\n", "Requirement already satisfied: jmespath<1.0.0,>=0.7.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.10.0)\r\n", - "Requirement already satisfied: botocore<1.21.0,>=1.20.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (1.20.112)\r\n", "Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.3.7)\r\n", + "Requirement already satisfied: botocore<1.21.0,>=1.20.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (1.20.112)\r\n", "Requirement already satisfied: setuptools in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from glymur==0.8.19->allensdk) (56.0.0)\r\n", - "Requirement already satisfied: marshmallow<4.0,>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (3.19.0)\r\n", "Requirement already satisfied: pyyaml in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (6.0)\r\n", - "Requirement already satisfied: ruamel.yaml<1,>=0.16 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (0.17.21)\r\n", + "Requirement already satisfied: marshmallow<4.0,>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (3.19.0)\r\n", "Requirement already satisfied: jsonschema<5,>=2.6.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (4.17.3)\r\n", + "Requirement already satisfied: ruamel.yaml<1,>=0.16 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (0.17.21)\r\n", "Requirement already satisfied: MarkupSafe>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jinja2>=3.0.0->allensdk) (2.1.2)\r\n", - "Requirement already satisfied: pyparsing>=2.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (3.0.9)\r\n", "Requirement already satisfied: cycler>=0.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (0.11.0)\r\n", "Requirement already satisfied: pillow>=6.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (9.4.0)\r\n", + "Requirement already satisfied: pyparsing>=2.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (3.0.9)\r\n", "Requirement already satisfied: kiwisolver>=1.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (1.4.4)\r\n", "Requirement already satisfied: pytz>=2020.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from pandas>=1.1.5->allensdk) (2022.7.1)\r\n", - "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.0.1)\r\n", - "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", "Requirement already satisfied: certifi>=2017.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (2022.12.7)\r\n", "Requirement already satisfied: idna<4,>=2.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.4)\r\n", + "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.0.1)\r\n", "Requirement already satisfied: wheel>=0.32.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (0.38.4)\r\n", "Requirement already satisfied: distro in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (1.8.0)\r\n", "Requirement already satisfied: packaging in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (23.0)\r\n", - "Requirement already satisfied: PyWavelets>=1.1.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (1.4.1)\r\n", - "Requirement already satisfied: networkx>=2.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (3.0)\r\n", "Requirement already satisfied: tifffile>=2019.7.26 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2023.1.23.1)\r\n", + "Requirement already satisfied: networkx>=2.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (3.0)\r\n", + "Requirement already satisfied: PyWavelets>=1.1.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (1.4.1)\r\n", "Requirement already satisfied: imageio>=2.4.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2.25.0)\r\n", "Requirement already satisfied: patsy>=0.5.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from statsmodels<=0.13.0->allensdk) (0.5.3)\r\n", "Requirement already satisfied: greenlet!=0.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from sqlalchemy->allensdk) (2.0.1)\r\n", - "Requirement already satisfied: py-cpuinfo in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (9.0.0)\r\n", - "Requirement already satisfied: numexpr>=2.6.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.8.4)\r\n", - "Requirement already satisfied: blosc2~=2.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.0.0)\r\n", "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", + "Requirement already satisfied: blosc2~=2.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.0.0)\r\n", + "Requirement already satisfied: numexpr>=2.6.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.8.4)\r\n", + "Requirement already satisfied: py-cpuinfo in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (9.0.0)\r\n", "Requirement already satisfied: msgpack in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from blosc2~=2.0.0->tables->allensdk) (1.0.4)\r\n", - "Requirement already satisfied: pkgutil-resolve-name>=1.3.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (1.3.10)\r\n", - "Requirement already satisfied: importlib-resources>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (5.10.2)\r\n", "Requirement already satisfied: pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (0.19.3)\r\n", + "Requirement already satisfied: importlib-resources>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (5.10.2)\r\n", + "Requirement already satisfied: pkgutil-resolve-name>=1.3.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (1.3.10)\r\n", "Requirement already satisfied: ruamel.yaml.clib>=0.2.6 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from ruamel.yaml<1,>=0.16->hdmf<=3.4.7->allensdk) (0.2.7)\r\n", "Requirement already satisfied: zipp>=3.1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from importlib-resources>=1.4.0->jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (3.11.0)\r\n" ] @@ -418,10 +418,10 @@ "id": "a504e881", "metadata": { "papermill": { - "duration": 0.011936, - "end_time": "2023-01-24T16:52:01.399817", + "duration": 0.014549, + "end_time": "2023-01-25T18:57:55.646467", "exception": false, - "start_time": "2023-01-24T16:52:01.387881", + "start_time": "2023-01-25T18:57:55.631918", "status": "completed" }, "pycharm": { @@ -439,16 +439,16 @@ "id": "6b741021", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:52:01.425736Z", - "iopub.status.busy": "2023-01-24T16:52:01.425014Z", - "iopub.status.idle": "2023-01-24T16:52:07.141639Z", - "shell.execute_reply": "2023-01-24T16:52:07.140941Z" + "iopub.execute_input": "2023-01-25T18:57:55.677005Z", + "iopub.status.busy": "2023-01-25T18:57:55.676261Z", + "iopub.status.idle": "2023-01-25T18:58:03.408642Z", + "shell.execute_reply": "2023-01-25T18:58:03.407611Z" }, "papermill": { - "duration": 5.731713, - "end_time": "2023-01-24T16:52:07.143602", + "duration": 7.750242, + "end_time": "2023-01-25T18:58:03.410864", "exception": false, - "start_time": "2023-01-24T16:52:01.411889", + "start_time": "2023-01-25T18:57:55.660622", "status": "completed" }, "pycharm": { @@ -469,7 +469,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "Your allensdk version is: 2.15.0\n" + "Your allensdk version is: 2.15.1\n" ] } ], @@ -489,10 +489,10 @@ "id": "4201d911", "metadata": { "papermill": { - "duration": 0.011839, - "end_time": "2023-01-24T16:52:07.167568", + "duration": 0.016072, + "end_time": "2023-01-25T18:58:03.442508", "exception": false, - "start_time": "2023-01-24T16:52:07.155729", + "start_time": "2023-01-25T18:58:03.426436", "status": "completed" }, "pycharm": { @@ -510,16 +510,16 @@ "id": "6df5a6a9", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:52:07.192872Z", - "iopub.status.busy": "2023-01-24T16:52:07.192234Z", - "iopub.status.idle": "2023-01-24T16:52:07.195831Z", - "shell.execute_reply": "2023-01-24T16:52:07.195276Z" + "iopub.execute_input": "2023-01-25T18:58:03.474526Z", + "iopub.status.busy": "2023-01-25T18:58:03.473700Z", + "iopub.status.idle": "2023-01-25T18:58:03.478798Z", + "shell.execute_reply": "2023-01-25T18:58:03.477775Z" }, "papermill": { - "duration": 0.017899, - "end_time": "2023-01-24T16:52:07.197347", + "duration": 0.023777, + "end_time": "2023-01-25T18:58:03.481314", "exception": false, - "start_time": "2023-01-24T16:52:07.179448", + "start_time": "2023-01-25T18:58:03.457537", "status": "completed" }, "pycharm": { @@ -542,16 +542,16 @@ "id": "76e86ff5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:52:07.252035Z", - "iopub.status.busy": "2023-01-24T16:52:07.251395Z", - "iopub.status.idle": "2023-01-24T16:52:14.396154Z", - "shell.execute_reply": "2023-01-24T16:52:14.395473Z" + "iopub.execute_input": "2023-01-25T18:58:03.553571Z", + "iopub.status.busy": "2023-01-25T18:58:03.552725Z", + "iopub.status.idle": "2023-01-25T18:58:10.105777Z", + "shell.execute_reply": "2023-01-25T18:58:10.104741Z" }, "papermill": { - "duration": 7.159444, - "end_time": "2023-01-24T16:52:14.398157", + "duration": 6.574503, + "end_time": "2023-01-25T18:58:10.108387", "exception": false, - "start_time": "2023-01-24T16:52:07.238713", + "start_time": "2023-01-25T18:58:03.533884", "status": "completed" }, "pycharm": { @@ -572,15 +572,15 @@ "\n", "To avoid this warning in the future, make sure that\n", "\n", - "/tmp/tmpwuk86z7e/_downloaded_data.json\n", + "/tmp/tmpyo7ik9op/_downloaded_data.json\n", "\n", "is not deleted between instantiations of this cache\n", " warnings.warn(msg, MissingLocalManifestWarning)\n", - "ecephys_sessions.csv: 100%|██████████| 64.7k/64.7k [00:00<00:00, 863kMB/s]\n", - "behavior_sessions.csv: 100%|██████████| 562k/562k [00:00<00:00, 5.94MMB/s]\n", - "units.csv: 100%|██████████| 132M/132M [00:03<00:00, 39.1MMB/s]\n", - "probes.csv: 100%|██████████| 130k/130k [00:00<00:00, 1.50MMB/s]\n", - "channels.csv: 100%|██████████| 27.9M/27.9M [00:00<00:00, 34.0MMB/s]\n" + "ecephys_sessions.csv: 100%|██████████| 64.7k/64.7k [00:00<00:00, 1.91MMB/s]\n", + "behavior_sessions.csv: 100%|██████████| 562k/562k [00:00<00:00, 11.6MMB/s]\n", + "units.csv: 100%|██████████| 132M/132M [00:02<00:00, 46.7MMB/s]\n", + "probes.csv: 100%|██████████| 130k/130k [00:00<00:00, 2.09MMB/s]\n", + "channels.csv: 100%|██████████| 27.9M/27.9M [00:00<00:00, 41.8MMB/s]\n" ] } ], @@ -594,10 +594,10 @@ "id": "8827f014", "metadata": { "papermill": { - "duration": 0.014443, - "end_time": "2023-01-24T16:52:14.427951", + "duration": 0.017075, + "end_time": "2023-01-25T18:58:10.143809", "exception": false, - "start_time": "2023-01-24T16:52:14.413508", + "start_time": "2023-01-25T18:58:10.126734", "status": "completed" }, "pycharm": { @@ -624,10 +624,10 @@ "id": "ae48a02c", "metadata": { "papermill": { - "duration": 0.013952, - "end_time": "2023-01-24T16:52:14.456002", + "duration": 0.016758, + "end_time": "2023-01-25T18:58:10.177827", "exception": false, - "start_time": "2023-01-24T16:52:14.442050", + "start_time": "2023-01-25T18:58:10.161069", "status": "completed" }, "pycharm": { @@ -648,10 +648,10 @@ "id": "1a9df3a1", "metadata": { "papermill": { - "duration": 0.013956, - "end_time": "2023-01-24T16:52:14.483944", + "duration": 0.017217, + "end_time": "2023-01-25T18:58:10.212608", "exception": false, - "start_time": "2023-01-24T16:52:14.469988", + "start_time": "2023-01-25T18:58:10.195391", "status": "completed" }, "pycharm": { @@ -671,16 +671,16 @@ "id": "e9043603", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:52:14.513522Z", - "iopub.status.busy": "2023-01-24T16:52:14.512952Z", - "iopub.status.idle": "2023-01-24T16:52:14.518361Z", - "shell.execute_reply": "2023-01-24T16:52:14.517841Z" + "iopub.execute_input": "2023-01-25T18:58:10.253824Z", + "iopub.status.busy": "2023-01-25T18:58:10.252704Z", + "iopub.status.idle": "2023-01-25T18:58:10.260122Z", + "shell.execute_reply": "2023-01-25T18:58:10.259241Z" }, "papermill": { - "duration": 0.02187, - "end_time": "2023-01-24T16:52:14.519754", + "duration": 0.032041, + "end_time": "2023-01-25T18:58:10.262202", "exception": false, - "start_time": "2023-01-24T16:52:14.497884", + "start_time": "2023-01-25T18:58:10.230161", "status": "completed" }, "pycharm": { @@ -712,10 +712,10 @@ "id": "2ba3f1b8", "metadata": { "papermill": { - "duration": 0.014035, - "end_time": "2023-01-24T16:52:14.548004", + "duration": 0.017876, + "end_time": "2023-01-25T18:58:10.297767", "exception": false, - "start_time": "2023-01-24T16:52:14.533969", + "start_time": "2023-01-25T18:58:10.279891", "status": "completed" }, "pycharm": { @@ -733,16 +733,16 @@ "id": "5613bef1", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:52:14.577685Z", - "iopub.status.busy": "2023-01-24T16:52:14.577129Z", - "iopub.status.idle": "2023-01-24T16:52:14.581687Z", - "shell.execute_reply": "2023-01-24T16:52:14.581072Z" + "iopub.execute_input": "2023-01-25T18:58:10.334595Z", + "iopub.status.busy": "2023-01-25T18:58:10.333681Z", + "iopub.status.idle": "2023-01-25T18:58:10.339815Z", + "shell.execute_reply": "2023-01-25T18:58:10.338886Z" }, "papermill": { - "duration": 0.021144, - "end_time": "2023-01-24T16:52:14.583133", + "duration": 0.027504, + "end_time": "2023-01-25T18:58:10.342824", "exception": false, - "start_time": "2023-01-24T16:52:14.561989", + "start_time": "2023-01-25T18:58:10.315320", "status": "completed" }, "pycharm": { @@ -771,10 +771,10 @@ "id": "3a0d6d99", "metadata": { "papermill": { - "duration": 0.014056, - "end_time": "2023-01-24T16:52:14.611236", + "duration": 0.019583, + "end_time": "2023-01-25T18:58:10.379762", "exception": false, - "start_time": "2023-01-24T16:52:14.597180", + "start_time": "2023-01-25T18:58:10.360179", "status": "completed" }, "pycharm": { @@ -792,16 +792,16 @@ "id": "7283cb73", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:52:14.640841Z", - "iopub.status.busy": "2023-01-24T16:52:14.640311Z", - "iopub.status.idle": "2023-01-24T16:52:14.644975Z", - "shell.execute_reply": "2023-01-24T16:52:14.644321Z" + "iopub.execute_input": "2023-01-25T18:58:10.424886Z", + "iopub.status.busy": "2023-01-25T18:58:10.424007Z", + "iopub.status.idle": "2023-01-25T18:58:10.430515Z", + "shell.execute_reply": "2023-01-25T18:58:10.429545Z" }, "papermill": { - "duration": 0.02111, - "end_time": "2023-01-24T16:52:14.646431", + "duration": 0.027777, + "end_time": "2023-01-25T18:58:10.432573", "exception": false, - "start_time": "2023-01-24T16:52:14.625321", + "start_time": "2023-01-25T18:58:10.404796", "status": "completed" }, "pycharm": { @@ -830,10 +830,10 @@ "id": "ef88f02d", "metadata": { "papermill": { - "duration": 0.014153, - "end_time": "2023-01-24T16:52:14.675099", + "duration": 0.016929, + "end_time": "2023-01-25T18:58:10.467564", "exception": false, - "start_time": "2023-01-24T16:52:14.660946", + "start_time": "2023-01-25T18:58:10.450635", "status": "completed" }, "pycharm": { @@ -851,16 +851,16 @@ "id": "04b4fb64", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:52:14.705136Z", - "iopub.status.busy": "2023-01-24T16:52:14.704609Z", - "iopub.status.idle": "2023-01-24T16:52:14.709136Z", - "shell.execute_reply": "2023-01-24T16:52:14.708481Z" + "iopub.execute_input": "2023-01-25T18:58:10.504556Z", + "iopub.status.busy": "2023-01-25T18:58:10.503934Z", + "iopub.status.idle": "2023-01-25T18:58:10.510189Z", + "shell.execute_reply": "2023-01-25T18:58:10.509231Z" }, "papermill": { - "duration": 0.021438, - "end_time": "2023-01-24T16:52:14.710651", + "duration": 0.027417, + "end_time": "2023-01-25T18:58:10.512158", "exception": false, - "start_time": "2023-01-24T16:52:14.689213", + "start_time": "2023-01-25T18:58:10.484741", "status": "completed" }, "pycharm": { @@ -889,10 +889,10 @@ "id": "a7c54c94", "metadata": { "papermill": { - "duration": 0.014258, - "end_time": "2023-01-24T16:52:14.739322", + "duration": 0.017476, + "end_time": "2023-01-25T18:58:10.546676", "exception": false, - "start_time": "2023-01-24T16:52:14.725064", + "start_time": "2023-01-25T18:58:10.529200", "status": "completed" }, "pycharm": { @@ -918,16 +918,16 @@ "id": "fb97e162", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:52:14.769358Z", - "iopub.status.busy": "2023-01-24T16:52:14.768832Z", - "iopub.status.idle": "2023-01-24T16:52:14.773276Z", - "shell.execute_reply": "2023-01-24T16:52:14.772656Z" + "iopub.execute_input": "2023-01-25T18:58:10.583299Z", + "iopub.status.busy": "2023-01-25T18:58:10.582526Z", + "iopub.status.idle": "2023-01-25T18:58:10.588581Z", + "shell.execute_reply": "2023-01-25T18:58:10.587662Z" }, "papermill": { - "duration": 0.021083, - "end_time": "2023-01-24T16:52:14.774660", + "duration": 0.026398, + "end_time": "2023-01-25T18:58:10.590395", "exception": false, - "start_time": "2023-01-24T16:52:14.753577", + "start_time": "2023-01-25T18:58:10.563997", "status": "completed" }, "pycharm": { @@ -956,10 +956,10 @@ "id": "e622264b", "metadata": { "papermill": { - "duration": 0.01432, - "end_time": "2023-01-24T16:52:14.803524", + "duration": 0.017277, + "end_time": "2023-01-25T18:58:10.624980", "exception": false, - "start_time": "2023-01-24T16:52:14.789204", + "start_time": "2023-01-25T18:58:10.607703", "status": "completed" }, "pycharm": { @@ -977,16 +977,16 @@ "id": "ac47867c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:52:14.833839Z", - "iopub.status.busy": "2023-01-24T16:52:14.833284Z", - "iopub.status.idle": "2023-01-24T16:52:20.287978Z", - "shell.execute_reply": "2023-01-24T16:52:20.287311Z" + "iopub.execute_input": "2023-01-25T18:58:10.662812Z", + "iopub.status.busy": "2023-01-25T18:58:10.662041Z", + "iopub.status.idle": "2023-01-25T18:58:18.349625Z", + "shell.execute_reply": "2023-01-25T18:58:18.348480Z" }, "papermill": { - "duration": 5.472406, - "end_time": "2023-01-24T16:52:20.290244", + "duration": 7.709467, + "end_time": "2023-01-25T18:58:18.352628", "exception": false, - "start_time": "2023-01-24T16:52:14.817838", + "start_time": "2023-01-25T18:58:10.643161", "status": "completed" }, "pycharm": { @@ -1019,10 +1019,10 @@ "\n", "\n", " warnings.warn(msg, OutdatedManifestWarning)\n", - "ecephys_sessions.csv: 100%|██████████| 63.5k/63.5k [00:00<00:00, 839kMB/s]\n", - "behavior_sessions.csv: 100%|██████████| 531k/531k [00:00<00:00, 3.42MMB/s] \n", - "units.csv: 100%|██████████| 132M/132M [00:03<00:00, 40.0MMB/s]\n", - "probes.csv: 100%|██████████| 127k/127k [00:00<00:00, 858kMB/s] \n" + "ecephys_sessions.csv: 100%|██████████| 63.5k/63.5k [00:00<00:00, 1.35MMB/s]\n", + "behavior_sessions.csv: 100%|██████████| 531k/531k [00:00<00:00, 4.21MMB/s] \n", + "units.csv: 100%|██████████| 132M/132M [00:05<00:00, 24.9MMB/s]\n", + "probes.csv: 100%|██████████| 127k/127k [00:00<00:00, 972kMB/s] \n" ] } ], @@ -1036,16 +1036,16 @@ "id": "28d01735", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:52:20.324983Z", - "iopub.status.busy": "2023-01-24T16:52:20.324421Z", - "iopub.status.idle": "2023-01-24T16:52:20.328379Z", - "shell.execute_reply": "2023-01-24T16:52:20.327935Z" + "iopub.execute_input": "2023-01-25T18:58:18.400241Z", + "iopub.status.busy": "2023-01-25T18:58:18.398526Z", + "iopub.status.idle": "2023-01-25T18:58:18.406153Z", + "shell.execute_reply": "2023-01-25T18:58:18.405358Z" }, "papermill": { - "duration": 0.022899, - "end_time": "2023-01-24T16:52:20.329895", + "duration": 0.033558, + "end_time": "2023-01-25T18:58:18.409120", "exception": false, - "start_time": "2023-01-24T16:52:20.306996", + "start_time": "2023-01-25T18:58:18.375562", "status": "completed" }, "pycharm": { @@ -1074,10 +1074,10 @@ "id": "b77392c7", "metadata": { "papermill": { - "duration": 0.016301, - "end_time": "2023-01-24T16:52:20.362660", + "duration": 0.021822, + "end_time": "2023-01-25T18:58:18.453073", "exception": false, - "start_time": "2023-01-24T16:52:20.346359", + "start_time": "2023-01-25T18:58:18.431251", "status": "completed" }, "pycharm": { @@ -1095,16 +1095,16 @@ "id": "75ff8702", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:52:20.397159Z", - "iopub.status.busy": "2023-01-24T16:52:20.396387Z", - "iopub.status.idle": "2023-01-24T16:52:20.490882Z", - "shell.execute_reply": "2023-01-24T16:52:20.490120Z" + "iopub.execute_input": "2023-01-25T18:58:18.497576Z", + "iopub.status.busy": "2023-01-25T18:58:18.497017Z", + "iopub.status.idle": "2023-01-25T18:58:18.585867Z", + "shell.execute_reply": "2023-01-25T18:58:18.584763Z" }, "papermill": { - "duration": 0.113452, - "end_time": "2023-01-24T16:52:20.492518", + "duration": 0.114044, + "end_time": "2023-01-25T18:58:18.588064", "exception": false, - "start_time": "2023-01-24T16:52:20.379066", + "start_time": "2023-01-25T18:58:18.474020", "status": "completed" }, "pycharm": { @@ -1140,10 +1140,10 @@ "id": "4e77a447", "metadata": { "papermill": { - "duration": 0.016606, - "end_time": "2023-01-24T16:52:20.526381", + "duration": 0.022603, + "end_time": "2023-01-25T18:58:18.632951", "exception": false, - "start_time": "2023-01-24T16:52:20.509775", + "start_time": "2023-01-25T18:58:18.610348", "status": "completed" }, "pycharm": { @@ -1160,10 +1160,10 @@ "id": "76730971", "metadata": { "papermill": { - "duration": 0.016414, - "end_time": "2023-01-24T16:52:20.559390", + "duration": 0.021232, + "end_time": "2023-01-25T18:58:18.676501", "exception": false, - "start_time": "2023-01-24T16:52:20.542976", + "start_time": "2023-01-25T18:58:18.655269", "status": "completed" }, "pycharm": { @@ -1181,16 +1181,16 @@ "id": "2b11b6f5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:52:20.593883Z", - "iopub.status.busy": "2023-01-24T16:52:20.593326Z", - "iopub.status.idle": "2023-01-24T16:52:22.058902Z", - "shell.execute_reply": "2023-01-24T16:52:22.058212Z" + "iopub.execute_input": "2023-01-25T18:58:18.726053Z", + "iopub.status.busy": "2023-01-25T18:58:18.724165Z", + "iopub.status.idle": "2023-01-25T18:58:20.553641Z", + "shell.execute_reply": "2023-01-25T18:58:20.552584Z" }, "papermill": { - "duration": 1.48502, - "end_time": "2023-01-24T16:52:22.060818", + "duration": 1.856014, + "end_time": "2023-01-25T18:58:20.556065", "exception": false, - "start_time": "2023-01-24T16:52:20.575798", + "start_time": "2023-01-25T18:58:18.700051", "status": "completed" }, "tags": [] @@ -1206,10 +1206,10 @@ "id": "35d495f1", "metadata": { "papermill": { - "duration": 0.016944, - "end_time": "2023-01-24T16:52:22.094823", + "duration": 0.021466, + "end_time": "2023-01-25T18:58:20.599965", "exception": false, - "start_time": "2023-01-24T16:52:22.077879", + "start_time": "2023-01-25T18:58:20.578499", "status": "completed" }, "pycharm": { @@ -1229,16 +1229,16 @@ "id": "c7fc8312", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:52:22.129872Z", - "iopub.status.busy": "2023-01-24T16:52:22.129152Z", - "iopub.status.idle": "2023-01-24T16:52:22.151655Z", - "shell.execute_reply": "2023-01-24T16:52:22.151099Z" + "iopub.execute_input": "2023-01-25T18:58:20.643164Z", + "iopub.status.busy": "2023-01-25T18:58:20.642403Z", + "iopub.status.idle": "2023-01-25T18:58:20.674900Z", + "shell.execute_reply": "2023-01-25T18:58:20.673948Z" }, "papermill": { - "duration": 0.041614, - "end_time": "2023-01-24T16:52:22.153070", + "duration": 0.056394, + "end_time": "2023-01-25T18:58:20.677487", "exception": false, - "start_time": "2023-01-24T16:52:22.111456", + "start_time": "2023-01-25T18:58:20.621093", "status": "completed" }, "pycharm": { @@ -1542,10 +1542,10 @@ "id": "175e5d34", "metadata": { "papermill": { - "duration": 0.016916, - "end_time": "2023-01-24T16:52:22.187202", + "duration": 0.021026, + "end_time": "2023-01-25T18:58:20.719571", "exception": false, - "start_time": "2023-01-24T16:52:22.170286", + "start_time": "2023-01-25T18:58:20.698545", "status": "completed" }, "pycharm": { @@ -1564,10 +1564,10 @@ "id": "51807dc7", "metadata": { "papermill": { - "duration": 0.017462, - "end_time": "2023-01-24T16:52:22.221599", + "duration": 0.021386, + "end_time": "2023-01-25T18:58:20.761487", "exception": false, - "start_time": "2023-01-24T16:52:22.204137", + "start_time": "2023-01-25T18:58:20.740101", "status": "completed" }, "pycharm": { @@ -1587,16 +1587,16 @@ "id": "4428bda5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:52:22.256928Z", - "iopub.status.busy": "2023-01-24T16:52:22.256377Z", - "iopub.status.idle": "2023-01-24T16:52:22.270177Z", - "shell.execute_reply": "2023-01-24T16:52:22.269614Z" + "iopub.execute_input": "2023-01-25T18:58:20.807831Z", + "iopub.status.busy": "2023-01-25T18:58:20.807253Z", + "iopub.status.idle": "2023-01-25T18:58:20.828043Z", + "shell.execute_reply": "2023-01-25T18:58:20.827068Z" }, "papermill": { - "duration": 0.03327, - "end_time": "2023-01-24T16:52:22.271679", + "duration": 0.047534, + "end_time": "2023-01-25T18:58:20.830282", "exception": false, - "start_time": "2023-01-24T16:52:22.238409", + "start_time": "2023-01-25T18:58:20.782748", "status": "completed" }, "pycharm": { @@ -1848,10 +1848,10 @@ "id": "93b90aae", "metadata": { "papermill": { - "duration": 0.01718, - "end_time": "2023-01-24T16:52:22.306185", + "duration": 0.020789, + "end_time": "2023-01-25T18:58:20.873675", "exception": false, - "start_time": "2023-01-24T16:52:22.289005", + "start_time": "2023-01-25T18:58:20.852886", "status": "completed" }, "pycharm": { @@ -1868,10 +1868,10 @@ "id": "d41f3afb", "metadata": { "papermill": { - "duration": 0.017209, - "end_time": "2023-01-24T16:52:22.340708", + "duration": 0.020363, + "end_time": "2023-01-25T18:58:20.915727", "exception": false, - "start_time": "2023-01-24T16:52:22.323499", + "start_time": "2023-01-25T18:58:20.895364", "status": "completed" }, "pycharm": { @@ -1891,16 +1891,16 @@ "id": "0db9b3c8", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:52:22.376815Z", - "iopub.status.busy": "2023-01-24T16:52:22.376110Z", - "iopub.status.idle": "2023-01-24T16:52:22.388066Z", - "shell.execute_reply": "2023-01-24T16:52:22.387526Z" + "iopub.execute_input": "2023-01-25T18:58:20.961550Z", + "iopub.status.busy": "2023-01-25T18:58:20.960963Z", + "iopub.status.idle": "2023-01-25T18:58:20.977287Z", + "shell.execute_reply": "2023-01-25T18:58:20.976409Z" }, "papermill": { - "duration": 0.031773, - "end_time": "2023-01-24T16:52:22.389599", + "duration": 0.042343, + "end_time": "2023-01-25T18:58:20.979372", "exception": false, - "start_time": "2023-01-24T16:52:22.357826", + "start_time": "2023-01-25T18:58:20.937029", "status": "completed" }, "pycharm": { @@ -2085,10 +2085,10 @@ "id": "edd8a43d", "metadata": { "papermill": { - "duration": 0.017592, - "end_time": "2023-01-24T16:52:22.424852", + "duration": 0.021991, + "end_time": "2023-01-25T18:58:21.025502", "exception": false, - "start_time": "2023-01-24T16:52:22.407260", + "start_time": "2023-01-25T18:58:21.003511", "status": "completed" }, "pycharm": { @@ -2105,10 +2105,10 @@ "id": "c701b36a", "metadata": { "papermill": { - "duration": 0.017324, - "end_time": "2023-01-24T16:52:22.460004", + "duration": 0.024163, + "end_time": "2023-01-25T18:58:21.072402", "exception": false, - "start_time": "2023-01-24T16:52:22.442680", + "start_time": "2023-01-25T18:58:21.048239", "status": "completed" }, "pycharm": { @@ -2128,16 +2128,16 @@ "id": "1c31f14c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:52:22.496770Z", - "iopub.status.busy": "2023-01-24T16:52:22.496197Z", - "iopub.status.idle": "2023-01-24T16:52:22.509523Z", - "shell.execute_reply": "2023-01-24T16:52:22.508978Z" + "iopub.execute_input": "2023-01-25T18:58:21.118534Z", + "iopub.status.busy": "2023-01-25T18:58:21.117820Z", + "iopub.status.idle": "2023-01-25T18:58:21.139949Z", + "shell.execute_reply": "2023-01-25T18:58:21.138753Z" }, "papermill": { - "duration": 0.033457, - "end_time": "2023-01-24T16:52:22.510938", + "duration": 0.047858, + "end_time": "2023-01-25T18:58:21.142017", "exception": false, - "start_time": "2023-01-24T16:52:22.477481", + "start_time": "2023-01-25T18:58:21.094159", "status": "completed" }, "pycharm": { @@ -2344,10 +2344,10 @@ "id": "4e0c3fb0", "metadata": { "papermill": { - "duration": 0.059845, - "end_time": "2023-01-24T16:52:22.588786", + "duration": 0.02172, + "end_time": "2023-01-25T18:58:21.187783", "exception": false, - "start_time": "2023-01-24T16:52:22.528941", + "start_time": "2023-01-25T18:58:21.166063", "status": "completed" }, "pycharm": { @@ -2364,10 +2364,10 @@ "id": "a6999a80", "metadata": { "papermill": { - "duration": 0.017717, - "end_time": "2023-01-24T16:52:22.624506", + "duration": 0.021842, + "end_time": "2023-01-25T18:58:21.232859", "exception": false, - "start_time": "2023-01-24T16:52:22.606789", + "start_time": "2023-01-25T18:58:21.211017", "status": "completed" }, "pycharm": { @@ -2387,16 +2387,16 @@ "id": "de44e546", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:52:22.661638Z", - "iopub.status.busy": "2023-01-24T16:52:22.661068Z", - "iopub.status.idle": "2023-01-24T16:52:22.681158Z", - "shell.execute_reply": "2023-01-24T16:52:22.680447Z" + "iopub.execute_input": "2023-01-25T18:58:21.283966Z", + "iopub.status.busy": "2023-01-25T18:58:21.283364Z", + "iopub.status.idle": "2023-01-25T18:58:21.313824Z", + "shell.execute_reply": "2023-01-25T18:58:21.312871Z" }, "papermill": { - "duration": 0.040309, - "end_time": "2023-01-24T16:52:22.682549", + "duration": 0.060056, + "end_time": "2023-01-25T18:58:21.315853", "exception": false, - "start_time": "2023-01-24T16:52:22.642240", + "start_time": "2023-01-25T18:58:21.255797", "status": "completed" }, "pycharm": { @@ -2684,10 +2684,10 @@ "id": "204b5bdd", "metadata": { "papermill": { - "duration": 0.018193, - "end_time": "2023-01-24T16:52:22.718921", + "duration": 0.023618, + "end_time": "2023-01-25T18:58:21.363629", "exception": false, - "start_time": "2023-01-24T16:52:22.700728", + "start_time": "2023-01-25T18:58:21.340011", "status": "completed" }, "pycharm": { @@ -2709,10 +2709,10 @@ "id": "fadc86ca", "metadata": { "papermill": { - "duration": 0.018052, - "end_time": "2023-01-24T16:52:22.755177", + "duration": 0.0221, + "end_time": "2023-01-25T18:58:21.409245", "exception": false, - "start_time": "2023-01-24T16:52:22.737125", + "start_time": "2023-01-25T18:58:21.387145", "status": "completed" }, "pycharm": { @@ -2736,16 +2736,16 @@ "id": "78115f42", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:52:22.792782Z", - "iopub.status.busy": "2023-01-24T16:52:22.792218Z", - "iopub.status.idle": "2023-01-24T16:53:36.504659Z", - "shell.execute_reply": "2023-01-24T16:53:36.503312Z" + "iopub.execute_input": "2023-01-25T18:58:21.455826Z", + "iopub.status.busy": "2023-01-25T18:58:21.455010Z", + "iopub.status.idle": "2023-01-25T19:00:04.208070Z", + "shell.execute_reply": "2023-01-25T19:00:04.206090Z" }, "papermill": { - "duration": 73.73406, - "end_time": "2023-01-24T16:53:36.507119", + "duration": 102.779907, + "end_time": "2023-01-25T19:00:04.211112", "exception": false, - "start_time": "2023-01-24T16:52:22.773059", + "start_time": "2023-01-25T18:58:21.431205", "status": "completed" }, "pycharm": { @@ -2758,7 +2758,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "ecephys_session_1052533639.nwb: 100%|██████████| 2.31G/2.31G [00:57<00:00, 40.3MMB/s]\n" + "ecephys_session_1052533639.nwb: 100%|██████████| 2.31G/2.31G [01:20<00:00, 28.9MMB/s]\n" ] } ], @@ -2772,16 +2772,16 @@ "id": "404eee4e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:36.587020Z", - "iopub.status.busy": "2023-01-24T16:53:36.586302Z", - "iopub.status.idle": "2023-01-24T16:53:36.590366Z", - "shell.execute_reply": "2023-01-24T16:53:36.589835Z" + "iopub.execute_input": "2023-01-25T19:00:04.338437Z", + "iopub.status.busy": "2023-01-25T19:00:04.337973Z", + "iopub.status.idle": "2023-01-25T19:00:04.343752Z", + "shell.execute_reply": "2023-01-25T19:00:04.342922Z" }, "papermill": { - "duration": 0.04537, - "end_time": "2023-01-24T16:53:36.592108", + "duration": 0.070913, + "end_time": "2023-01-25T19:00:04.345737", "exception": false, - "start_time": "2023-01-24T16:53:36.546738", + "start_time": "2023-01-25T19:00:04.274824", "status": "completed" }, "pycharm": { @@ -2808,10 +2808,10 @@ "id": "718398a8", "metadata": { "papermill": { - "duration": 0.037649, - "end_time": "2023-01-24T16:53:36.667325", + "duration": 0.062894, + "end_time": "2023-01-25T19:00:04.474487", "exception": false, - "start_time": "2023-01-24T16:53:36.629676", + "start_time": "2023-01-25T19:00:04.411593", "status": "completed" }, "pycharm": { @@ -2829,16 +2829,16 @@ "id": "e129ce92", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:36.745750Z", - "iopub.status.busy": "2023-01-24T16:53:36.744980Z", - "iopub.status.idle": "2023-01-24T16:53:38.126711Z", - "shell.execute_reply": "2023-01-24T16:53:38.126072Z" + "iopub.execute_input": "2023-01-25T19:00:04.598932Z", + "iopub.status.busy": "2023-01-25T19:00:04.598042Z", + "iopub.status.idle": "2023-01-25T19:00:06.324018Z", + "shell.execute_reply": "2023-01-25T19:00:06.323013Z" }, "papermill": { - "duration": 1.422827, - "end_time": "2023-01-24T16:53:38.128602", + "duration": 1.791227, + "end_time": "2023-01-25T19:00:06.326366", "exception": false, - "start_time": "2023-01-24T16:53:36.705775", + "start_time": "2023-01-25T19:00:04.535139", "status": "completed" }, "pycharm": { @@ -2962,16 +2962,16 @@ "id": "b79a705f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:38.207114Z", - "iopub.status.busy": "2023-01-24T16:53:38.206511Z", - "iopub.status.idle": "2023-01-24T16:53:38.622874Z", - "shell.execute_reply": "2023-01-24T16:53:38.622148Z" + "iopub.execute_input": "2023-01-25T19:00:06.442219Z", + "iopub.status.busy": "2023-01-25T19:00:06.441843Z", + "iopub.status.idle": "2023-01-25T19:00:06.890884Z", + "shell.execute_reply": "2023-01-25T19:00:06.889984Z" }, "papermill": { - "duration": 0.461805, - "end_time": "2023-01-24T16:53:38.628986", + "duration": 0.516397, + "end_time": "2023-01-25T19:00:06.899724", "exception": false, - "start_time": "2023-01-24T16:53:38.167181", + "start_time": "2023-01-25T19:00:06.383327", "status": "completed" }, "pycharm": { @@ -2983,7 +2983,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 24, @@ -3011,10 +3011,10 @@ "id": "20f26ffc", "metadata": { "papermill": { - "duration": 0.041346, - "end_time": "2023-01-24T16:53:38.712137", + "duration": 0.06197, + "end_time": "2023-01-25T19:00:07.086608", "exception": false, - "start_time": "2023-01-24T16:53:38.670791", + "start_time": "2023-01-25T19:00:07.024638", "status": "completed" }, "pycharm": { @@ -3033,10 +3033,10 @@ "id": "073479ed", "metadata": { "papermill": { - "duration": 0.040917, - "end_time": "2023-01-24T16:53:38.794326", + "duration": 0.060443, + "end_time": "2023-01-25T19:00:07.208392", "exception": false, - "start_time": "2023-01-24T16:53:38.753409", + "start_time": "2023-01-25T19:00:07.147949", "status": "completed" }, "pycharm": { @@ -3058,16 +3058,16 @@ "id": "a8dd738e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:38.878453Z", - "iopub.status.busy": "2023-01-24T16:53:38.877725Z", - "iopub.status.idle": "2023-01-24T16:53:38.883672Z", - "shell.execute_reply": "2023-01-24T16:53:38.882992Z" + "iopub.execute_input": "2023-01-25T19:00:07.332610Z", + "iopub.status.busy": "2023-01-25T19:00:07.332220Z", + "iopub.status.idle": "2023-01-25T19:00:07.341673Z", + "shell.execute_reply": "2023-01-25T19:00:07.340622Z" }, "papermill": { - "duration": 0.049616, - "end_time": "2023-01-24T16:53:38.885134", + "duration": 0.075481, + "end_time": "2023-01-25T19:00:07.343907", "exception": false, - "start_time": "2023-01-24T16:53:38.835518", + "start_time": "2023-01-25T19:00:07.268426", "status": "completed" }, "pycharm": { @@ -3090,10 +3090,10 @@ "id": "6c221e33", "metadata": { "papermill": { - "duration": 0.04107, - "end_time": "2023-01-24T16:53:38.967092", + "duration": 0.05872, + "end_time": "2023-01-25T19:00:07.464528", "exception": false, - "start_time": "2023-01-24T16:53:38.926022", + "start_time": "2023-01-25T19:00:07.405808", "status": "completed" }, "pycharm": { @@ -3151,16 +3151,16 @@ "id": "4406b4fe", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:39.050641Z", - "iopub.status.busy": "2023-01-24T16:53:39.049923Z", - "iopub.status.idle": "2023-01-24T16:53:39.054891Z", - "shell.execute_reply": "2023-01-24T16:53:39.054123Z" + "iopub.execute_input": "2023-01-25T19:00:07.588536Z", + "iopub.status.busy": "2023-01-25T19:00:07.588009Z", + "iopub.status.idle": "2023-01-25T19:00:07.594518Z", + "shell.execute_reply": "2023-01-25T19:00:07.593494Z" }, "papermill": { - "duration": 0.0486, - "end_time": "2023-01-24T16:53:39.056740", + "duration": 0.073606, + "end_time": "2023-01-25T19:00:07.598480", "exception": false, - "start_time": "2023-01-24T16:53:39.008140", + "start_time": "2023-01-25T19:00:07.524874", "status": "completed" }, "pycharm": { @@ -3195,16 +3195,16 @@ "id": "85b08e04", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:39.140703Z", - "iopub.status.busy": "2023-01-24T16:53:39.139979Z", - "iopub.status.idle": "2023-01-24T16:53:39.144624Z", - "shell.execute_reply": "2023-01-24T16:53:39.143915Z" + "iopub.execute_input": "2023-01-25T19:00:07.722711Z", + "iopub.status.busy": "2023-01-25T19:00:07.721286Z", + "iopub.status.idle": "2023-01-25T19:00:07.730533Z", + "shell.execute_reply": "2023-01-25T19:00:07.729397Z" }, "papermill": { - "duration": 0.049198, - "end_time": "2023-01-24T16:53:39.147010", + "duration": 0.073128, + "end_time": "2023-01-25T19:00:07.732975", "exception": false, - "start_time": "2023-01-24T16:53:39.097812", + "start_time": "2023-01-25T19:00:07.659847", "status": "completed" }, "pycharm": { @@ -3237,16 +3237,16 @@ "id": "48725404", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:39.231224Z", - "iopub.status.busy": "2023-01-24T16:53:39.230500Z", - "iopub.status.idle": "2023-01-24T16:53:39.236153Z", - "shell.execute_reply": "2023-01-24T16:53:39.235466Z" + "iopub.execute_input": "2023-01-25T19:00:07.867423Z", + "iopub.status.busy": "2023-01-25T19:00:07.866283Z", + "iopub.status.idle": "2023-01-25T19:00:07.873139Z", + "shell.execute_reply": "2023-01-25T19:00:07.872090Z" }, "papermill": { - "duration": 0.049605, - "end_time": "2023-01-24T16:53:39.237649", + "duration": 0.083583, + "end_time": "2023-01-25T19:00:07.876775", "exception": false, - "start_time": "2023-01-24T16:53:39.188044", + "start_time": "2023-01-25T19:00:07.793192", "status": "completed" }, "pycharm": { @@ -3278,10 +3278,10 @@ "id": "baa0a0b9", "metadata": { "papermill": { - "duration": 0.041393, - "end_time": "2023-01-24T16:53:39.320429", + "duration": 0.062888, + "end_time": "2023-01-25T19:00:08.000790", "exception": false, - "start_time": "2023-01-24T16:53:39.279036", + "start_time": "2023-01-25T19:00:07.937902", "status": "completed" }, "pycharm": { @@ -3341,16 +3341,16 @@ "id": "680f6a45", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:39.405001Z", - "iopub.status.busy": "2023-01-24T16:53:39.404438Z", - "iopub.status.idle": "2023-01-24T16:53:39.506048Z", - "shell.execute_reply": "2023-01-24T16:53:39.505196Z" + "iopub.execute_input": "2023-01-25T19:00:08.142655Z", + "iopub.status.busy": "2023-01-25T19:00:08.142063Z", + "iopub.status.idle": "2023-01-25T19:00:08.274175Z", + "shell.execute_reply": "2023-01-25T19:00:08.272834Z" }, "papermill": { - "duration": 0.157147, - "end_time": "2023-01-24T16:53:39.519163", + "duration": 0.211647, + "end_time": "2023-01-25T19:00:08.287700", "exception": false, - "start_time": "2023-01-24T16:53:39.362016", + "start_time": "2023-01-25T19:00:08.076053", "status": "completed" }, "pycharm": { @@ -7722,18 +7722,18 @@ }, "papermill": { "default_parameters": {}, - "duration": 106.692742, - "end_time": "2023-01-24T16:53:40.294645", + "duration": 143.912733, + "end_time": "2023-01-25T19:00:09.394302", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/visual_behavior_neuropixels_data_access.ipynb", - "output_path": "/tmp/tmpwuk86z7e/scratch_nb.ipynb", + "output_path": "/tmp/tmpyo7ik9op/scratch_nb.ipynb", "parameters": { "DOWNLOAD_COMPLETE_DATASET": false, - "output_dir": "/tmp/tmpwuk86z7e", + "output_dir": "/tmp/tmpyo7ik9op", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T16:51:53.601903", + "start_time": "2023-01-25T18:57:45.481569", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_dataset_manifest.ipynb b/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_dataset_manifest.ipynb index 78ee65098..831b583e1 100644 --- a/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_dataset_manifest.ipynb +++ b/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_dataset_manifest.ipynb @@ -5,10 +5,10 @@ "id": "84fd1001", "metadata": { "papermill": { - "duration": 0.013365, - "end_time": "2023-01-24T17:52:04.073222", + "duration": 0.018583, + "end_time": "2023-01-25T20:05:58.682890", "exception": false, - "start_time": "2023-01-24T17:52:04.059857", + "start_time": "2023-01-25T20:05:58.664307", "status": "completed" }, "pycharm": { @@ -25,10 +25,10 @@ "id": "7ccbca6e", "metadata": { "papermill": { - "duration": 0.011689, - "end_time": "2023-01-24T17:52:04.096921", + "duration": 0.014294, + "end_time": "2023-01-25T20:05:58.712812", "exception": false, - "start_time": "2023-01-24T17:52:04.085232", + "start_time": "2023-01-25T20:05:58.698518", "status": "completed" }, "pycharm": { @@ -55,10 +55,10 @@ "id": "6060bfd4", "metadata": { "papermill": { - "duration": 0.011562, - "end_time": "2023-01-24T17:52:04.120133", + "duration": 0.014691, + "end_time": "2023-01-25T20:05:58.742136", "exception": false, - "start_time": "2023-01-24T17:52:04.108571", + "start_time": "2023-01-25T20:05:58.727445", "status": "completed" }, "pycharm": { @@ -75,10 +75,10 @@ "id": "c6cbc613", "metadata": { "papermill": { - "duration": 0.011532, - "end_time": "2023-01-24T17:52:04.143263", + "duration": 0.015265, + "end_time": "2023-01-25T20:05:58.773477", "exception": false, - "start_time": "2023-01-24T17:52:04.131731", + "start_time": "2023-01-25T20:05:58.758212", "status": "completed" }, "pycharm": { @@ -96,16 +96,16 @@ "id": "a4a73988", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:04.168333Z", - "iopub.status.busy": "2023-01-24T17:52:04.167646Z", - "iopub.status.idle": "2023-01-24T17:52:06.502301Z", - "shell.execute_reply": "2023-01-24T17:52:06.501520Z" + "iopub.execute_input": "2023-01-25T20:05:58.806524Z", + "iopub.status.busy": "2023-01-25T20:05:58.805976Z", + "iopub.status.idle": "2023-01-25T20:06:02.079755Z", + "shell.execute_reply": "2023-01-25T20:06:02.078557Z" }, "papermill": { - "duration": 2.349711, - "end_time": "2023-01-24T17:52:06.504572", + "duration": 3.294412, + "end_time": "2023-01-25T20:06:02.083340", "exception": false, - "start_time": "2023-01-24T17:52:04.154861", + "start_time": "2023-01-25T20:05:58.788928", "status": "completed" }, "pycharm": { @@ -118,77 +118,77 @@ "name": "stdout", "output_type": "stream", "text": [ - "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.0)\r\n", - "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", - "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", + "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.1)\r\n", + "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", + "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", + "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", + "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", + "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", + "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", + "Requirement already satisfied: aiohttp==3.7.4 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.7.4)\r\n", "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", + "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", + "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", + "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", + "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", + "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", + "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", + "Requirement already satisfied: requests<3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.28.2)\r\n", "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", - "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", - "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", + "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", + "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", + "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", + "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", - "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", - "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", - "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", - "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", - "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", - "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", - "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", - "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", - "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", - "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", - "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", - "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", - "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", + "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", - "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", - "Requirement already satisfied: aiohttp==3.7.4 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.7.4)\r\n", - "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", - "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", - "Requirement already satisfied: requests<3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.28.2)\r\n", + "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", "Requirement already satisfied: requests-toolbelt<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.10.1)\r\n", - "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", + "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", - "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", - "Requirement already satisfied: yarl<2.0,>=1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (1.8.2)\r\n", - "Requirement already satisfied: chardet<4.0,>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.4)\r\n", + "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", + "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", + "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", + "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (6.0.4)\r\n", "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", + "Requirement already satisfied: yarl<2.0,>=1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (1.8.2)\r\n", "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", - "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (6.0.4)\r\n", "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", - "Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.3.7)\r\n", + "Requirement already satisfied: chardet<4.0,>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.4)\r\n", "Requirement already satisfied: botocore<1.21.0,>=1.20.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (1.20.112)\r\n", + "Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.3.7)\r\n", "Requirement already satisfied: jmespath<1.0.0,>=0.7.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.10.0)\r\n", "Requirement already satisfied: setuptools in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from glymur==0.8.19->allensdk) (56.0.0)\r\n", - "Requirement already satisfied: pyyaml in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (6.0)\r\n", "Requirement already satisfied: marshmallow<4.0,>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (3.19.0)\r\n", + "Requirement already satisfied: pyyaml in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (6.0)\r\n", "Requirement already satisfied: ruamel.yaml<1,>=0.16 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (0.17.21)\r\n", "Requirement already satisfied: jsonschema<5,>=2.6.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (4.17.3)\r\n", "Requirement already satisfied: MarkupSafe>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jinja2>=3.0.0->allensdk) (2.1.2)\r\n", "Requirement already satisfied: cycler>=0.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (0.11.0)\r\n", + "Requirement already satisfied: pyparsing>=2.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (3.0.9)\r\n", "Requirement already satisfied: kiwisolver>=1.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (1.4.4)\r\n", "Requirement already satisfied: pillow>=6.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (9.4.0)\r\n", - "Requirement already satisfied: pyparsing>=2.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (3.0.9)\r\n", "Requirement already satisfied: pytz>=2020.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from pandas>=1.1.5->allensdk) (2022.7.1)\r\n", - "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", - "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.0.1)\r\n", "Requirement already satisfied: idna<4,>=2.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.4)\r\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.0.1)\r\n", + "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", "Requirement already satisfied: certifi>=2017.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (2022.12.7)\r\n", "Requirement already satisfied: distro in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (1.8.0)\r\n", "Requirement already satisfied: wheel>=0.32.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (0.38.4)\r\n", "Requirement already satisfied: packaging in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (23.0)\r\n", - "Requirement already satisfied: imageio>=2.4.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2.25.0)\r\n", "Requirement already satisfied: PyWavelets>=1.1.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (1.4.1)\r\n", "Requirement already satisfied: networkx>=2.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (3.0)\r\n", + "Requirement already satisfied: imageio>=2.4.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2.25.0)\r\n", "Requirement already satisfied: tifffile>=2019.7.26 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2023.1.23.1)\r\n", "Requirement already satisfied: patsy>=0.5.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from statsmodels<=0.13.0->allensdk) (0.5.3)\r\n", "Requirement already satisfied: greenlet!=0.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from sqlalchemy->allensdk) (2.0.1)\r\n", - "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", + "Requirement already satisfied: numexpr>=2.6.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.8.4)\r\n", "Requirement already satisfied: blosc2~=2.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.0.0)\r\n", "Requirement already satisfied: py-cpuinfo in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (9.0.0)\r\n", - "Requirement already satisfied: numexpr>=2.6.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.8.4)\r\n", + "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", "Requirement already satisfied: msgpack in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from blosc2~=2.0.0->tables->allensdk) (1.0.4)\r\n", "Requirement already satisfied: pkgutil-resolve-name>=1.3.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (1.3.10)\r\n", "Requirement already satisfied: importlib-resources>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (5.10.2)\r\n", @@ -207,10 +207,10 @@ "id": "8fdbaa9c", "metadata": { "papermill": { - "duration": 0.012518, - "end_time": "2023-01-24T17:52:06.530005", + "duration": 0.015431, + "end_time": "2023-01-25T20:06:02.116683", "exception": false, - "start_time": "2023-01-24T17:52:06.517487", + "start_time": "2023-01-25T20:06:02.101252", "status": "completed" }, "pycharm": { @@ -227,10 +227,10 @@ "id": "148b467a", "metadata": { "papermill": { - "duration": 0.012282, - "end_time": "2023-01-24T17:52:06.554654", + "duration": 0.017637, + "end_time": "2023-01-25T20:06:02.149426", "exception": false, - "start_time": "2023-01-24T17:52:06.542372", + "start_time": "2023-01-25T20:06:02.131789", "status": "completed" }, "pycharm": { @@ -251,16 +251,16 @@ "id": "b2366c72", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:06.581313Z", - "iopub.status.busy": "2023-01-24T17:52:06.580568Z", - "iopub.status.idle": "2023-01-24T17:52:10.622649Z", - "shell.execute_reply": "2023-01-24T17:52:10.621696Z" + "iopub.execute_input": "2023-01-25T20:06:02.187340Z", + "iopub.status.busy": "2023-01-25T20:06:02.186672Z", + "iopub.status.idle": "2023-01-25T20:06:07.729962Z", + "shell.execute_reply": "2023-01-25T20:06:07.728728Z" }, "papermill": { - "duration": 4.057734, - "end_time": "2023-01-24T17:52:10.624742", + "duration": 5.565714, + "end_time": "2023-01-25T20:06:07.732584", "exception": false, - "start_time": "2023-01-24T17:52:06.567008", + "start_time": "2023-01-25T20:06:02.166870", "status": "completed" }, "pycharm": { @@ -274,81 +274,81 @@ "output_type": "stream", "text": [ "Requirement already satisfied: pip in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (22.3.1)\r\n", - "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.0)\r\n", - "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", - "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", - "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", + "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.1)\r\n", + "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", + "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", + "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", + "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", - "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", - "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", - "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", - "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", + "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", + "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", - "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", - "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", - "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", - "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", - "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", - "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", - "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", - "Requirement already satisfied: requests-toolbelt<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.10.1)\r\n", - "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", - "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", - "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", - "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", - "Requirement already satisfied: requests<3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.28.2)\r\n", - "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", "Requirement already satisfied: aiohttp==3.7.4 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.7.4)\r\n", + "Requirement already satisfied: requests-toolbelt<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.10.1)\r\n", "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", + "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", + "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", - "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", - "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", - "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", - "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", + "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", + "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", + "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", + "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", + "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", + "Requirement already satisfied: requests<3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.28.2)\r\n", + "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", + "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", + "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", - "Requirement already satisfied: chardet<4.0,>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.4)\r\n", - "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (6.0.4)\r\n", + "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", + "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", + "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", + "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", + "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", + "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", + "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", + "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", "Requirement already satisfied: yarl<2.0,>=1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (1.8.2)\r\n", + "Requirement already satisfied: chardet<4.0,>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.4)\r\n", "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", - "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", + "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (6.0.4)\r\n", "Requirement already satisfied: jmespath<1.0.0,>=0.7.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.10.0)\r\n", "Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.3.7)\r\n", "Requirement already satisfied: botocore<1.21.0,>=1.20.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (1.20.112)\r\n", "Requirement already satisfied: setuptools in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from glymur==0.8.19->allensdk) (56.0.0)\r\n", "Requirement already satisfied: marshmallow<4.0,>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (3.19.0)\r\n", "Requirement already satisfied: pyyaml in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (6.0)\r\n", - "Requirement already satisfied: ruamel.yaml<1,>=0.16 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (0.17.21)\r\n", "Requirement already satisfied: jsonschema<5,>=2.6.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (4.17.3)\r\n", + "Requirement already satisfied: ruamel.yaml<1,>=0.16 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (0.17.21)\r\n", "Requirement already satisfied: MarkupSafe>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jinja2>=3.0.0->allensdk) (2.1.2)\r\n", "Requirement already satisfied: pillow>=6.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (9.4.0)\r\n", - "Requirement already satisfied: kiwisolver>=1.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (1.4.4)\r\n", "Requirement already satisfied: pyparsing>=2.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (3.0.9)\r\n", "Requirement already satisfied: cycler>=0.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (0.11.0)\r\n", + "Requirement already satisfied: kiwisolver>=1.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (1.4.4)\r\n", "Requirement already satisfied: pytz>=2020.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from pandas>=1.1.5->allensdk) (2022.7.1)\r\n", "Requirement already satisfied: idna<4,>=2.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.4)\r\n", "Requirement already satisfied: certifi>=2017.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (2022.12.7)\r\n", - "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.0.1)\r\n", - "Requirement already satisfied: packaging in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (23.0)\r\n", + "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", "Requirement already satisfied: wheel>=0.32.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (0.38.4)\r\n", "Requirement already satisfied: distro in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (1.8.0)\r\n", + "Requirement already satisfied: packaging in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (23.0)\r\n", "Requirement already satisfied: tifffile>=2019.7.26 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2023.1.23.1)\r\n", - "Requirement already satisfied: imageio>=2.4.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2.25.0)\r\n", "Requirement already satisfied: networkx>=2.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (3.0)\r\n", + "Requirement already satisfied: imageio>=2.4.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2.25.0)\r\n", "Requirement already satisfied: PyWavelets>=1.1.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (1.4.1)\r\n", "Requirement already satisfied: patsy>=0.5.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from statsmodels<=0.13.0->allensdk) (0.5.3)\r\n", "Requirement already satisfied: greenlet!=0.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from sqlalchemy->allensdk) (2.0.1)\r\n", + "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", "Requirement already satisfied: numexpr>=2.6.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.8.4)\r\n", "Requirement already satisfied: blosc2~=2.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.0.0)\r\n", "Requirement already satisfied: py-cpuinfo in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (9.0.0)\r\n", - "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", "Requirement already satisfied: msgpack in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from blosc2~=2.0.0->tables->allensdk) (1.0.4)\r\n", - "Requirement already satisfied: pkgutil-resolve-name>=1.3.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (1.3.10)\r\n", "Requirement already satisfied: pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (0.19.3)\r\n", "Requirement already satisfied: importlib-resources>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (5.10.2)\r\n", + "Requirement already satisfied: pkgutil-resolve-name>=1.3.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (1.3.10)\r\n", "Requirement already satisfied: ruamel.yaml.clib>=0.2.6 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from ruamel.yaml<1,>=0.16->hdmf<=3.4.7->allensdk) (0.2.7)\r\n", "Requirement already satisfied: zipp>=3.1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from importlib-resources>=1.4.0->jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (3.11.0)\r\n" ] @@ -364,10 +364,10 @@ "id": "4af0fcb7", "metadata": { "papermill": { - "duration": 0.012999, - "end_time": "2023-01-24T17:52:10.651370", + "duration": 0.016258, + "end_time": "2023-01-25T20:06:07.766885", "exception": false, - "start_time": "2023-01-24T17:52:10.638371", + "start_time": "2023-01-25T20:06:07.750627", "status": "completed" }, "pycharm": { @@ -385,16 +385,16 @@ "id": "c8d7a12e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:10.678966Z", - "iopub.status.busy": "2023-01-24T17:52:10.678396Z", - "iopub.status.idle": "2023-01-24T17:52:15.915199Z", - "shell.execute_reply": "2023-01-24T17:52:15.914484Z" + "iopub.execute_input": "2023-01-25T20:06:07.803895Z", + "iopub.status.busy": "2023-01-25T20:06:07.803015Z", + "iopub.status.idle": "2023-01-25T20:06:15.286241Z", + "shell.execute_reply": "2023-01-25T20:06:15.284921Z" }, "papermill": { - "duration": 5.252781, - "end_time": "2023-01-24T17:52:15.917037", + "duration": 7.505228, + "end_time": "2023-01-25T20:06:15.289079", "exception": false, - "start_time": "2023-01-24T17:52:10.664256", + "start_time": "2023-01-25T20:06:07.783851", "status": "completed" }, "pycharm": { @@ -428,10 +428,10 @@ "id": "ecf6f957", "metadata": { "papermill": { - "duration": 0.013317, - "end_time": "2023-01-24T17:52:15.943839", + "duration": 0.017427, + "end_time": "2023-01-25T20:06:15.325815", "exception": false, - "start_time": "2023-01-24T17:52:15.930522", + "start_time": "2023-01-25T20:06:15.308388", "status": "completed" }, "pycharm": { @@ -449,16 +449,16 @@ "id": "cce05847", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:15.971643Z", - "iopub.status.busy": "2023-01-24T17:52:15.970911Z", - "iopub.status.idle": "2023-01-24T17:52:15.974267Z", - "shell.execute_reply": "2023-01-24T17:52:15.973745Z" + "iopub.execute_input": "2023-01-25T20:06:15.362592Z", + "iopub.status.busy": "2023-01-25T20:06:15.361980Z", + "iopub.status.idle": "2023-01-25T20:06:15.366893Z", + "shell.execute_reply": "2023-01-25T20:06:15.365983Z" }, "papermill": { - "duration": 0.018831, - "end_time": "2023-01-24T17:52:15.975661", + "duration": 0.025853, + "end_time": "2023-01-25T20:06:15.368968", "exception": false, - "start_time": "2023-01-24T17:52:15.956830", + "start_time": "2023-01-25T20:06:15.343115", "status": "completed" }, "pycharm": { @@ -480,16 +480,16 @@ "id": "fa821481", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:16.035170Z", - "iopub.status.busy": "2023-01-24T17:52:16.034605Z", - "iopub.status.idle": "2023-01-24T17:52:23.186673Z", - "shell.execute_reply": "2023-01-24T17:52:23.185998Z" + "iopub.execute_input": "2023-01-25T20:06:15.463010Z", + "iopub.status.busy": "2023-01-25T20:06:15.462065Z", + "iopub.status.idle": "2023-01-25T20:06:28.411888Z", + "shell.execute_reply": "2023-01-25T20:06:28.410576Z" }, "papermill": { - "duration": 7.168128, - "end_time": "2023-01-24T17:52:23.188666", + "duration": 12.972029, + "end_time": "2023-01-25T20:06:28.414683", "exception": false, - "start_time": "2023-01-24T17:52:16.020538", + "start_time": "2023-01-25T20:06:15.442654", "status": "completed" }, "pycharm": { @@ -510,15 +510,15 @@ "\n", "To avoid this warning in the future, make sure that\n", "\n", - "/tmp/tmpwcbd3jqm/_downloaded_data.json\n", + "/tmp/tmp_dqe1mbx/_downloaded_data.json\n", "\n", "is not deleted between instantiations of this cache\n", " warnings.warn(msg, MissingLocalManifestWarning)\n", - "ecephys_sessions.csv: 100%|██████████| 64.7k/64.7k [00:00<00:00, 958kMB/s]\n", - "behavior_sessions.csv: 100%|██████████| 562k/562k [00:00<00:00, 4.93MMB/s] \n", - "units.csv: 100%|██████████| 132M/132M [00:03<00:00, 39.0MMB/s]\n", - "probes.csv: 100%|██████████| 130k/130k [00:00<00:00, 1.20MMB/s] \n", - "channels.csv: 100%|██████████| 27.9M/27.9M [00:00<00:00, 33.6MMB/s]\n" + "ecephys_sessions.csv: 100%|██████████| 64.7k/64.7k [00:00<00:00, 1.29MMB/s]\n", + "behavior_sessions.csv: 100%|██████████| 562k/562k [00:00<00:00, 4.88MMB/s] \n", + "units.csv: 100%|██████████| 132M/132M [00:03<00:00, 35.0MMB/s]\n", + "probes.csv: 100%|██████████| 130k/130k [00:00<00:00, 1.56MMB/s]\n", + "channels.csv: 100%|██████████| 27.9M/27.9M [00:00<00:00, 34.9MMB/s]\n" ] } ], @@ -533,16 +533,16 @@ "id": "323bba07", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:23.222728Z", - "iopub.status.busy": "2023-01-24T17:52:23.222174Z", - "iopub.status.idle": "2023-01-24T17:52:25.029788Z", - "shell.execute_reply": "2023-01-24T17:52:25.029120Z" + "iopub.execute_input": "2023-01-25T20:06:28.461470Z", + "iopub.status.busy": "2023-01-25T20:06:28.460706Z", + "iopub.status.idle": "2023-01-25T20:06:30.648192Z", + "shell.execute_reply": "2023-01-25T20:06:30.646878Z" }, "papermill": { - "duration": 1.826634, - "end_time": "2023-01-24T17:52:25.031687", + "duration": 2.212512, + "end_time": "2023-01-25T20:06:30.650924", "exception": false, - "start_time": "2023-01-24T17:52:23.205053", + "start_time": "2023-01-25T20:06:28.438412", "status": "completed" }, "pycharm": { @@ -561,10 +561,10 @@ "id": "95cdc052", "metadata": { "papermill": { - "duration": 0.016038, - "end_time": "2023-01-24T17:52:25.063907", + "duration": 0.020399, + "end_time": "2023-01-25T20:06:30.692796", "exception": false, - "start_time": "2023-01-24T17:52:25.047869", + "start_time": "2023-01-25T20:06:30.672397", "status": "completed" }, "pycharm": { @@ -581,10 +581,10 @@ "id": "1824a707", "metadata": { "papermill": { - "duration": 0.015678, - "end_time": "2023-01-24T17:52:25.095374", + "duration": 0.021309, + "end_time": "2023-01-25T20:06:30.734478", "exception": false, - "start_time": "2023-01-24T17:52:25.079696", + "start_time": "2023-01-25T20:06:30.713169", "status": "completed" }, "pycharm": { @@ -602,10 +602,10 @@ "metadata": { "collapsed": false, "papermill": { - "duration": 0.01546, - "end_time": "2023-01-24T17:52:25.126479", + "duration": 0.021122, + "end_time": "2023-01-25T20:06:30.776134", "exception": false, - "start_time": "2023-01-24T17:52:25.111019", + "start_time": "2023-01-25T20:06:30.755012", "status": "completed" }, "pycharm": { @@ -623,10 +623,10 @@ "metadata": { "collapsed": false, "papermill": { - "duration": 0.015587, - "end_time": "2023-01-24T17:52:25.157604", + "duration": 0.020238, + "end_time": "2023-01-25T20:06:30.818430", "exception": false, - "start_time": "2023-01-24T17:52:25.142017", + "start_time": "2023-01-25T20:06:30.798192", "status": "completed" }, "pycharm": { @@ -661,10 +661,10 @@ "id": "c6b0210f", "metadata": { "papermill": { - "duration": 0.015441, - "end_time": "2023-01-24T17:52:25.188701", + "duration": 0.020281, + "end_time": "2023-01-25T20:06:30.858480", "exception": false, - "start_time": "2023-01-24T17:52:25.173260", + "start_time": "2023-01-25T20:06:30.838199", "status": "completed" }, "pycharm": { @@ -699,10 +699,10 @@ "id": "971bc05f", "metadata": { "papermill": { - "duration": 0.01541, - "end_time": "2023-01-24T17:52:25.219613", + "duration": 0.01969, + "end_time": "2023-01-25T20:06:30.897312", "exception": false, - "start_time": "2023-01-24T17:52:25.204203", + "start_time": "2023-01-25T20:06:30.877622", "status": "completed" }, "pycharm": { @@ -719,10 +719,10 @@ "id": "5bfe5dac", "metadata": { "papermill": { - "duration": 0.015571, - "end_time": "2023-01-24T17:52:25.251043", + "duration": 0.021237, + "end_time": "2023-01-25T20:06:30.938925", "exception": false, - "start_time": "2023-01-24T17:52:25.235472", + "start_time": "2023-01-25T20:06:30.917688", "status": "completed" }, "pycharm": { @@ -742,16 +742,16 @@ "id": "f8813a37", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:25.283942Z", - "iopub.status.busy": "2023-01-24T17:52:25.283371Z", - "iopub.status.idle": "2023-01-24T17:52:25.292155Z", - "shell.execute_reply": "2023-01-24T17:52:25.291630Z" + "iopub.execute_input": "2023-01-25T20:06:30.987389Z", + "iopub.status.busy": "2023-01-25T20:06:30.986701Z", + "iopub.status.idle": "2023-01-25T20:06:30.999893Z", + "shell.execute_reply": "2023-01-25T20:06:30.999014Z" }, "papermill": { - "duration": 0.026899, - "end_time": "2023-01-24T17:52:25.293518", + "duration": 0.040209, + "end_time": "2023-01-25T20:06:31.002236", "exception": false, - "start_time": "2023-01-24T17:52:25.266619", + "start_time": "2023-01-25T20:06:30.962027", "status": "completed" }, "pycharm": { @@ -787,10 +787,10 @@ "id": "31b59454", "metadata": { "papermill": { - "duration": 0.015653, - "end_time": "2023-01-24T17:52:25.325016", + "duration": 0.021131, + "end_time": "2023-01-25T20:06:31.046366", "exception": false, - "start_time": "2023-01-24T17:52:25.309363", + "start_time": "2023-01-25T20:06:31.025235", "status": "completed" }, "pycharm": { @@ -809,10 +809,10 @@ "id": "3004173a", "metadata": { "papermill": { - "duration": 0.015591, - "end_time": "2023-01-24T17:52:25.356301", + "duration": 0.023815, + "end_time": "2023-01-25T20:06:31.093656", "exception": false, - "start_time": "2023-01-24T17:52:25.340710", + "start_time": "2023-01-25T20:06:31.069841", "status": "completed" }, "pycharm": { @@ -831,10 +831,10 @@ "id": "f7ec63af", "metadata": { "papermill": { - "duration": 0.015558, - "end_time": "2023-01-24T17:52:25.387517", + "duration": 0.020112, + "end_time": "2023-01-25T20:06:31.134565", "exception": false, - "start_time": "2023-01-24T17:52:25.371959", + "start_time": "2023-01-25T20:06:31.114453", "status": "completed" }, "pycharm": { @@ -860,16 +860,16 @@ "id": "725bbf5d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:25.420506Z", - "iopub.status.busy": "2023-01-24T17:52:25.419942Z", - "iopub.status.idle": "2023-01-24T17:52:25.439421Z", - "shell.execute_reply": "2023-01-24T17:52:25.438880Z" + "iopub.execute_input": "2023-01-25T20:06:31.177250Z", + "iopub.status.busy": "2023-01-25T20:06:31.176675Z", + "iopub.status.idle": "2023-01-25T20:06:31.205821Z", + "shell.execute_reply": "2023-01-25T20:06:31.204800Z" }, "papermill": { - "duration": 0.037638, - "end_time": "2023-01-24T17:52:25.440810", + "duration": 0.054621, + "end_time": "2023-01-25T20:06:31.210350", "exception": false, - "start_time": "2023-01-24T17:52:25.403172", + "start_time": "2023-01-25T20:06:31.155729", "status": "completed" }, "pycharm": { @@ -962,10 +962,10 @@ "id": "6047f34c", "metadata": { "papermill": { - "duration": 0.015863, - "end_time": "2023-01-24T17:52:25.472922", + "duration": 0.021447, + "end_time": "2023-01-25T20:06:31.253103", "exception": false, - "start_time": "2023-01-24T17:52:25.457059", + "start_time": "2023-01-25T20:06:31.231656", "status": "completed" }, "pycharm": { @@ -986,10 +986,10 @@ "id": "750f092e", "metadata": { "papermill": { - "duration": 0.015831, - "end_time": "2023-01-24T17:52:25.504543", + "duration": 0.026032, + "end_time": "2023-01-25T20:06:31.301150", "exception": false, - "start_time": "2023-01-24T17:52:25.488712", + "start_time": "2023-01-25T20:06:31.275118", "status": "completed" }, "pycharm": { @@ -1017,16 +1017,16 @@ "id": "46608095", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:25.537938Z", - "iopub.status.busy": "2023-01-24T17:52:25.537380Z", - "iopub.status.idle": "2023-01-24T17:52:25.541712Z", - "shell.execute_reply": "2023-01-24T17:52:25.541160Z" + "iopub.execute_input": "2023-01-25T20:06:31.345930Z", + "iopub.status.busy": "2023-01-25T20:06:31.344908Z", + "iopub.status.idle": "2023-01-25T20:06:31.351767Z", + "shell.execute_reply": "2023-01-25T20:06:31.350891Z" }, "papermill": { - "duration": 0.022679, - "end_time": "2023-01-24T17:52:25.543080", + "duration": 0.031028, + "end_time": "2023-01-25T20:06:31.353705", "exception": false, - "start_time": "2023-01-24T17:52:25.520401", + "start_time": "2023-01-25T20:06:31.322677", "status": "completed" }, "pycharm": { @@ -1057,16 +1057,16 @@ "id": "21c34235", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:25.576703Z", - "iopub.status.busy": "2023-01-24T17:52:25.576162Z", - "iopub.status.idle": "2023-01-24T17:52:25.589737Z", - "shell.execute_reply": "2023-01-24T17:52:25.589072Z" + "iopub.execute_input": "2023-01-25T20:06:31.398563Z", + "iopub.status.busy": "2023-01-25T20:06:31.397819Z", + "iopub.status.idle": "2023-01-25T20:06:31.419232Z", + "shell.execute_reply": "2023-01-25T20:06:31.418060Z" }, "papermill": { - "duration": 0.032025, - "end_time": "2023-01-24T17:52:25.591184", + "duration": 0.046658, + "end_time": "2023-01-25T20:06:31.421936", "exception": false, - "start_time": "2023-01-24T17:52:25.559159", + "start_time": "2023-01-25T20:06:31.375278", "status": "completed" }, "pycharm": { @@ -1149,10 +1149,10 @@ "id": "81d5812b", "metadata": { "papermill": { - "duration": 0.016429, - "end_time": "2023-01-24T17:52:25.624280", + "duration": 0.02138, + "end_time": "2023-01-25T20:06:31.464982", "exception": false, - "start_time": "2023-01-24T17:52:25.607851", + "start_time": "2023-01-25T20:06:31.443602", "status": "completed" }, "pycharm": { @@ -1170,16 +1170,16 @@ "id": "1f2aa094", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:25.658081Z", - "iopub.status.busy": "2023-01-24T17:52:25.657525Z", - "iopub.status.idle": "2023-01-24T17:52:25.670815Z", - "shell.execute_reply": "2023-01-24T17:52:25.670151Z" + "iopub.execute_input": "2023-01-25T20:06:31.511039Z", + "iopub.status.busy": "2023-01-25T20:06:31.510017Z", + "iopub.status.idle": "2023-01-25T20:06:31.530117Z", + "shell.execute_reply": "2023-01-25T20:06:31.528687Z" }, "papermill": { - "duration": 0.031971, - "end_time": "2023-01-24T17:52:25.672328", + "duration": 0.045922, + "end_time": "2023-01-25T20:06:31.532424", "exception": false, - "start_time": "2023-01-24T17:52:25.640357", + "start_time": "2023-01-25T20:06:31.486502", "status": "completed" }, "pycharm": { @@ -1262,10 +1262,10 @@ "id": "c17c9eca", "metadata": { "papermill": { - "duration": 0.016223, - "end_time": "2023-01-24T17:52:25.705313", + "duration": 0.021909, + "end_time": "2023-01-25T20:06:31.576863", "exception": false, - "start_time": "2023-01-24T17:52:25.689090", + "start_time": "2023-01-25T20:06:31.554954", "status": "completed" }, "pycharm": { @@ -1283,16 +1283,16 @@ "id": "b6db4663", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:25.739271Z", - "iopub.status.busy": "2023-01-24T17:52:25.738693Z", - "iopub.status.idle": "2023-01-24T17:52:25.742920Z", - "shell.execute_reply": "2023-01-24T17:52:25.742338Z" + "iopub.execute_input": "2023-01-25T20:06:31.621324Z", + "iopub.status.busy": "2023-01-25T20:06:31.620689Z", + "iopub.status.idle": "2023-01-25T20:06:31.626457Z", + "shell.execute_reply": "2023-01-25T20:06:31.625608Z" }, "papermill": { - "duration": 0.022807, - "end_time": "2023-01-24T17:52:25.744264", + "duration": 0.031049, + "end_time": "2023-01-25T20:06:31.629155", "exception": false, - "start_time": "2023-01-24T17:52:25.721457", + "start_time": "2023-01-25T20:06:31.598106", "status": "completed" }, "pycharm": { @@ -1321,10 +1321,10 @@ "id": "4509bdab", "metadata": { "papermill": { - "duration": 0.016331, - "end_time": "2023-01-24T17:52:25.777052", + "duration": 0.022101, + "end_time": "2023-01-25T20:06:31.674716", "exception": false, - "start_time": "2023-01-24T17:52:25.760721", + "start_time": "2023-01-25T20:06:31.652615", "status": "completed" }, "pycharm": { @@ -1345,16 +1345,16 @@ "id": "f175a684", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:25.811526Z", - "iopub.status.busy": "2023-01-24T17:52:25.810974Z", - "iopub.status.idle": "2023-01-24T17:52:25.818220Z", - "shell.execute_reply": "2023-01-24T17:52:25.817693Z" + "iopub.execute_input": "2023-01-25T20:06:31.721421Z", + "iopub.status.busy": "2023-01-25T20:06:31.720704Z", + "iopub.status.idle": "2023-01-25T20:06:31.731588Z", + "shell.execute_reply": "2023-01-25T20:06:31.730571Z" }, "papermill": { - "duration": 0.026123, - "end_time": "2023-01-24T17:52:25.819752", + "duration": 0.038683, + "end_time": "2023-01-25T20:06:31.735026", "exception": false, - "start_time": "2023-01-24T17:52:25.793629", + "start_time": "2023-01-25T20:06:31.696343", "status": "completed" }, "pycharm": { @@ -1388,10 +1388,10 @@ "id": "cdaf37fb", "metadata": { "papermill": { - "duration": 0.016253, - "end_time": "2023-01-24T17:52:25.852508", + "duration": 0.020662, + "end_time": "2023-01-25T20:06:31.777817", "exception": false, - "start_time": "2023-01-24T17:52:25.836255", + "start_time": "2023-01-25T20:06:31.757155", "status": "completed" }, "pycharm": { @@ -1408,10 +1408,10 @@ "id": "a978bc7e", "metadata": { "papermill": { - "duration": 0.016331, - "end_time": "2023-01-24T17:52:25.885232", + "duration": 0.021011, + "end_time": "2023-01-25T20:06:31.819859", "exception": false, - "start_time": "2023-01-24T17:52:25.868901", + "start_time": "2023-01-25T20:06:31.798848", "status": "completed" }, "pycharm": { @@ -1428,10 +1428,10 @@ "id": "b618d684", "metadata": { "papermill": { - "duration": 0.01625, - "end_time": "2023-01-24T17:52:25.918076", + "duration": 0.022433, + "end_time": "2023-01-25T20:06:31.864675", "exception": false, - "start_time": "2023-01-24T17:52:25.901826", + "start_time": "2023-01-25T20:06:31.842242", "status": "completed" }, "pycharm": { @@ -1448,10 +1448,10 @@ "id": "c4135fb8", "metadata": { "papermill": { - "duration": 0.016239, - "end_time": "2023-01-24T17:52:25.950551", + "duration": 0.023321, + "end_time": "2023-01-25T20:06:31.909471", "exception": false, - "start_time": "2023-01-24T17:52:25.934312", + "start_time": "2023-01-25T20:06:31.886150", "status": "completed" }, "pycharm": { @@ -1469,16 +1469,16 @@ "id": "a8c287ca", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:25.985147Z", - "iopub.status.busy": "2023-01-24T17:52:25.984583Z", - "iopub.status.idle": "2023-01-24T17:52:25.998544Z", - "shell.execute_reply": "2023-01-24T17:52:25.997996Z" + "iopub.execute_input": "2023-01-25T20:06:31.957831Z", + "iopub.status.busy": "2023-01-25T20:06:31.955715Z", + "iopub.status.idle": "2023-01-25T20:06:31.987874Z", + "shell.execute_reply": "2023-01-25T20:06:31.986784Z" }, "papermill": { - "duration": 0.033373, - "end_time": "2023-01-24T17:52:26.000161", + "duration": 0.059489, + "end_time": "2023-01-25T20:06:31.991028", "exception": false, - "start_time": "2023-01-24T17:52:25.966788", + "start_time": "2023-01-25T20:06:31.931539", "status": "completed" }, "pycharm": { @@ -1730,10 +1730,10 @@ "id": "f1649125", "metadata": { "papermill": { - "duration": 0.016572, - "end_time": "2023-01-24T17:52:26.033711", + "duration": 0.025601, + "end_time": "2023-01-25T20:06:32.042208", "exception": false, - "start_time": "2023-01-24T17:52:26.017139", + "start_time": "2023-01-25T20:06:32.016607", "status": "completed" }, "pycharm": { @@ -1751,16 +1751,16 @@ "id": "c7e6d188", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:26.068793Z", - "iopub.status.busy": "2023-01-24T17:52:26.068236Z", - "iopub.status.idle": "2023-01-24T17:52:26.073100Z", - "shell.execute_reply": "2023-01-24T17:52:26.072424Z" + "iopub.execute_input": "2023-01-25T20:06:32.090579Z", + "iopub.status.busy": "2023-01-25T20:06:32.089953Z", + "iopub.status.idle": "2023-01-25T20:06:32.097033Z", + "shell.execute_reply": "2023-01-25T20:06:32.096127Z" }, "papermill": { - "duration": 0.024245, - "end_time": "2023-01-24T17:52:26.074558", + "duration": 0.032979, + "end_time": "2023-01-25T20:06:32.099070", "exception": false, - "start_time": "2023-01-24T17:52:26.050313", + "start_time": "2023-01-25T20:06:32.066091", "status": "completed" }, "pycharm": { @@ -1794,10 +1794,10 @@ "id": "d9d10a22", "metadata": { "papermill": { - "duration": 0.016778, - "end_time": "2023-01-24T17:52:26.108138", + "duration": 0.022248, + "end_time": "2023-01-25T20:06:32.144136", "exception": false, - "start_time": "2023-01-24T17:52:26.091360", + "start_time": "2023-01-25T20:06:32.121888", "status": "completed" }, "pycharm": { @@ -1815,16 +1815,16 @@ "id": "d373b2df", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:26.143529Z", - "iopub.status.busy": "2023-01-24T17:52:26.142983Z", - "iopub.status.idle": "2023-01-24T17:52:26.147455Z", - "shell.execute_reply": "2023-01-24T17:52:26.146908Z" + "iopub.execute_input": "2023-01-25T20:06:32.192544Z", + "iopub.status.busy": "2023-01-25T20:06:32.192155Z", + "iopub.status.idle": "2023-01-25T20:06:32.198223Z", + "shell.execute_reply": "2023-01-25T20:06:32.197543Z" }, "papermill": { - "duration": 0.023628, - "end_time": "2023-01-24T17:52:26.148807", + "duration": 0.032928, + "end_time": "2023-01-25T20:06:32.200838", "exception": false, - "start_time": "2023-01-24T17:52:26.125179", + "start_time": "2023-01-25T20:06:32.167910", "status": "completed" }, "pycharm": { @@ -1857,10 +1857,10 @@ "id": "e4320df8", "metadata": { "papermill": { - "duration": 0.016751, - "end_time": "2023-01-24T17:52:26.182328", + "duration": 0.02254, + "end_time": "2023-01-25T20:06:32.247058", "exception": false, - "start_time": "2023-01-24T17:52:26.165577", + "start_time": "2023-01-25T20:06:32.224518", "status": "completed" }, "pycharm": { @@ -1877,10 +1877,10 @@ "id": "d66f8929", "metadata": { "papermill": { - "duration": 0.016805, - "end_time": "2023-01-24T17:52:26.216022", + "duration": 0.021454, + "end_time": "2023-01-25T20:06:32.289878", "exception": false, - "start_time": "2023-01-24T17:52:26.199217", + "start_time": "2023-01-25T20:06:32.268424", "status": "completed" }, "pycharm": { @@ -1898,16 +1898,16 @@ "id": "f9905150", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:26.251821Z", - "iopub.status.busy": "2023-01-24T17:52:26.251270Z", - "iopub.status.idle": "2023-01-24T17:52:26.255505Z", - "shell.execute_reply": "2023-01-24T17:52:26.254958Z" + "iopub.execute_input": "2023-01-25T20:06:32.335950Z", + "iopub.status.busy": "2023-01-25T20:06:32.334988Z", + "iopub.status.idle": "2023-01-25T20:06:32.341030Z", + "shell.execute_reply": "2023-01-25T20:06:32.340183Z" }, "papermill": { - "duration": 0.023898, - "end_time": "2023-01-24T17:52:26.256931", + "duration": 0.030612, + "end_time": "2023-01-25T20:06:32.342849", "exception": false, - "start_time": "2023-01-24T17:52:26.233033", + "start_time": "2023-01-25T20:06:32.312237", "status": "completed" }, "pycharm": { @@ -1933,10 +1933,10 @@ "id": "7ae61006", "metadata": { "papermill": { - "duration": 0.016784, - "end_time": "2023-01-24T17:52:26.290598", + "duration": 0.022252, + "end_time": "2023-01-25T20:06:32.388289", "exception": false, - "start_time": "2023-01-24T17:52:26.273814", + "start_time": "2023-01-25T20:06:32.366037", "status": "completed" }, "pycharm": { @@ -1953,10 +1953,10 @@ "id": "9e353e9a", "metadata": { "papermill": { - "duration": 0.016744, - "end_time": "2023-01-24T17:52:26.324072", + "duration": 0.021536, + "end_time": "2023-01-25T20:06:32.432079", "exception": false, - "start_time": "2023-01-24T17:52:26.307328", + "start_time": "2023-01-25T20:06:32.410543", "status": "completed" }, "pycharm": { @@ -1973,10 +1973,10 @@ "id": "8ec507a0", "metadata": { "papermill": { - "duration": 0.016663, - "end_time": "2023-01-24T17:52:26.357860", + "duration": 0.021285, + "end_time": "2023-01-25T20:06:32.475590", "exception": false, - "start_time": "2023-01-24T17:52:26.341197", + "start_time": "2023-01-25T20:06:32.454305", "status": "completed" }, "pycharm": { @@ -1994,16 +1994,16 @@ "id": "9d8c844e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:26.393000Z", - "iopub.status.busy": "2023-01-24T17:52:26.392450Z", - "iopub.status.idle": "2023-01-24T17:52:26.396985Z", - "shell.execute_reply": "2023-01-24T17:52:26.396339Z" + "iopub.execute_input": "2023-01-25T20:06:32.522276Z", + "iopub.status.busy": "2023-01-25T20:06:32.521323Z", + "iopub.status.idle": "2023-01-25T20:06:32.527870Z", + "shell.execute_reply": "2023-01-25T20:06:32.526844Z" }, "papermill": { - "duration": 0.023881, - "end_time": "2023-01-24T17:52:26.398441", + "duration": 0.032866, + "end_time": "2023-01-25T20:06:32.530586", "exception": false, - "start_time": "2023-01-24T17:52:26.374560", + "start_time": "2023-01-25T20:06:32.497720", "status": "completed" }, "pycharm": { @@ -2050,10 +2050,10 @@ "id": "3cb95e27", "metadata": { "papermill": { - "duration": 0.016859, - "end_time": "2023-01-24T17:52:26.432211", + "duration": 0.021914, + "end_time": "2023-01-25T20:06:32.579485", "exception": false, - "start_time": "2023-01-24T17:52:26.415352", + "start_time": "2023-01-25T20:06:32.557571", "status": "completed" }, "pycharm": { @@ -2070,10 +2070,10 @@ "id": "39623127", "metadata": { "papermill": { - "duration": 0.016824, - "end_time": "2023-01-24T17:52:26.466055", + "duration": 0.024109, + "end_time": "2023-01-25T20:06:32.626833", "exception": false, - "start_time": "2023-01-24T17:52:26.449231", + "start_time": "2023-01-25T20:06:32.602724", "status": "completed" }, "pycharm": { @@ -2092,10 +2092,10 @@ "id": "b69623b4", "metadata": { "papermill": { - "duration": 0.016839, - "end_time": "2023-01-24T17:52:26.499752", + "duration": 0.02296, + "end_time": "2023-01-25T20:06:32.671565", "exception": false, - "start_time": "2023-01-24T17:52:26.482913", + "start_time": "2023-01-25T20:06:32.648605", "status": "completed" }, "pycharm": { @@ -2112,10 +2112,10 @@ "id": "ce4164df", "metadata": { "papermill": { - "duration": 0.016937, - "end_time": "2023-01-24T17:52:26.533622", + "duration": 0.023167, + "end_time": "2023-01-25T20:06:32.717300", "exception": false, - "start_time": "2023-01-24T17:52:26.516685", + "start_time": "2023-01-25T20:06:32.694133", "status": "completed" }, "pycharm": { @@ -2135,16 +2135,16 @@ "id": "f23c30f5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:26.569741Z", - "iopub.status.busy": "2023-01-24T17:52:26.569190Z", - "iopub.status.idle": "2023-01-24T17:52:26.584569Z", - "shell.execute_reply": "2023-01-24T17:52:26.583981Z" + "iopub.execute_input": "2023-01-25T20:06:32.766123Z", + "iopub.status.busy": "2023-01-25T20:06:32.765372Z", + "iopub.status.idle": "2023-01-25T20:06:32.788941Z", + "shell.execute_reply": "2023-01-25T20:06:32.788058Z" }, "papermill": { - "duration": 0.035101, - "end_time": "2023-01-24T17:52:26.586031", + "duration": 0.050859, + "end_time": "2023-01-25T20:06:32.791018", "exception": false, - "start_time": "2023-01-24T17:52:26.550930", + "start_time": "2023-01-25T20:06:32.740159", "status": "completed" }, "pycharm": { @@ -2572,10 +2572,10 @@ "id": "67a24e4b", "metadata": { "papermill": { - "duration": 0.017579, - "end_time": "2023-01-24T17:52:26.621230", + "duration": 0.022868, + "end_time": "2023-01-25T20:06:32.838113", "exception": false, - "start_time": "2023-01-24T17:52:26.603651", + "start_time": "2023-01-25T20:06:32.815245", "status": "completed" }, "pycharm": { @@ -2596,10 +2596,10 @@ "id": "3ebefb4a", "metadata": { "papermill": { - "duration": 0.017463, - "end_time": "2023-01-24T17:52:26.656249", + "duration": 0.021681, + "end_time": "2023-01-25T20:06:32.883464", "exception": false, - "start_time": "2023-01-24T17:52:26.638786", + "start_time": "2023-01-25T20:06:32.861783", "status": "completed" }, "pycharm": { @@ -2616,10 +2616,10 @@ "id": "334f45f1", "metadata": { "papermill": { - "duration": 0.017786, - "end_time": "2023-01-24T17:52:26.692506", + "duration": 0.022289, + "end_time": "2023-01-25T20:06:32.928555", "exception": false, - "start_time": "2023-01-24T17:52:26.674720", + "start_time": "2023-01-25T20:06:32.906266", "status": "completed" }, "pycharm": { @@ -2637,16 +2637,16 @@ "id": "db5de461", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:26.729271Z", - "iopub.status.busy": "2023-01-24T17:52:26.728703Z", - "iopub.status.idle": "2023-01-24T17:52:26.749395Z", - "shell.execute_reply": "2023-01-24T17:52:26.748692Z" + "iopub.execute_input": "2023-01-25T20:06:32.975356Z", + "iopub.status.busy": "2023-01-25T20:06:32.974510Z", + "iopub.status.idle": "2023-01-25T20:06:33.005243Z", + "shell.execute_reply": "2023-01-25T20:06:33.004310Z" }, "papermill": { - "duration": 0.040975, - "end_time": "2023-01-24T17:52:26.751040", + "duration": 0.057696, + "end_time": "2023-01-25T20:06:33.008717", "exception": false, - "start_time": "2023-01-24T17:52:26.710065", + "start_time": "2023-01-25T20:06:32.951021", "status": "completed" }, "pycharm": { @@ -2933,10 +2933,10 @@ "id": "23864f0a", "metadata": { "papermill": { - "duration": 0.017923, - "end_time": "2023-01-24T17:52:26.787201", + "duration": 0.030894, + "end_time": "2023-01-25T20:06:33.068919", "exception": false, - "start_time": "2023-01-24T17:52:26.769278", + "start_time": "2023-01-25T20:06:33.038025", "status": "completed" }, "pycharm": { @@ -3003,16 +3003,16 @@ "id": "c0032919", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:26.825151Z", - "iopub.status.busy": "2023-01-24T17:52:26.824570Z", - "iopub.status.idle": "2023-01-24T17:52:26.877828Z", - "shell.execute_reply": "2023-01-24T17:52:26.877128Z" + "iopub.execute_input": "2023-01-25T20:06:33.119535Z", + "iopub.status.busy": "2023-01-25T20:06:33.118283Z", + "iopub.status.idle": "2023-01-25T20:06:33.196450Z", + "shell.execute_reply": "2023-01-25T20:06:33.195353Z" }, "papermill": { - "duration": 0.074003, - "end_time": "2023-01-24T17:52:26.879444", + "duration": 0.106805, + "end_time": "2023-01-25T20:06:33.199752", "exception": false, - "start_time": "2023-01-24T17:52:26.805441", + "start_time": "2023-01-25T20:06:33.092947", "status": "completed" }, "pycharm": { @@ -3293,16 +3293,16 @@ "id": "0401403b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:26.918606Z", - "iopub.status.busy": "2023-01-24T17:52:26.918024Z", - "iopub.status.idle": "2023-01-24T17:52:26.922445Z", - "shell.execute_reply": "2023-01-24T17:52:26.921890Z" + "iopub.execute_input": "2023-01-25T20:06:33.252357Z", + "iopub.status.busy": "2023-01-25T20:06:33.250947Z", + "iopub.status.idle": "2023-01-25T20:06:33.257653Z", + "shell.execute_reply": "2023-01-25T20:06:33.256689Z" }, "papermill": { - "duration": 0.025427, - "end_time": "2023-01-24T17:52:26.923891", + "duration": 0.035358, + "end_time": "2023-01-25T20:06:33.259687", "exception": false, - "start_time": "2023-01-24T17:52:26.898464", + "start_time": "2023-01-25T20:06:33.224329", "status": "completed" }, "pycharm": { @@ -3330,10 +3330,10 @@ "id": "dea73cb9", "metadata": { "papermill": { - "duration": 0.018393, - "end_time": "2023-01-24T17:52:26.960873", + "duration": 0.023485, + "end_time": "2023-01-25T20:06:33.307343", "exception": false, - "start_time": "2023-01-24T17:52:26.942480", + "start_time": "2023-01-25T20:06:33.283858", "status": "completed" }, "pycharm": { @@ -3351,16 +3351,16 @@ "id": "af24185d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:26.999377Z", - "iopub.status.busy": "2023-01-24T17:52:26.998806Z", - "iopub.status.idle": "2023-01-24T17:52:27.005093Z", - "shell.execute_reply": "2023-01-24T17:52:27.004455Z" + "iopub.execute_input": "2023-01-25T20:06:33.358114Z", + "iopub.status.busy": "2023-01-25T20:06:33.357204Z", + "iopub.status.idle": "2023-01-25T20:06:33.366092Z", + "shell.execute_reply": "2023-01-25T20:06:33.365221Z" }, "papermill": { - "duration": 0.027053, - "end_time": "2023-01-24T17:52:27.006498", + "duration": 0.036556, + "end_time": "2023-01-25T20:06:33.368018", "exception": false, - "start_time": "2023-01-24T17:52:26.979445", + "start_time": "2023-01-25T20:06:33.331462", "status": "completed" }, "pycharm": { @@ -3391,10 +3391,10 @@ "id": "b9ceea85", "metadata": { "papermill": { - "duration": 0.018149, - "end_time": "2023-01-24T17:52:27.042964", + "duration": 0.0252, + "end_time": "2023-01-25T20:06:33.417087", "exception": false, - "start_time": "2023-01-24T17:52:27.024815", + "start_time": "2023-01-25T20:06:33.391887", "status": "completed" }, "pycharm": { @@ -3412,16 +3412,16 @@ "id": "d1b63077", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:27.081471Z", - "iopub.status.busy": "2023-01-24T17:52:27.080912Z", - "iopub.status.idle": "2023-01-24T17:52:27.092051Z", - "shell.execute_reply": "2023-01-24T17:52:27.091371Z" + "iopub.execute_input": "2023-01-25T20:06:33.465770Z", + "iopub.status.busy": "2023-01-25T20:06:33.464927Z", + "iopub.status.idle": "2023-01-25T20:06:33.480320Z", + "shell.execute_reply": "2023-01-25T20:06:33.479338Z" }, "papermill": { - "duration": 0.032301, - "end_time": "2023-01-24T17:52:27.093588", + "duration": 0.041877, + "end_time": "2023-01-25T20:06:33.482373", "exception": false, - "start_time": "2023-01-24T17:52:27.061287", + "start_time": "2023-01-25T20:06:33.440496", "status": "completed" }, "pycharm": { @@ -3594,10 +3594,10 @@ "id": "cb7e65fb", "metadata": { "papermill": { - "duration": 0.018431, - "end_time": "2023-01-24T17:52:27.130961", + "duration": 0.024663, + "end_time": "2023-01-25T20:06:33.532460", "exception": false, - "start_time": "2023-01-24T17:52:27.112530", + "start_time": "2023-01-25T20:06:33.507797", "status": "completed" }, "pycharm": { @@ -3615,16 +3615,16 @@ "id": "752ede51", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:27.169551Z", - "iopub.status.busy": "2023-01-24T17:52:27.168995Z", - "iopub.status.idle": "2023-01-24T17:52:27.181343Z", - "shell.execute_reply": "2023-01-24T17:52:27.180820Z" + "iopub.execute_input": "2023-01-25T20:06:33.585995Z", + "iopub.status.busy": "2023-01-25T20:06:33.585237Z", + "iopub.status.idle": "2023-01-25T20:06:33.603998Z", + "shell.execute_reply": "2023-01-25T20:06:33.603048Z" }, "papermill": { - "duration": 0.033388, - "end_time": "2023-01-24T17:52:27.182791", + "duration": 0.047284, + "end_time": "2023-01-25T20:06:33.606017", "exception": false, - "start_time": "2023-01-24T17:52:27.149403", + "start_time": "2023-01-25T20:06:33.558733", "status": "completed" }, "pycharm": { @@ -3822,16 +3822,16 @@ "id": "aee59ad0", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:27.222162Z", - "iopub.status.busy": "2023-01-24T17:52:27.221409Z", - "iopub.status.idle": "2023-01-24T17:52:27.226592Z", - "shell.execute_reply": "2023-01-24T17:52:27.225929Z" + "iopub.execute_input": "2023-01-25T20:06:33.667600Z", + "iopub.status.busy": "2023-01-25T20:06:33.666577Z", + "iopub.status.idle": "2023-01-25T20:06:33.676900Z", + "shell.execute_reply": "2023-01-25T20:06:33.675211Z" }, "papermill": { - "duration": 0.026456, - "end_time": "2023-01-24T17:52:27.228076", + "duration": 0.047803, + "end_time": "2023-01-25T20:06:33.680258", "exception": false, - "start_time": "2023-01-24T17:52:27.201620", + "start_time": "2023-01-25T20:06:33.632455", "status": "completed" }, "pycharm": { @@ -3860,10 +3860,10 @@ "id": "62499be0", "metadata": { "papermill": { - "duration": 0.019222, - "end_time": "2023-01-24T17:52:27.266496", + "duration": 0.026211, + "end_time": "2023-01-25T20:06:33.735577", "exception": false, - "start_time": "2023-01-24T17:52:27.247274", + "start_time": "2023-01-25T20:06:33.709366", "status": "completed" }, "pycharm": { @@ -3881,16 +3881,16 @@ "id": "3a89bd66", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:27.306567Z", - "iopub.status.busy": "2023-01-24T17:52:27.305766Z", - "iopub.status.idle": "2023-01-24T17:52:27.341716Z", - "shell.execute_reply": "2023-01-24T17:52:27.341064Z" + "iopub.execute_input": "2023-01-25T20:06:33.787818Z", + "iopub.status.busy": "2023-01-25T20:06:33.787414Z", + "iopub.status.idle": "2023-01-25T20:06:33.877520Z", + "shell.execute_reply": "2023-01-25T20:06:33.876338Z" }, "papermill": { - "duration": 0.058223, - "end_time": "2023-01-24T17:52:27.343580", + "duration": 0.118911, + "end_time": "2023-01-25T20:06:33.880099", "exception": false, - "start_time": "2023-01-24T17:52:27.285357", + "start_time": "2023-01-25T20:06:33.761188", "status": "completed" }, "pycharm": { @@ -3909,10 +3909,10 @@ "id": "20b0ab53", "metadata": { "papermill": { - "duration": 0.01909, - "end_time": "2023-01-24T17:52:27.381894", + "duration": 0.024214, + "end_time": "2023-01-25T20:06:33.930509", "exception": false, - "start_time": "2023-01-24T17:52:27.362804", + "start_time": "2023-01-25T20:06:33.906295", "status": "completed" }, "pycharm": { @@ -3930,16 +3930,16 @@ "id": "94f23a3e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T17:52:27.422168Z", - "iopub.status.busy": "2023-01-24T17:52:27.421618Z", - "iopub.status.idle": "2023-01-24T17:52:27.891836Z", - "shell.execute_reply": "2023-01-24T17:52:27.891079Z" + "iopub.execute_input": "2023-01-25T20:06:33.986937Z", + "iopub.status.busy": "2023-01-25T20:06:33.985951Z", + "iopub.status.idle": "2023-01-25T20:06:34.689432Z", + "shell.execute_reply": "2023-01-25T20:06:34.688271Z" }, "papermill": { - "duration": 0.496372, - "end_time": "2023-01-24T17:52:27.897662", + "duration": 0.738495, + "end_time": "2023-01-25T20:06:34.697305", "exception": false, - "start_time": "2023-01-24T17:52:27.401290", + "start_time": "2023-01-25T20:06:33.958810", "status": "completed" }, "pycharm": { @@ -3988,10 +3988,10 @@ "id": "a4fddd1c", "metadata": { "papermill": { - "duration": 0.020864, - "end_time": "2023-01-24T17:52:27.940145", + "duration": 0.033035, + "end_time": "2023-01-25T20:06:34.762339", "exception": false, - "start_time": "2023-01-24T17:52:27.919281", + "start_time": "2023-01-25T20:06:34.729304", "status": "completed" }, "pycharm": { @@ -4025,17 +4025,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 25.287758, - "end_time": "2023-01-24T17:52:28.479898", + "duration": 38.20366, + "end_time": "2023-01-25T20:06:35.613500", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/visual_behavior_neuropixels_dataset_manifest.ipynb", - "output_path": "/tmp/tmpwcbd3jqm/scratch_nb.ipynb", + "output_path": "/tmp/tmp_dqe1mbx/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmpwcbd3jqm", + "output_dir": "/tmp/tmp_dqe1mbx", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T17:52:03.192140", + "start_time": "2023-01-25T20:05:57.409840", "version": "2.4.0" }, "vscode": { diff --git a/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_quality_metrics.ipynb b/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_quality_metrics.ipynb index 2e75a0df6..b9274ef4a 100644 --- a/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_quality_metrics.ipynb +++ b/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_quality_metrics.ipynb @@ -5,10 +5,10 @@ "id": "52f094f0", "metadata": { "papermill": { - "duration": 0.011677, - "end_time": "2023-01-24T16:41:39.396891", + "duration": 0.016364, + "end_time": "2023-01-25T18:47:04.854206", "exception": false, - "start_time": "2023-01-24T16:41:39.385214", + "start_time": "2023-01-25T18:47:04.837842", "status": "completed" }, "tags": [] @@ -34,10 +34,10 @@ "id": "dcbdec38", "metadata": { "papermill": { - "duration": 0.01026, - "end_time": "2023-01-24T16:41:39.417761", + "duration": 0.012878, + "end_time": "2023-01-25T18:47:04.880060", "exception": false, - "start_time": "2023-01-24T16:41:39.407501", + "start_time": "2023-01-25T18:47:04.867182", "status": "completed" }, "tags": [] @@ -77,10 +77,10 @@ "id": "2428eac0", "metadata": { "papermill": { - "duration": 0.010106, - "end_time": "2023-01-24T16:41:39.438076", + "duration": 0.012842, + "end_time": "2023-01-25T18:47:04.905872", "exception": false, - "start_time": "2023-01-24T16:41:39.427970", + "start_time": "2023-01-25T18:47:04.893030", "status": "completed" }, "tags": [] @@ -100,10 +100,10 @@ "id": "da34a8f9", "metadata": { "papermill": { - "duration": 0.011185, - "end_time": "2023-01-24T16:41:39.459476", + "duration": 0.012555, + "end_time": "2023-01-25T18:47:04.931150", "exception": false, - "start_time": "2023-01-24T16:41:39.448291", + "start_time": "2023-01-25T18:47:04.918595", "status": "completed" }, "tags": [] @@ -122,16 +122,16 @@ "id": "7f9f35b4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:39.481695Z", - "iopub.status.busy": "2023-01-24T16:41:39.481146Z", - "iopub.status.idle": "2023-01-24T16:41:45.257896Z", - "shell.execute_reply": "2023-01-24T16:41:45.257210Z" + "iopub.execute_input": "2023-01-25T18:47:04.961448Z", + "iopub.status.busy": "2023-01-25T18:47:04.961091Z", + "iopub.status.idle": "2023-01-25T18:47:13.101168Z", + "shell.execute_reply": "2023-01-25T18:47:13.100002Z" }, "papermill": { - "duration": 5.790109, - "end_time": "2023-01-24T16:41:45.259887", + "duration": 8.158598, + "end_time": "2023-01-25T18:47:13.104108", "exception": false, - "start_time": "2023-01-24T16:41:39.469778", + "start_time": "2023-01-25T18:47:04.945510", "status": "completed" }, "tags": [] @@ -163,16 +163,16 @@ "id": "528f33e4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:45.283107Z", - "iopub.status.busy": "2023-01-24T16:41:45.282249Z", - "iopub.status.idle": "2023-01-24T16:41:45.285842Z", - "shell.execute_reply": "2023-01-24T16:41:45.285214Z" + "iopub.execute_input": "2023-01-25T18:47:13.137565Z", + "iopub.status.busy": "2023-01-25T18:47:13.136805Z", + "iopub.status.idle": "2023-01-25T18:47:13.141270Z", + "shell.execute_reply": "2023-01-25T18:47:13.140450Z" }, "papermill": { - "duration": 0.01676, - "end_time": "2023-01-24T16:41:45.287440", + "duration": 0.02221, + "end_time": "2023-01-25T18:47:13.143499", "exception": false, - "start_time": "2023-01-24T16:41:45.270680", + "start_time": "2023-01-25T18:47:13.121289", "status": "completed" }, "tags": [ @@ -191,16 +191,16 @@ "id": "0c91d4d0", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:45.336310Z", - "iopub.status.busy": "2023-01-24T16:41:45.335734Z", - "iopub.status.idle": "2023-01-24T16:41:52.166085Z", - "shell.execute_reply": "2023-01-24T16:41:52.165403Z" + "iopub.execute_input": "2023-01-25T18:47:13.938854Z", + "iopub.status.busy": "2023-01-25T18:47:13.938166Z", + "iopub.status.idle": "2023-01-25T18:47:20.878540Z", + "shell.execute_reply": "2023-01-25T18:47:20.877518Z" }, "papermill": { - "duration": 6.844286, - "end_time": "2023-01-24T16:41:52.168056", + "duration": 6.957405, + "end_time": "2023-01-25T18:47:20.881483", "exception": false, - "start_time": "2023-01-24T16:41:45.323770", + "start_time": "2023-01-25T18:47:13.924078", "status": "completed" }, "tags": [] @@ -218,15 +218,15 @@ "\n", "To avoid this warning in the future, make sure that\n", "\n", - "/tmp/tmpc20mb0vk/_downloaded_data.json\n", + "/tmp/tmpor0zbrw6/_downloaded_data.json\n", "\n", "is not deleted between instantiations of this cache\n", " warnings.warn(msg, MissingLocalManifestWarning)\n", - "ecephys_sessions.csv: 100%|██████████| 64.7k/64.7k [00:00<00:00, 1.01MMB/s]\n", - "behavior_sessions.csv: 100%|██████████| 562k/562k [00:00<00:00, 5.37MMB/s]\n", - "units.csv: 100%|██████████| 132M/132M [00:03<00:00, 40.7MMB/s]\n", - "probes.csv: 100%|██████████| 130k/130k [00:00<00:00, 1.53MMB/s]\n", - "channels.csv: 100%|██████████| 27.9M/27.9M [00:00<00:00, 39.7MMB/s]\n" + "ecephys_sessions.csv: 100%|██████████| 64.7k/64.7k [00:00<00:00, 1.00MMB/s]\n", + "behavior_sessions.csv: 100%|██████████| 562k/562k [00:00<00:00, 7.07MMB/s]\n", + "units.csv: 100%|██████████| 132M/132M [00:03<00:00, 43.0MMB/s]\n", + "probes.csv: 100%|██████████| 130k/130k [00:00<00:00, 1.55MMB/s]\n", + "channels.csv: 100%|██████████| 27.9M/27.9M [00:00<00:00, 35.3MMB/s]\n" ] } ], @@ -240,16 +240,16 @@ "id": "8e8aa35d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:52.195487Z", - "iopub.status.busy": "2023-01-24T16:41:52.195215Z", - "iopub.status.idle": "2023-01-24T16:41:52.200668Z", - "shell.execute_reply": "2023-01-24T16:41:52.200010Z" + "iopub.execute_input": "2023-01-25T18:47:20.918483Z", + "iopub.status.busy": "2023-01-25T18:47:20.917523Z", + "iopub.status.idle": "2023-01-25T18:47:20.925290Z", + "shell.execute_reply": "2023-01-25T18:47:20.924327Z" }, "papermill": { - "duration": 0.021803, - "end_time": "2023-01-24T16:41:52.202998", + "duration": 0.028983, + "end_time": "2023-01-25T18:47:20.927324", "exception": false, - "start_time": "2023-01-24T16:41:52.181195", + "start_time": "2023-01-25T18:47:20.898341", "status": "completed" }, "tags": [] @@ -276,10 +276,10 @@ "id": "9c1644ef", "metadata": { "papermill": { - "duration": 0.012639, - "end_time": "2023-01-24T16:41:52.228251", + "duration": 0.01636, + "end_time": "2023-01-25T18:47:20.960133", "exception": false, - "start_time": "2023-01-24T16:41:52.215612", + "start_time": "2023-01-25T18:47:20.943773", "status": "completed" }, "tags": [] @@ -296,16 +296,16 @@ "id": "88ae9c2b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:52.255084Z", - "iopub.status.busy": "2023-01-24T16:41:52.254341Z", - "iopub.status.idle": "2023-01-24T16:41:52.260390Z", - "shell.execute_reply": "2023-01-24T16:41:52.259875Z" + "iopub.execute_input": "2023-01-25T18:47:20.993985Z", + "iopub.status.busy": "2023-01-25T18:47:20.993417Z", + "iopub.status.idle": "2023-01-25T18:47:21.001263Z", + "shell.execute_reply": "2023-01-25T18:47:21.000466Z" }, "papermill": { - "duration": 0.02087, - "end_time": "2023-01-24T16:41:52.261719", + "duration": 0.026573, + "end_time": "2023-01-25T18:47:21.003163", "exception": false, - "start_time": "2023-01-24T16:41:52.240849", + "start_time": "2023-01-25T18:47:20.976590", "status": "completed" }, "tags": [] @@ -338,10 +338,10 @@ "id": "1a8b4ac7", "metadata": { "papermill": { - "duration": 0.012461, - "end_time": "2023-01-24T16:41:52.286785", + "duration": 0.015509, + "end_time": "2023-01-25T18:47:21.036078", "exception": false, - "start_time": "2023-01-24T16:41:52.274324", + "start_time": "2023-01-25T18:47:21.020569", "status": "completed" }, "tags": [] @@ -355,10 +355,10 @@ "id": "fc866aae", "metadata": { "papermill": { - "duration": 0.012635, - "end_time": "2023-01-24T16:41:52.312155", + "duration": 0.01631, + "end_time": "2023-01-25T18:47:21.068479", "exception": false, - "start_time": "2023-01-24T16:41:52.299520", + "start_time": "2023-01-25T18:47:21.052169", "status": "completed" }, "tags": [] @@ -373,16 +373,16 @@ "id": "2bdd898d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:52.338938Z", - "iopub.status.busy": "2023-01-24T16:41:52.338378Z", - "iopub.status.idle": "2023-01-24T16:41:52.449584Z", - "shell.execute_reply": "2023-01-24T16:41:52.448883Z" + "iopub.execute_input": "2023-01-25T18:47:21.102385Z", + "iopub.status.busy": "2023-01-25T18:47:21.101814Z", + "iopub.status.idle": "2023-01-25T18:47:21.247813Z", + "shell.execute_reply": "2023-01-25T18:47:21.246929Z" }, "papermill": { - "duration": 0.12736, - "end_time": "2023-01-24T16:41:52.452105", + "duration": 0.165604, + "end_time": "2023-01-25T18:47:21.250193", "exception": false, - "start_time": "2023-01-24T16:41:52.324745", + "start_time": "2023-01-25T18:47:21.084589", "status": "completed" }, "tags": [] @@ -411,10 +411,10 @@ "id": "9fc1e4f4", "metadata": { "papermill": { - "duration": 0.013059, - "end_time": "2023-01-24T16:41:52.478395", + "duration": 0.015982, + "end_time": "2023-01-25T18:47:21.283729", "exception": false, - "start_time": "2023-01-24T16:41:52.465336", + "start_time": "2023-01-25T18:47:21.267747", "status": "completed" }, "tags": [] @@ -429,16 +429,16 @@ "id": "6c102f6a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:52.505734Z", - "iopub.status.busy": "2023-01-24T16:41:52.505200Z", - "iopub.status.idle": "2023-01-24T16:41:52.722117Z", - "shell.execute_reply": "2023-01-24T16:41:52.721537Z" + "iopub.execute_input": "2023-01-25T18:47:21.318729Z", + "iopub.status.busy": "2023-01-25T18:47:21.318153Z", + "iopub.status.idle": "2023-01-25T18:47:21.611458Z", + "shell.execute_reply": "2023-01-25T18:47:21.610098Z" }, "papermill": { - "duration": 0.232609, - "end_time": "2023-01-24T16:41:52.723923", + "duration": 0.313579, + "end_time": "2023-01-25T18:47:21.613679", "exception": false, - "start_time": "2023-01-24T16:41:52.491314", + "start_time": "2023-01-25T18:47:21.300100", "status": "completed" }, "tags": [] @@ -467,10 +467,10 @@ "id": "f37a74ed", "metadata": { "papermill": { - "duration": 0.013837, - "end_time": "2023-01-24T16:41:52.751494", + "duration": 0.015813, + "end_time": "2023-01-25T18:47:21.647057", "exception": false, - "start_time": "2023-01-24T16:41:52.737657", + "start_time": "2023-01-25T18:47:21.631244", "status": "completed" }, "tags": [] @@ -485,16 +485,16 @@ "id": "59ce1728", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:52.779738Z", - "iopub.status.busy": "2023-01-24T16:41:52.779042Z", - "iopub.status.idle": "2023-01-24T16:41:52.937248Z", - "shell.execute_reply": "2023-01-24T16:41:52.936522Z" + "iopub.execute_input": "2023-01-25T18:47:21.682407Z", + "iopub.status.busy": "2023-01-25T18:47:21.681819Z", + "iopub.status.idle": "2023-01-25T18:47:21.895618Z", + "shell.execute_reply": "2023-01-25T18:47:21.894602Z" }, "papermill": { - "duration": 0.174142, - "end_time": "2023-01-24T16:41:52.938879", + "duration": 0.233987, + "end_time": "2023-01-25T18:47:21.897946", "exception": false, - "start_time": "2023-01-24T16:41:52.764737", + "start_time": "2023-01-25T18:47:21.663959", "status": "completed" }, "tags": [] @@ -523,10 +523,10 @@ "id": "2946bef4", "metadata": { "papermill": { - "duration": 0.013751, - "end_time": "2023-01-24T16:41:52.966978", + "duration": 0.017227, + "end_time": "2023-01-25T18:47:21.943349", "exception": false, - "start_time": "2023-01-24T16:41:52.953227", + "start_time": "2023-01-25T18:47:21.926122", "status": "completed" }, "tags": [] @@ -541,16 +541,16 @@ "id": "f189dbe0", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:52.995570Z", - "iopub.status.busy": "2023-01-24T16:41:52.995038Z", - "iopub.status.idle": "2023-01-24T16:41:53.313432Z", - "shell.execute_reply": "2023-01-24T16:41:53.312720Z" + "iopub.execute_input": "2023-01-25T18:47:21.979938Z", + "iopub.status.busy": "2023-01-25T18:47:21.979208Z", + "iopub.status.idle": "2023-01-25T18:47:22.419007Z", + "shell.execute_reply": "2023-01-25T18:47:22.416096Z" }, "papermill": { - "duration": 0.335798, - "end_time": "2023-01-24T16:41:53.316265", + "duration": 0.460394, + "end_time": "2023-01-25T18:47:22.421231", "exception": false, - "start_time": "2023-01-24T16:41:52.980467", + "start_time": "2023-01-25T18:47:21.960837", "status": "completed" }, "tags": [] @@ -596,10 +596,10 @@ "id": "8334e537", "metadata": { "papermill": { - "duration": 0.014686, - "end_time": "2023-01-24T16:41:53.346302", + "duration": 0.017544, + "end_time": "2023-01-25T18:47:22.457341", "exception": false, - "start_time": "2023-01-24T16:41:53.331616", + "start_time": "2023-01-25T18:47:22.439797", "status": "completed" }, "tags": [] @@ -625,10 +625,10 @@ "id": "45f07ebe", "metadata": { "papermill": { - "duration": 0.01429, - "end_time": "2023-01-24T16:41:53.375068", + "duration": 0.016896, + "end_time": "2023-01-25T18:47:22.491296", "exception": false, - "start_time": "2023-01-24T16:41:53.360778", + "start_time": "2023-01-25T18:47:22.474400", "status": "completed" }, "tags": [] @@ -642,10 +642,10 @@ "id": "69e9091f", "metadata": { "papermill": { - "duration": 0.014259, - "end_time": "2023-01-24T16:41:53.403656", + "duration": 0.017308, + "end_time": "2023-01-25T18:47:22.525525", "exception": false, - "start_time": "2023-01-24T16:41:53.389397", + "start_time": "2023-01-25T18:47:22.508217", "status": "completed" }, "tags": [] @@ -662,16 +662,16 @@ "id": "127700ae", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:53.434060Z", - "iopub.status.busy": "2023-01-24T16:41:53.433486Z", - "iopub.status.idle": "2023-01-24T16:41:53.630112Z", - "shell.execute_reply": "2023-01-24T16:41:53.629451Z" + "iopub.execute_input": "2023-01-25T18:47:22.566575Z", + "iopub.status.busy": "2023-01-25T18:47:22.566193Z", + "iopub.status.idle": "2023-01-25T18:47:22.835316Z", + "shell.execute_reply": "2023-01-25T18:47:22.834272Z" }, "papermill": { - "duration": 0.213955, - "end_time": "2023-01-24T16:41:53.631912", + "duration": 0.295878, + "end_time": "2023-01-25T18:47:22.837946", "exception": false, - "start_time": "2023-01-24T16:41:53.417957", + "start_time": "2023-01-25T18:47:22.542068", "status": "completed" }, "tags": [] @@ -680,7 +680,7 @@ { "data": { "text/plain": [ - "[]" + "[]" ] }, "execution_count": 11, @@ -718,10 +718,10 @@ "id": "19a44337", "metadata": { "papermill": { - "duration": 0.014977, - "end_time": "2023-01-24T16:41:53.662292", + "duration": 0.019624, + "end_time": "2023-01-25T18:47:22.876966", "exception": false, - "start_time": "2023-01-24T16:41:53.647315", + "start_time": "2023-01-25T18:47:22.857342", "status": "completed" }, "tags": [] @@ -738,16 +738,16 @@ "id": "0167ddcd", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:53.693734Z", - "iopub.status.busy": "2023-01-24T16:41:53.693184Z", - "iopub.status.idle": "2023-01-24T16:41:53.699044Z", - "shell.execute_reply": "2023-01-24T16:41:53.698506Z" + "iopub.execute_input": "2023-01-25T18:47:22.917590Z", + "iopub.status.busy": "2023-01-25T18:47:22.917021Z", + "iopub.status.idle": "2023-01-25T18:47:22.925289Z", + "shell.execute_reply": "2023-01-25T18:47:22.924180Z" }, "papermill": { - "duration": 0.023219, - "end_time": "2023-01-24T16:41:53.700404", + "duration": 0.030678, + "end_time": "2023-01-25T18:47:22.927517", "exception": false, - "start_time": "2023-01-24T16:41:53.677185", + "start_time": "2023-01-25T18:47:22.896839", "status": "completed" }, "tags": [] @@ -773,10 +773,10 @@ "id": "44766ad4", "metadata": { "papermill": { - "duration": 0.014886, - "end_time": "2023-01-24T16:41:53.730200", + "duration": 0.018694, + "end_time": "2023-01-25T18:47:22.965376", "exception": false, - "start_time": "2023-01-24T16:41:53.715314", + "start_time": "2023-01-25T18:47:22.946682", "status": "completed" }, "tags": [] @@ -799,10 +799,10 @@ "id": "d24b1020", "metadata": { "papermill": { - "duration": 0.014943, - "end_time": "2023-01-24T16:41:53.760037", + "duration": 0.01729, + "end_time": "2023-01-25T18:47:23.000697", "exception": false, - "start_time": "2023-01-24T16:41:53.745094", + "start_time": "2023-01-25T18:47:22.983407", "status": "completed" }, "tags": [] @@ -816,10 +816,10 @@ "id": "7ddd4e7c", "metadata": { "papermill": { - "duration": 0.014976, - "end_time": "2023-01-24T16:41:53.790056", + "duration": 0.017554, + "end_time": "2023-01-25T18:47:23.037491", "exception": false, - "start_time": "2023-01-24T16:41:53.775080", + "start_time": "2023-01-25T18:47:23.019937", "status": "completed" }, "tags": [] @@ -836,16 +836,16 @@ "id": "1d9c91e2", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:53.821480Z", - "iopub.status.busy": "2023-01-24T16:41:53.820915Z", - "iopub.status.idle": "2023-01-24T16:41:54.039438Z", - "shell.execute_reply": "2023-01-24T16:41:54.038753Z" + "iopub.execute_input": "2023-01-25T18:47:23.081422Z", + "iopub.status.busy": "2023-01-25T18:47:23.080383Z", + "iopub.status.idle": "2023-01-25T18:47:23.367971Z", + "shell.execute_reply": "2023-01-25T18:47:23.366964Z" }, "papermill": { - "duration": 0.236289, - "end_time": "2023-01-24T16:41:54.041224", + "duration": 0.310907, + "end_time": "2023-01-25T18:47:23.370012", "exception": false, - "start_time": "2023-01-24T16:41:53.804935", + "start_time": "2023-01-25T18:47:23.059105", "status": "completed" }, "tags": [] @@ -854,7 +854,7 @@ { "data": { "text/plain": [ - "[]" + "[]" ] }, "execution_count": 13, @@ -892,10 +892,10 @@ "id": "b9c20700", "metadata": { "papermill": { - "duration": 0.016345, - "end_time": "2023-01-24T16:41:54.073831", + "duration": 0.019291, + "end_time": "2023-01-25T18:47:23.410218", "exception": false, - "start_time": "2023-01-24T16:41:54.057486", + "start_time": "2023-01-25T18:47:23.390927", "status": "completed" }, "tags": [] @@ -914,16 +914,16 @@ "id": "5e1da603", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:54.106663Z", - "iopub.status.busy": "2023-01-24T16:41:54.106115Z", - "iopub.status.idle": "2023-01-24T16:41:54.111965Z", - "shell.execute_reply": "2023-01-24T16:41:54.111446Z" + "iopub.execute_input": "2023-01-25T18:47:23.450619Z", + "iopub.status.busy": "2023-01-25T18:47:23.450045Z", + "iopub.status.idle": "2023-01-25T18:47:23.458679Z", + "shell.execute_reply": "2023-01-25T18:47:23.457739Z" }, "papermill": { - "duration": 0.023887, - "end_time": "2023-01-24T16:41:54.113322", + "duration": 0.031119, + "end_time": "2023-01-25T18:47:23.460607", "exception": false, - "start_time": "2023-01-24T16:41:54.089435", + "start_time": "2023-01-25T18:47:23.429488", "status": "completed" }, "tags": [] @@ -949,10 +949,10 @@ "id": "65b74810", "metadata": { "papermill": { - "duration": 0.015642, - "end_time": "2023-01-24T16:41:54.144557", + "duration": 0.019738, + "end_time": "2023-01-25T18:47:23.499160", "exception": false, - "start_time": "2023-01-24T16:41:54.128915", + "start_time": "2023-01-25T18:47:23.479422", "status": "completed" }, "tags": [] @@ -973,10 +973,10 @@ "id": "1b7b1cfd", "metadata": { "papermill": { - "duration": 0.015582, - "end_time": "2023-01-24T16:41:54.176173", + "duration": 0.019512, + "end_time": "2023-01-25T18:47:23.539652", "exception": false, - "start_time": "2023-01-24T16:41:54.160591", + "start_time": "2023-01-25T18:47:23.520140", "status": "completed" }, "tags": [] @@ -990,10 +990,10 @@ "id": "b4ce3fc8", "metadata": { "papermill": { - "duration": 0.015526, - "end_time": "2023-01-24T16:41:54.207292", + "duration": 0.02062, + "end_time": "2023-01-25T18:47:23.580555", "exception": false, - "start_time": "2023-01-24T16:41:54.191766", + "start_time": "2023-01-25T18:47:23.559935", "status": "completed" }, "tags": [] @@ -1012,16 +1012,16 @@ "id": "099747f0", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:54.240279Z", - "iopub.status.busy": "2023-01-24T16:41:54.239714Z", - "iopub.status.idle": "2023-01-24T16:41:54.444422Z", - "shell.execute_reply": "2023-01-24T16:41:54.443714Z" + "iopub.execute_input": "2023-01-25T18:47:23.623493Z", + "iopub.status.busy": "2023-01-25T18:47:23.622884Z", + "iopub.status.idle": "2023-01-25T18:47:23.898104Z", + "shell.execute_reply": "2023-01-25T18:47:23.897075Z" }, "papermill": { - "duration": 0.223165, - "end_time": "2023-01-24T16:41:54.446106", + "duration": 0.300405, + "end_time": "2023-01-25T18:47:23.900849", "exception": false, - "start_time": "2023-01-24T16:41:54.222941", + "start_time": "2023-01-25T18:47:23.600444", "status": "completed" }, "tags": [] @@ -1030,7 +1030,7 @@ { "data": { "text/plain": [ - "[]" + "[]" ] }, "execution_count": 15, @@ -1068,10 +1068,10 @@ "id": "4c295b95", "metadata": { "papermill": { - "duration": 0.016784, - "end_time": "2023-01-24T16:41:54.479737", + "duration": 0.019864, + "end_time": "2023-01-25T18:47:23.943260", "exception": false, - "start_time": "2023-01-24T16:41:54.462953", + "start_time": "2023-01-25T18:47:23.923396", "status": "completed" }, "tags": [] @@ -1086,16 +1086,16 @@ "id": "5540399f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:54.513959Z", - "iopub.status.busy": "2023-01-24T16:41:54.513403Z", - "iopub.status.idle": "2023-01-24T16:41:54.745513Z", - "shell.execute_reply": "2023-01-24T16:41:54.744798Z" + "iopub.execute_input": "2023-01-25T18:47:23.986856Z", + "iopub.status.busy": "2023-01-25T18:47:23.986454Z", + "iopub.status.idle": "2023-01-25T18:47:24.301930Z", + "shell.execute_reply": "2023-01-25T18:47:24.300924Z" }, "papermill": { - "duration": 0.251257, - "end_time": "2023-01-24T16:41:54.747260", + "duration": 0.339885, + "end_time": "2023-01-25T18:47:24.304717", "exception": false, - "start_time": "2023-01-24T16:41:54.496003", + "start_time": "2023-01-25T18:47:23.964832", "status": "completed" }, "tags": [] @@ -1104,7 +1104,7 @@ { "data": { "text/plain": [ - "[]" + "[]" ] }, "execution_count": 16, @@ -1142,10 +1142,10 @@ "id": "a4b5457e", "metadata": { "papermill": { - "duration": 0.017224, - "end_time": "2023-01-24T16:41:54.782511", + "duration": 0.019783, + "end_time": "2023-01-25T18:47:24.348827", "exception": false, - "start_time": "2023-01-24T16:41:54.765287", + "start_time": "2023-01-25T18:47:24.329044", "status": "completed" }, "tags": [] @@ -1166,16 +1166,16 @@ "id": "be19dfcc", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:54.818143Z", - "iopub.status.busy": "2023-01-24T16:41:54.817628Z", - "iopub.status.idle": "2023-01-24T16:41:54.823343Z", - "shell.execute_reply": "2023-01-24T16:41:54.822819Z" + "iopub.execute_input": "2023-01-25T18:47:24.390955Z", + "iopub.status.busy": "2023-01-25T18:47:24.390587Z", + "iopub.status.idle": "2023-01-25T18:47:24.398587Z", + "shell.execute_reply": "2023-01-25T18:47:24.397622Z" }, "papermill": { - "duration": 0.025169, - "end_time": "2023-01-24T16:41:54.824697", + "duration": 0.031081, + "end_time": "2023-01-25T18:47:24.400575", "exception": false, - "start_time": "2023-01-24T16:41:54.799528", + "start_time": "2023-01-25T18:47:24.369494", "status": "completed" }, "tags": [] @@ -1201,10 +1201,10 @@ "id": "bec070d8", "metadata": { "papermill": { - "duration": 0.017071, - "end_time": "2023-01-24T16:41:54.858834", + "duration": 0.01994, + "end_time": "2023-01-25T18:47:24.441481", "exception": false, - "start_time": "2023-01-24T16:41:54.841763", + "start_time": "2023-01-25T18:47:24.421541", "status": "completed" }, "tags": [] @@ -1225,10 +1225,10 @@ "id": "3b929ee9", "metadata": { "papermill": { - "duration": 0.017232, - "end_time": "2023-01-24T16:41:54.893279", + "duration": 0.019145, + "end_time": "2023-01-25T18:47:24.481006", "exception": false, - "start_time": "2023-01-24T16:41:54.876047", + "start_time": "2023-01-25T18:47:24.461861", "status": "completed" }, "tags": [] @@ -1242,10 +1242,10 @@ "id": "cf9f8a9a", "metadata": { "papermill": { - "duration": 0.017092, - "end_time": "2023-01-24T16:41:54.927730", + "duration": 0.020466, + "end_time": "2023-01-25T18:47:24.520875", "exception": false, - "start_time": "2023-01-24T16:41:54.910638", + "start_time": "2023-01-25T18:47:24.500409", "status": "completed" }, "tags": [] @@ -1265,16 +1265,16 @@ "id": "e12d5119", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:54.963761Z", - "iopub.status.busy": "2023-01-24T16:41:54.963196Z", - "iopub.status.idle": "2023-01-24T16:41:55.168309Z", - "shell.execute_reply": "2023-01-24T16:41:55.167613Z" + "iopub.execute_input": "2023-01-25T18:47:24.561861Z", + "iopub.status.busy": "2023-01-25T18:47:24.561214Z", + "iopub.status.idle": "2023-01-25T18:47:24.832898Z", + "shell.execute_reply": "2023-01-25T18:47:24.831846Z" }, "papermill": { - "duration": 0.225305, - "end_time": "2023-01-24T16:41:55.170124", + "duration": 0.294956, + "end_time": "2023-01-25T18:47:24.834895", "exception": false, - "start_time": "2023-01-24T16:41:54.944819", + "start_time": "2023-01-25T18:47:24.539939", "status": "completed" }, "tags": [] @@ -1309,10 +1309,10 @@ "id": "81a4697f", "metadata": { "papermill": { - "duration": 0.018048, - "end_time": "2023-01-24T16:41:55.206699", + "duration": 0.019927, + "end_time": "2023-01-25T18:47:24.879636", "exception": false, - "start_time": "2023-01-24T16:41:55.188651", + "start_time": "2023-01-25T18:47:24.859709", "status": "completed" }, "tags": [] @@ -1326,10 +1326,10 @@ "id": "743bae5f", "metadata": { "papermill": { - "duration": 0.01781, - "end_time": "2023-01-24T16:41:55.242447", + "duration": 0.020787, + "end_time": "2023-01-25T18:47:24.920805", "exception": false, - "start_time": "2023-01-24T16:41:55.224637", + "start_time": "2023-01-25T18:47:24.900018", "status": "completed" }, "tags": [] @@ -1353,10 +1353,10 @@ "id": "9b6adfe6", "metadata": { "papermill": { - "duration": 0.017769, - "end_time": "2023-01-24T16:41:55.278047", + "duration": 0.020231, + "end_time": "2023-01-25T18:47:24.962622", "exception": false, - "start_time": "2023-01-24T16:41:55.260278", + "start_time": "2023-01-25T18:47:24.942391", "status": "completed" }, "tags": [] @@ -1370,10 +1370,10 @@ "id": "d1e85a96", "metadata": { "papermill": { - "duration": 0.017787, - "end_time": "2023-01-24T16:41:55.313770", + "duration": 0.021072, + "end_time": "2023-01-25T18:47:25.004564", "exception": false, - "start_time": "2023-01-24T16:41:55.295983", + "start_time": "2023-01-25T18:47:24.983492", "status": "completed" }, "tags": [] @@ -1392,16 +1392,16 @@ "id": "139529ad", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:55.351077Z", - "iopub.status.busy": "2023-01-24T16:41:55.350488Z", - "iopub.status.idle": "2023-01-24T16:41:55.559628Z", - "shell.execute_reply": "2023-01-24T16:41:55.558891Z" + "iopub.execute_input": "2023-01-25T18:47:25.051296Z", + "iopub.status.busy": "2023-01-25T18:47:25.050484Z", + "iopub.status.idle": "2023-01-25T18:47:25.338070Z", + "shell.execute_reply": "2023-01-25T18:47:25.337047Z" }, "papermill": { - "duration": 0.22995, - "end_time": "2023-01-24T16:41:55.561540", + "duration": 0.314132, + "end_time": "2023-01-25T18:47:25.340724", "exception": false, - "start_time": "2023-01-24T16:41:55.331590", + "start_time": "2023-01-25T18:47:25.026592", "status": "completed" }, "tags": [] @@ -1436,10 +1436,10 @@ "id": "04db63a7", "metadata": { "papermill": { - "duration": 0.018894, - "end_time": "2023-01-24T16:41:55.599833", + "duration": 0.02939, + "end_time": "2023-01-25T18:47:25.399735", "exception": false, - "start_time": "2023-01-24T16:41:55.580939", + "start_time": "2023-01-25T18:47:25.370345", "status": "completed" }, "tags": [] @@ -1460,10 +1460,10 @@ "id": "6de195e8", "metadata": { "papermill": { - "duration": 0.01893, - "end_time": "2023-01-24T16:41:55.637513", + "duration": 0.022597, + "end_time": "2023-01-25T18:47:25.445479", "exception": false, - "start_time": "2023-01-24T16:41:55.618583", + "start_time": "2023-01-25T18:47:25.422882", "status": "completed" }, "tags": [] @@ -1477,10 +1477,10 @@ "id": "34ac34fc", "metadata": { "papermill": { - "duration": 0.018829, - "end_time": "2023-01-24T16:41:55.675234", + "duration": 0.021472, + "end_time": "2023-01-25T18:47:25.489148", "exception": false, - "start_time": "2023-01-24T16:41:55.656405", + "start_time": "2023-01-25T18:47:25.467676", "status": "completed" }, "tags": [] @@ -1495,16 +1495,16 @@ "id": "bbeacc26", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:55.714663Z", - "iopub.status.busy": "2023-01-24T16:41:55.714103Z", - "iopub.status.idle": "2023-01-24T16:41:55.923658Z", - "shell.execute_reply": "2023-01-24T16:41:55.922948Z" + "iopub.execute_input": "2023-01-25T18:47:25.537567Z", + "iopub.status.busy": "2023-01-25T18:47:25.536280Z", + "iopub.status.idle": "2023-01-25T18:47:25.805752Z", + "shell.execute_reply": "2023-01-25T18:47:25.804749Z" }, "papermill": { - "duration": 0.23144, - "end_time": "2023-01-24T16:41:55.925580", + "duration": 0.296113, + "end_time": "2023-01-25T18:47:25.808743", "exception": false, - "start_time": "2023-01-24T16:41:55.694140", + "start_time": "2023-01-25T18:47:25.512630", "status": "completed" }, "tags": [] @@ -1539,10 +1539,10 @@ "id": "100ce64b", "metadata": { "papermill": { - "duration": 0.019667, - "end_time": "2023-01-24T16:41:55.965103", + "duration": 0.024694, + "end_time": "2023-01-25T18:47:25.857440", "exception": false, - "start_time": "2023-01-24T16:41:55.945436", + "start_time": "2023-01-25T18:47:25.832746", "status": "completed" }, "tags": [] @@ -1562,10 +1562,10 @@ "id": "ea855278", "metadata": { "papermill": { - "duration": 0.019481, - "end_time": "2023-01-24T16:41:56.004298", + "duration": 0.023231, + "end_time": "2023-01-25T18:47:25.902722", "exception": false, - "start_time": "2023-01-24T16:41:55.984817", + "start_time": "2023-01-25T18:47:25.879491", "status": "completed" }, "tags": [] @@ -1579,10 +1579,10 @@ "id": "f87e74d8", "metadata": { "papermill": { - "duration": 0.019534, - "end_time": "2023-01-24T16:41:56.043323", + "duration": 0.021923, + "end_time": "2023-01-25T18:47:25.947754", "exception": false, - "start_time": "2023-01-24T16:41:56.023789", + "start_time": "2023-01-25T18:47:25.925831", "status": "completed" }, "tags": [] @@ -1597,16 +1597,16 @@ "id": "7cc502dc", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:56.084873Z", - "iopub.status.busy": "2023-01-24T16:41:56.084057Z", - "iopub.status.idle": "2023-01-24T16:41:56.289847Z", - "shell.execute_reply": "2023-01-24T16:41:56.289137Z" + "iopub.execute_input": "2023-01-25T18:47:25.995597Z", + "iopub.status.busy": "2023-01-25T18:47:25.994525Z", + "iopub.status.idle": "2023-01-25T18:47:26.259477Z", + "shell.execute_reply": "2023-01-25T18:47:26.258445Z" }, "papermill": { - "duration": 0.228534, - "end_time": "2023-01-24T16:41:56.291619", + "duration": 0.291566, + "end_time": "2023-01-25T18:47:26.262000", "exception": false, - "start_time": "2023-01-24T16:41:56.063085", + "start_time": "2023-01-25T18:47:25.970434", "status": "completed" }, "tags": [] @@ -1641,10 +1641,10 @@ "id": "b108f886", "metadata": { "papermill": { - "duration": 0.020699, - "end_time": "2023-01-24T16:41:56.333044", + "duration": 0.026057, + "end_time": "2023-01-25T18:47:26.312422", "exception": false, - "start_time": "2023-01-24T16:41:56.312345", + "start_time": "2023-01-25T18:47:26.286365", "status": "completed" }, "tags": [] @@ -1664,10 +1664,10 @@ "id": "065eb57a", "metadata": { "papermill": { - "duration": 0.020151, - "end_time": "2023-01-24T16:41:56.373693", + "duration": 0.024054, + "end_time": "2023-01-25T18:47:26.360345", "exception": false, - "start_time": "2023-01-24T16:41:56.353542", + "start_time": "2023-01-25T18:47:26.336291", "status": "completed" }, "tags": [] @@ -1681,10 +1681,10 @@ "id": "53f0e043", "metadata": { "papermill": { - "duration": 0.0201, - "end_time": "2023-01-24T16:41:56.413868", + "duration": 0.024592, + "end_time": "2023-01-25T18:47:26.407908", "exception": false, - "start_time": "2023-01-24T16:41:56.393768", + "start_time": "2023-01-25T18:47:26.383316", "status": "completed" }, "tags": [] @@ -1699,16 +1699,16 @@ "id": "215f3b0b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:56.455986Z", - "iopub.status.busy": "2023-01-24T16:41:56.455409Z", - "iopub.status.idle": "2023-01-24T16:41:57.035561Z", - "shell.execute_reply": "2023-01-24T16:41:57.034890Z" + "iopub.execute_input": "2023-01-25T18:47:26.454685Z", + "iopub.status.busy": "2023-01-25T18:47:26.454114Z", + "iopub.status.idle": "2023-01-25T18:47:27.309393Z", + "shell.execute_reply": "2023-01-25T18:47:27.308419Z" }, "papermill": { - "duration": 0.603108, - "end_time": "2023-01-24T16:41:57.037270", + "duration": 0.880872, + "end_time": "2023-01-25T18:47:27.311711", "exception": false, - "start_time": "2023-01-24T16:41:56.434162", + "start_time": "2023-01-25T18:47:26.430839", "status": "completed" }, "tags": [] @@ -1767,10 +1767,10 @@ "id": "c5151c91", "metadata": { "papermill": { - "duration": 0.021278, - "end_time": "2023-01-24T16:41:57.079994", + "duration": 0.026842, + "end_time": "2023-01-25T18:47:27.363460", "exception": false, - "start_time": "2023-01-24T16:41:57.058716", + "start_time": "2023-01-25T18:47:27.336618", "status": "completed" }, "tags": [] @@ -1784,10 +1784,10 @@ "id": "9743f69c", "metadata": { "papermill": { - "duration": 0.02112, - "end_time": "2023-01-24T16:41:57.122375", + "duration": 0.024044, + "end_time": "2023-01-25T18:47:27.412786", "exception": false, - "start_time": "2023-01-24T16:41:57.101255", + "start_time": "2023-01-25T18:47:27.388742", "status": "completed" }, "tags": [] @@ -1809,16 +1809,16 @@ "id": "2ac12718", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:57.166243Z", - "iopub.status.busy": "2023-01-24T16:41:57.165950Z", - "iopub.status.idle": "2023-01-24T16:41:57.186298Z", - "shell.execute_reply": "2023-01-24T16:41:57.185761Z" + "iopub.execute_input": "2023-01-25T18:47:27.466335Z", + "iopub.status.busy": "2023-01-25T18:47:27.465471Z", + "iopub.status.idle": "2023-01-25T18:47:27.491399Z", + "shell.execute_reply": "2023-01-25T18:47:27.490522Z" }, "papermill": { - "duration": 0.044243, - "end_time": "2023-01-24T16:41:57.187763", + "duration": 0.055822, + "end_time": "2023-01-25T18:47:27.493317", "exception": false, - "start_time": "2023-01-24T16:41:57.143520", + "start_time": "2023-01-25T18:47:27.437495", "status": "completed" }, "tags": [] @@ -1847,10 +1847,10 @@ "id": "6679d857", "metadata": { "papermill": { - "duration": 0.021041, - "end_time": "2023-01-24T16:41:57.230333", + "duration": 0.024342, + "end_time": "2023-01-25T18:47:27.545702", "exception": false, - "start_time": "2023-01-24T16:41:57.209292", + "start_time": "2023-01-25T18:47:27.521360", "status": "completed" }, "tags": [] @@ -1870,16 +1870,16 @@ "id": "c0dd0095", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:57.274261Z", - "iopub.status.busy": "2023-01-24T16:41:57.273423Z", - "iopub.status.idle": "2023-01-24T16:41:57.308733Z", - "shell.execute_reply": "2023-01-24T16:41:57.308058Z" + "iopub.execute_input": "2023-01-25T18:47:27.597067Z", + "iopub.status.busy": "2023-01-25T18:47:27.596338Z", + "iopub.status.idle": "2023-01-25T18:47:27.644379Z", + "shell.execute_reply": "2023-01-25T18:47:27.643340Z" }, "papermill": { - "duration": 0.059046, - "end_time": "2023-01-24T16:41:57.310492", + "duration": 0.076401, + "end_time": "2023-01-25T18:47:27.646631", "exception": false, - "start_time": "2023-01-24T16:41:57.251446", + "start_time": "2023-01-25T18:47:27.570230", "status": "completed" }, "tags": [] @@ -1906,10 +1906,10 @@ "id": "1fb9d8b1", "metadata": { "papermill": { - "duration": 0.021133, - "end_time": "2023-01-24T16:41:57.353186", + "duration": 0.023003, + "end_time": "2023-01-25T18:47:27.694128", "exception": false, - "start_time": "2023-01-24T16:41:57.332053", + "start_time": "2023-01-25T18:47:27.671125", "status": "completed" }, "tags": [] @@ -1923,10 +1923,10 @@ "id": "68b598e4", "metadata": { "papermill": { - "duration": 0.021083, - "end_time": "2023-01-24T16:41:57.395440", + "duration": 0.022513, + "end_time": "2023-01-25T18:47:27.739729", "exception": false, - "start_time": "2023-01-24T16:41:57.374357", + "start_time": "2023-01-25T18:47:27.717216", "status": "completed" }, "tags": [] @@ -1959,16 +1959,16 @@ "id": "f859e7b6", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:41:57.439415Z", - "iopub.status.busy": "2023-01-24T16:41:57.438857Z", - "iopub.status.idle": "2023-01-24T16:44:25.746569Z", - "shell.execute_reply": "2023-01-24T16:44:25.742391Z" + "iopub.execute_input": "2023-01-25T18:47:27.788378Z", + "iopub.status.busy": "2023-01-25T18:47:27.787453Z", + "iopub.status.idle": "2023-01-25T18:50:29.673488Z", + "shell.execute_reply": "2023-01-25T18:50:29.665110Z" }, "papermill": { - "duration": 148.402432, - "end_time": "2023-01-24T16:44:25.818930", + "duration": 182.031634, + "end_time": "2023-01-25T18:50:29.794735", "exception": false, - "start_time": "2023-01-24T16:41:57.416498", + "start_time": "2023-01-25T18:47:27.763101", "status": "completed" }, "tags": [] @@ -1978,7 +1978,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "ecephys_session_1065437523.nwb: 100%|██████████| 3.20G/3.20G [01:22<00:00, 38.6MMB/s]\n" + "ecephys_session_1065437523.nwb: 100%|██████████| 3.20G/3.20G [01:46<00:00, 30.0MMB/s]\n" ] } ], @@ -1993,16 +1993,16 @@ "id": "30e70b46", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:44:26.811045Z", - "iopub.status.busy": "2023-01-24T16:44:26.810668Z", - "iopub.status.idle": "2023-01-24T16:44:27.249204Z", - "shell.execute_reply": "2023-01-24T16:44:27.248549Z" + "iopub.execute_input": "2023-01-25T18:50:30.341450Z", + "iopub.status.busy": "2023-01-25T18:50:30.340364Z", + "iopub.status.idle": "2023-01-25T18:50:30.945161Z", + "shell.execute_reply": "2023-01-25T18:50:30.935568Z" }, "papermill": { - "duration": 1.212267, - "end_time": "2023-01-24T16:44:27.251371", + "duration": 0.693612, + "end_time": "2023-01-25T18:50:30.948883", "exception": false, - "start_time": "2023-01-24T16:44:26.039104", + "start_time": "2023-01-25T18:50:30.255271", "status": "completed" }, "tags": [] @@ -2021,10 +2021,10 @@ "id": "10114ffb", "metadata": { "papermill": { - "duration": 0.049501, - "end_time": "2023-01-24T16:44:27.350723", + "duration": 0.078157, + "end_time": "2023-01-25T18:50:31.103221", "exception": false, - "start_time": "2023-01-24T16:44:27.301222", + "start_time": "2023-01-25T18:50:31.025064", "status": "completed" }, "tags": [] @@ -2039,16 +2039,16 @@ "id": "04de1d07", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:44:27.450037Z", - "iopub.status.busy": "2023-01-24T16:44:27.449314Z", - "iopub.status.idle": "2023-01-24T16:44:27.501619Z", - "shell.execute_reply": "2023-01-24T16:44:27.500932Z" + "iopub.execute_input": "2023-01-25T18:50:31.249540Z", + "iopub.status.busy": "2023-01-25T18:50:31.248723Z", + "iopub.status.idle": "2023-01-25T18:50:31.336582Z", + "shell.execute_reply": "2023-01-25T18:50:31.335454Z" }, "papermill": { - "duration": 0.10459, - "end_time": "2023-01-24T16:44:27.503915", + "duration": 0.192144, + "end_time": "2023-01-25T18:50:31.366488", "exception": false, - "start_time": "2023-01-24T16:44:27.399325", + "start_time": "2023-01-25T18:50:31.174344", "status": "completed" }, "tags": [] @@ -2247,10 +2247,10 @@ "id": "0e2d33f2", "metadata": { "papermill": { - "duration": 0.049287, - "end_time": "2023-01-24T16:44:27.602710", + "duration": 0.070763, + "end_time": "2023-01-25T18:50:31.510101", "exception": false, - "start_time": "2023-01-24T16:44:27.553423", + "start_time": "2023-01-25T18:50:31.439338", "status": "completed" }, "tags": [] @@ -2267,16 +2267,16 @@ "id": "8fc7d514", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:44:27.702338Z", - "iopub.status.busy": "2023-01-24T16:44:27.701758Z", - "iopub.status.idle": "2023-01-24T16:44:27.711644Z", - "shell.execute_reply": "2023-01-24T16:44:27.710962Z" + "iopub.execute_input": "2023-01-25T18:50:31.655331Z", + "iopub.status.busy": "2023-01-25T18:50:31.654946Z", + "iopub.status.idle": "2023-01-25T18:50:31.669574Z", + "shell.execute_reply": "2023-01-25T18:50:31.668634Z" }, "papermill": { - "duration": 0.06222, - "end_time": "2023-01-24T16:44:27.713650", + "duration": 0.091485, + "end_time": "2023-01-25T18:50:31.672249", "exception": false, - "start_time": "2023-01-24T16:44:27.651430", + "start_time": "2023-01-25T18:50:31.580764", "status": "completed" }, "tags": [] @@ -2300,16 +2300,16 @@ "id": "7ebc0fc5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:44:27.813586Z", - "iopub.status.busy": "2023-01-24T16:44:27.813284Z", - "iopub.status.idle": "2023-01-24T16:44:28.022424Z", - "shell.execute_reply": "2023-01-24T16:44:28.020309Z" + "iopub.execute_input": "2023-01-25T18:50:31.821473Z", + "iopub.status.busy": "2023-01-25T18:50:31.820888Z", + "iopub.status.idle": "2023-01-25T18:50:32.127453Z", + "shell.execute_reply": "2023-01-25T18:50:32.124283Z" }, "papermill": { - "duration": 0.261156, - "end_time": "2023-01-24T16:44:28.024239", + "duration": 0.383143, + "end_time": "2023-01-25T18:50:32.130448", "exception": false, - "start_time": "2023-01-24T16:44:27.763083", + "start_time": "2023-01-25T18:50:31.747305", "status": "completed" }, "tags": [] @@ -2347,10 +2347,10 @@ "id": "be807079", "metadata": { "papermill": { - "duration": 0.051722, - "end_time": "2023-01-24T16:44:28.127797", + "duration": 0.079035, + "end_time": "2023-01-25T18:50:32.301174", "exception": false, - "start_time": "2023-01-24T16:44:28.076075", + "start_time": "2023-01-25T18:50:32.222139", "status": "completed" }, "tags": [] @@ -2380,17 +2380,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 172.307964, - "end_time": "2023-01-24T16:44:30.403983", + "duration": 212.063018, + "end_time": "2023-01-25T18:50:35.266356", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/visual_behavior_neuropixels_quality_metrics.ipynb", - "output_path": "/tmp/tmpc20mb0vk/scratch_nb.ipynb", + "output_path": "/tmp/tmpor0zbrw6/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmpc20mb0vk", + "output_dir": "/tmp/tmpor0zbrw6", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T16:41:38.096019", + "start_time": "2023-01-25T18:47:03.203338", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_quickstart.ipynb b/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_quickstart.ipynb index 2d998e417..d2e207515 100644 --- a/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_quickstart.ipynb +++ b/doc_template/examples_root/examples/nb/visual_behavior_neuropixels_quickstart.ipynb @@ -5,10 +5,10 @@ "id": "6c76b6dd", "metadata": { "papermill": { - "duration": 0.007122, - "end_time": "2023-01-24T18:09:50.848954", + "duration": 0.012869, + "end_time": "2023-01-25T20:23:25.322612", "exception": false, - "start_time": "2023-01-24T18:09:50.841832", + "start_time": "2023-01-25T20:23:25.309743", "status": "completed" }, "tags": [] @@ -33,16 +33,16 @@ "id": "ceda3ce7", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:09:50.863131Z", - "iopub.status.busy": "2023-01-24T18:09:50.862407Z", - "iopub.status.idle": "2023-01-24T18:09:55.904807Z", - "shell.execute_reply": "2023-01-24T18:09:55.904118Z" + "iopub.execute_input": "2023-01-25T20:23:25.340277Z", + "iopub.status.busy": "2023-01-25T20:23:25.339554Z", + "iopub.status.idle": "2023-01-25T20:23:32.364239Z", + "shell.execute_reply": "2023-01-25T20:23:32.363193Z" }, "papermill": { - "duration": 5.05172, - "end_time": "2023-01-24T18:09:55.907062", + "duration": 7.036152, + "end_time": "2023-01-25T20:23:32.366798", "exception": false, - "start_time": "2023-01-24T18:09:50.855342", + "start_time": "2023-01-25T20:23:25.330646", "status": "completed" }, "tags": [] @@ -74,10 +74,10 @@ "id": "a7f3faf9", "metadata": { "papermill": { - "duration": 0.006144, - "end_time": "2023-01-24T18:09:55.919759", + "duration": 0.007931, + "end_time": "2023-01-25T20:23:32.383282", "exception": false, - "start_time": "2023-01-24T18:09:55.913615", + "start_time": "2023-01-25T20:23:32.375351", "status": "completed" }, "tags": [] @@ -92,16 +92,16 @@ "id": "d1b9c0de", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:09:55.933459Z", - "iopub.status.busy": "2023-01-24T18:09:55.932874Z", - "iopub.status.idle": "2023-01-24T18:09:55.936423Z", - "shell.execute_reply": "2023-01-24T18:09:55.935754Z" + "iopub.execute_input": "2023-01-25T20:23:32.401364Z", + "iopub.status.busy": "2023-01-25T20:23:32.400569Z", + "iopub.status.idle": "2023-01-25T20:23:32.405245Z", + "shell.execute_reply": "2023-01-25T20:23:32.404433Z" }, "papermill": { - "duration": 0.01243, - "end_time": "2023-01-24T18:09:55.938239", + "duration": 0.015778, + "end_time": "2023-01-25T20:23:32.407395", "exception": false, - "start_time": "2023-01-24T18:09:55.925809", + "start_time": "2023-01-25T20:23:32.391617", "status": "completed" }, "tags": [ @@ -120,16 +120,16 @@ "id": "708db976", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:09:55.969027Z", - "iopub.status.busy": "2023-01-24T18:09:55.968588Z", - "iopub.status.idle": "2023-01-24T18:10:04.768853Z", - "shell.execute_reply": "2023-01-24T18:10:04.768191Z" + "iopub.execute_input": "2023-01-25T20:23:32.450077Z", + "iopub.status.busy": "2023-01-25T20:23:32.449573Z", + "iopub.status.idle": "2023-01-25T20:23:41.369386Z", + "shell.execute_reply": "2023-01-25T20:23:41.368317Z" }, "papermill": { - "duration": 8.809161, - "end_time": "2023-01-24T18:10:04.770886", + "duration": 8.931379, + "end_time": "2023-01-25T20:23:41.372184", "exception": false, - "start_time": "2023-01-24T18:09:55.961725", + "start_time": "2023-01-25T20:23:32.440805", "status": "completed" }, "scrolled": false, @@ -148,15 +148,15 @@ "\n", "To avoid this warning in the future, make sure that\n", "\n", - "/tmp/tmpk6sm1u3a/_downloaded_data.json\n", + "/tmp/tmp5_gi35bw/_downloaded_data.json\n", "\n", "is not deleted between instantiations of this cache\n", " warnings.warn(msg, MissingLocalManifestWarning)\n", - "ecephys_sessions.csv: 100%|██████████| 64.7k/64.7k [00:00<00:00, 742kMB/s]\n", - "behavior_sessions.csv: 100%|██████████| 562k/562k [00:00<00:00, 5.41MMB/s]\n", - "units.csv: 100%|██████████| 132M/132M [00:03<00:00, 35.1MMB/s]\n", - "probes.csv: 100%|██████████| 130k/130k [00:00<00:00, 428kMB/s] \n", - "channels.csv: 100%|██████████| 27.9M/27.9M [00:01<00:00, 14.3MMB/s]\n" + "ecephys_sessions.csv: 100%|██████████| 64.7k/64.7k [00:00<00:00, 1.31MMB/s]\n", + "behavior_sessions.csv: 100%|██████████| 562k/562k [00:00<00:00, 4.32MMB/s] \n", + "units.csv: 100%|██████████| 132M/132M [00:04<00:00, 30.5MMB/s]\n", + "probes.csv: 100%|██████████| 130k/130k [00:00<00:00, 1.33MMB/s]\n", + "channels.csv: 100%|██████████| 27.9M/27.9M [00:01<00:00, 19.3MMB/s]\n" ] } ], @@ -181,10 +181,10 @@ "id": "9fad545a", "metadata": { "papermill": { - "duration": 0.009136, - "end_time": "2023-01-24T18:10:04.789205", + "duration": 0.010223, + "end_time": "2023-01-25T20:23:41.394516", "exception": false, - "start_time": "2023-01-24T18:10:04.780069", + "start_time": "2023-01-25T20:23:41.384293", "status": "completed" }, "tags": [] @@ -199,16 +199,16 @@ "id": "19bf649c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:10:04.808011Z", - "iopub.status.busy": "2023-01-24T18:10:04.807463Z", - "iopub.status.idle": "2023-01-24T18:10:04.829905Z", - "shell.execute_reply": "2023-01-24T18:10:04.829329Z" + "iopub.execute_input": "2023-01-25T20:23:41.417689Z", + "iopub.status.busy": "2023-01-25T20:23:41.417360Z", + "iopub.status.idle": "2023-01-25T20:23:41.449273Z", + "shell.execute_reply": "2023-01-25T20:23:41.448218Z" }, "papermill": { - "duration": 0.033885, - "end_time": "2023-01-24T18:10:04.831690", + "duration": 0.046442, + "end_time": "2023-01-25T20:23:41.451400", "exception": false, - "start_time": "2023-01-24T18:10:04.797805", + "start_time": "2023-01-25T20:23:41.404958", "status": "completed" }, "tags": [] @@ -500,10 +500,10 @@ "id": "2fc6ad8d", "metadata": { "papermill": { - "duration": 0.009227, - "end_time": "2023-01-24T18:10:04.850160", + "duration": 0.011199, + "end_time": "2023-01-25T20:23:41.477688", "exception": false, - "start_time": "2023-01-24T18:10:04.840933", + "start_time": "2023-01-25T20:23:41.466489", "status": "completed" }, "tags": [] @@ -518,16 +518,16 @@ "id": "b0f90a0b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:10:04.869669Z", - "iopub.status.busy": "2023-01-24T18:10:04.869113Z", - "iopub.status.idle": "2023-01-24T18:12:17.525899Z", - "shell.execute_reply": "2023-01-24T18:12:17.520997Z" + "iopub.execute_input": "2023-01-25T20:23:41.503424Z", + "iopub.status.busy": "2023-01-25T20:23:41.502414Z", + "iopub.status.idle": "2023-01-25T20:26:22.218831Z", + "shell.execute_reply": "2023-01-25T20:26:22.209445Z" }, "papermill": { - "duration": 132.686918, - "end_time": "2023-01-24T18:12:17.546031", + "duration": 160.782182, + "end_time": "2023-01-25T20:26:22.271107", "exception": false, - "start_time": "2023-01-24T18:10:04.859113", + "start_time": "2023-01-25T20:23:41.488925", "status": "completed" }, "tags": [] @@ -537,7 +537,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "ecephys_session_1064644573.nwb: 100%|██████████| 2.99G/2.99G [01:26<00:00, 34.8MMB/s]\n" + "ecephys_session_1064644573.nwb: 100%|██████████| 2.99G/2.99G [01:47<00:00, 27.9MMB/s]\n" ] } ], @@ -552,10 +552,10 @@ "id": "7e1806a2", "metadata": { "papermill": { - "duration": 0.036927, - "end_time": "2023-01-24T18:12:17.712014", + "duration": 0.058064, + "end_time": "2023-01-25T20:26:22.681427", "exception": false, - "start_time": "2023-01-24T18:12:17.675087", + "start_time": "2023-01-25T20:26:22.623363", "status": "completed" }, "tags": [] @@ -570,16 +570,16 @@ "id": "ab91dc89", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:12:17.788589Z", - "iopub.status.busy": "2023-01-24T18:12:17.788146Z", - "iopub.status.idle": "2023-01-24T18:12:17.797814Z", - "shell.execute_reply": "2023-01-24T18:12:17.797121Z" + "iopub.execute_input": "2023-01-25T20:26:22.814131Z", + "iopub.status.busy": "2023-01-25T20:26:22.813576Z", + "iopub.status.idle": "2023-01-25T20:26:22.829744Z", + "shell.execute_reply": "2023-01-25T20:26:22.828269Z" }, "papermill": { - "duration": 0.053667, - "end_time": "2023-01-24T18:12:17.801742", + "duration": 0.095728, + "end_time": "2023-01-25T20:26:22.833802", "exception": false, - "start_time": "2023-01-24T18:12:17.748075", + "start_time": "2023-01-25T20:26:22.738074", "status": "completed" }, "scrolled": false, @@ -620,10 +620,10 @@ "id": "495b3cbe", "metadata": { "papermill": { - "duration": 0.036493, - "end_time": "2023-01-24T18:12:17.875159", + "duration": 0.057613, + "end_time": "2023-01-25T20:26:22.950500", "exception": false, - "start_time": "2023-01-24T18:12:17.838666", + "start_time": "2023-01-25T20:26:22.892887", "status": "completed" }, "tags": [] @@ -638,16 +638,16 @@ "id": "f0c150f0", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:12:17.949818Z", - "iopub.status.busy": "2023-01-24T18:12:17.949257Z", - "iopub.status.idle": "2023-01-24T18:12:18.364181Z", - "shell.execute_reply": "2023-01-24T18:12:18.363535Z" + "iopub.execute_input": "2023-01-25T20:26:23.078162Z", + "iopub.status.busy": "2023-01-25T20:26:23.077773Z", + "iopub.status.idle": "2023-01-25T20:26:23.709072Z", + "shell.execute_reply": "2023-01-25T20:26:23.707905Z" }, "papermill": { - "duration": 0.454626, - "end_time": "2023-01-24T18:12:18.366451", + "duration": 0.701967, + "end_time": "2023-01-25T20:26:23.711868", "exception": false, - "start_time": "2023-01-24T18:12:17.911825", + "start_time": "2023-01-25T20:26:23.009901", "status": "completed" }, "scrolled": false, @@ -666,10 +666,10 @@ "id": "f760f96a", "metadata": { "papermill": { - "duration": 0.036745, - "end_time": "2023-01-24T18:12:18.441030", + "duration": 0.053055, + "end_time": "2023-01-25T20:26:23.823385", "exception": false, - "start_time": "2023-01-24T18:12:18.404285", + "start_time": "2023-01-25T20:26:23.770330", "status": "completed" }, "tags": [] @@ -684,16 +684,16 @@ "id": "498d3ff5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:12:18.519938Z", - "iopub.status.busy": "2023-01-24T18:12:18.519049Z", - "iopub.status.idle": "2023-01-24T18:12:18.528419Z", - "shell.execute_reply": "2023-01-24T18:12:18.527902Z" + "iopub.execute_input": "2023-01-25T20:26:23.934664Z", + "iopub.status.busy": "2023-01-25T20:26:23.933922Z", + "iopub.status.idle": "2023-01-25T20:26:23.949035Z", + "shell.execute_reply": "2023-01-25T20:26:23.947873Z" }, "papermill": { - "duration": 0.052105, - "end_time": "2023-01-24T18:12:18.529940", + "duration": 0.072365, + "end_time": "2023-01-25T20:26:23.951603", "exception": false, - "start_time": "2023-01-24T18:12:18.477835", + "start_time": "2023-01-25T20:26:23.879238", "status": "completed" }, "tags": [] @@ -747,10 +747,10 @@ "id": "197d8e59", "metadata": { "papermill": { - "duration": 0.03716, - "end_time": "2023-01-24T18:12:18.614008", + "duration": 0.05977, + "end_time": "2023-01-25T20:26:24.067785", "exception": false, - "start_time": "2023-01-24T18:12:18.576848", + "start_time": "2023-01-25T20:26:24.008015", "status": "completed" }, "tags": [] @@ -764,10 +764,10 @@ "id": "8005463a", "metadata": { "papermill": { - "duration": 0.036621, - "end_time": "2023-01-24T18:12:18.687391", + "duration": 0.061467, + "end_time": "2023-01-25T20:26:24.188773", "exception": false, - "start_time": "2023-01-24T18:12:18.650770", + "start_time": "2023-01-25T20:26:24.127306", "status": "completed" }, "tags": [] @@ -782,16 +782,16 @@ "id": "ead54c6c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:12:18.762134Z", - "iopub.status.busy": "2023-01-24T18:12:18.761384Z", - "iopub.status.idle": "2023-01-24T18:12:18.772898Z", - "shell.execute_reply": "2023-01-24T18:12:18.772289Z" + "iopub.execute_input": "2023-01-25T20:26:24.305018Z", + "iopub.status.busy": "2023-01-25T20:26:24.304131Z", + "iopub.status.idle": "2023-01-25T20:26:24.324718Z", + "shell.execute_reply": "2023-01-25T20:26:24.323762Z" }, "papermill": { - "duration": 0.050762, - "end_time": "2023-01-24T18:12:18.774561", + "duration": 0.079618, + "end_time": "2023-01-25T20:26:24.326824", "exception": false, - "start_time": "2023-01-24T18:12:18.723799", + "start_time": "2023-01-25T20:26:24.247206", "status": "completed" }, "tags": [] @@ -815,10 +815,10 @@ "id": "f4c7f5ab", "metadata": { "papermill": { - "duration": 0.03667, - "end_time": "2023-01-24T18:12:18.848633", + "duration": 0.056833, + "end_time": "2023-01-25T20:26:24.442480", "exception": false, - "start_time": "2023-01-24T18:12:18.811963", + "start_time": "2023-01-25T20:26:24.385647", "status": "completed" }, "tags": [] @@ -833,16 +833,16 @@ "id": "92f7225e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:12:18.924019Z", - "iopub.status.busy": "2023-01-24T18:12:18.923454Z", - "iopub.status.idle": "2023-01-24T18:12:18.958341Z", - "shell.execute_reply": "2023-01-24T18:12:18.957145Z" + "iopub.execute_input": "2023-01-25T20:26:24.560070Z", + "iopub.status.busy": "2023-01-25T20:26:24.559681Z", + "iopub.status.idle": "2023-01-25T20:26:26.079071Z", + "shell.execute_reply": "2023-01-25T20:26:26.078023Z" }, "papermill": { - "duration": 0.074446, - "end_time": "2023-01-24T18:12:18.959848", + "duration": 1.582155, + "end_time": "2023-01-25T20:26:26.081773", "exception": false, - "start_time": "2023-01-24T18:12:18.885402", + "start_time": "2023-01-25T20:26:24.499618", "status": "completed" }, "tags": [] @@ -860,16 +860,16 @@ "id": "2c5cafe9", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:12:19.034811Z", - "iopub.status.busy": "2023-01-24T18:12:19.034128Z", - "iopub.status.idle": "2023-01-24T18:12:19.043963Z", - "shell.execute_reply": "2023-01-24T18:12:19.043295Z" + "iopub.execute_input": "2023-01-25T20:26:26.197279Z", + "iopub.status.busy": "2023-01-25T20:26:26.196907Z", + "iopub.status.idle": "2023-01-25T20:26:26.212796Z", + "shell.execute_reply": "2023-01-25T20:26:26.211901Z" }, "papermill": { - "duration": 0.048804, - "end_time": "2023-01-24T18:12:19.045412", + "duration": 0.074906, + "end_time": "2023-01-25T20:26:26.215224", "exception": false, - "start_time": "2023-01-24T18:12:18.996608", + "start_time": "2023-01-25T20:26:26.140318", "status": "completed" }, "tags": [] @@ -894,10 +894,10 @@ "id": "6d91a47f", "metadata": { "papermill": { - "duration": 0.036457, - "end_time": "2023-01-24T18:12:19.118834", + "duration": 0.07043, + "end_time": "2023-01-25T20:26:26.355240", "exception": false, - "start_time": "2023-01-24T18:12:19.082377", + "start_time": "2023-01-25T20:26:26.284810", "status": "completed" }, "tags": [] @@ -912,16 +912,16 @@ "id": "60233d07", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:12:19.194126Z", - "iopub.status.busy": "2023-01-24T18:12:19.193567Z", - "iopub.status.idle": "2023-01-24T18:12:19.870903Z", - "shell.execute_reply": "2023-01-24T18:12:19.870201Z" + "iopub.execute_input": "2023-01-25T20:26:26.467279Z", + "iopub.status.busy": "2023-01-25T20:26:26.466460Z", + "iopub.status.idle": "2023-01-25T20:26:27.675196Z", + "shell.execute_reply": "2023-01-25T20:26:27.673993Z" }, "papermill": { - "duration": 0.717191, - "end_time": "2023-01-24T18:12:19.872805", + "duration": 1.267878, + "end_time": "2023-01-25T20:26:27.678812", "exception": false, - "start_time": "2023-01-24T18:12:19.155614", + "start_time": "2023-01-25T20:26:26.410934", "status": "completed" }, "tags": [] @@ -949,16 +949,16 @@ "id": "5ca6583a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:12:19.949162Z", - "iopub.status.busy": "2023-01-24T18:12:19.948448Z", - "iopub.status.idle": "2023-01-24T18:12:20.265488Z", - "shell.execute_reply": "2023-01-24T18:12:20.264730Z" + "iopub.execute_input": "2023-01-25T20:26:27.796768Z", + "iopub.status.busy": "2023-01-25T20:26:27.795934Z", + "iopub.status.idle": "2023-01-25T20:26:28.275210Z", + "shell.execute_reply": "2023-01-25T20:26:28.273002Z" }, "papermill": { - "duration": 0.366137, - "end_time": "2023-01-24T18:12:20.275981", + "duration": 0.544689, + "end_time": "2023-01-25T20:26:28.284132", "exception": false, - "start_time": "2023-01-24T18:12:19.909844", + "start_time": "2023-01-25T20:26:27.739443", "status": "completed" }, "tags": [] @@ -1010,10 +1010,10 @@ "id": "4a7ab2fd", "metadata": { "papermill": { - "duration": 0.039597, - "end_time": "2023-01-24T18:12:20.361408", + "duration": 0.059305, + "end_time": "2023-01-25T20:26:28.411156", "exception": false, - "start_time": "2023-01-24T18:12:20.321811", + "start_time": "2023-01-25T20:26:28.351851", "status": "completed" }, "tags": [] @@ -1027,10 +1027,10 @@ "id": "a42cbb97", "metadata": { "papermill": { - "duration": 0.039192, - "end_time": "2023-01-24T18:12:20.439575", + "duration": 0.054859, + "end_time": "2023-01-25T20:26:28.525718", "exception": false, - "start_time": "2023-01-24T18:12:20.400383", + "start_time": "2023-01-25T20:26:28.470859", "status": "completed" }, "tags": [] @@ -1045,16 +1045,16 @@ "id": "6eaa97af", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:12:20.518558Z", - "iopub.status.busy": "2023-01-24T18:12:20.518144Z", - "iopub.status.idle": "2023-01-24T18:12:20.530428Z", - "shell.execute_reply": "2023-01-24T18:12:20.529468Z" + "iopub.execute_input": "2023-01-25T20:26:28.643484Z", + "iopub.status.busy": "2023-01-25T20:26:28.642877Z", + "iopub.status.idle": "2023-01-25T20:26:28.660298Z", + "shell.execute_reply": "2023-01-25T20:26:28.659325Z" }, "papermill": { - "duration": 0.054106, - "end_time": "2023-01-24T18:12:20.532335", + "duration": 0.079031, + "end_time": "2023-01-25T20:26:28.662497", "exception": false, - "start_time": "2023-01-24T18:12:20.478229", + "start_time": "2023-01-25T20:26:28.583466", "status": "completed" }, "tags": [] @@ -1072,16 +1072,16 @@ "id": "82f0acfd", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:12:20.611760Z", - "iopub.status.busy": "2023-01-24T18:12:20.611314Z", - "iopub.status.idle": "2023-01-24T18:12:36.172579Z", - "shell.execute_reply": "2023-01-24T18:12:36.171908Z" + "iopub.execute_input": "2023-01-25T20:26:28.780312Z", + "iopub.status.busy": "2023-01-25T20:26:28.779435Z", + "iopub.status.idle": "2023-01-25T20:26:56.547378Z", + "shell.execute_reply": "2023-01-25T20:26:56.546341Z" }, "papermill": { - "duration": 15.60338, - "end_time": "2023-01-24T18:12:36.174879", + "duration": 27.826466, + "end_time": "2023-01-25T20:26:56.549736", "exception": false, - "start_time": "2023-01-24T18:12:20.571499", + "start_time": "2023-01-25T20:26:28.723270", "status": "completed" }, "tags": [] @@ -1113,16 +1113,16 @@ "id": "86b3f68c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:12:36.256092Z", - "iopub.status.busy": "2023-01-24T18:12:36.255377Z", - "iopub.status.idle": "2023-01-24T18:12:38.412986Z", - "shell.execute_reply": "2023-01-24T18:12:38.412146Z" + "iopub.execute_input": "2023-01-25T20:26:56.659399Z", + "iopub.status.busy": "2023-01-25T20:26:56.658647Z", + "iopub.status.idle": "2023-01-25T20:26:59.887201Z", + "shell.execute_reply": "2023-01-25T20:26:59.886293Z" }, "papermill": { - "duration": 2.201414, - "end_time": "2023-01-24T18:12:38.416368", + "duration": 3.283652, + "end_time": "2023-01-25T20:26:59.889626", "exception": false, - "start_time": "2023-01-24T18:12:36.214954", + "start_time": "2023-01-25T20:26:56.605974", "status": "completed" }, "tags": [] @@ -1155,10 +1155,10 @@ "id": "a2a62234", "metadata": { "papermill": { - "duration": 0.040143, - "end_time": "2023-01-24T18:12:38.750113", + "duration": 0.052986, + "end_time": "2023-01-25T20:27:00.000297", "exception": false, - "start_time": "2023-01-24T18:12:38.709970", + "start_time": "2023-01-25T20:26:59.947311", "status": "completed" }, "tags": [] @@ -1172,10 +1172,10 @@ "id": "ec5fe1c2", "metadata": { "papermill": { - "duration": 0.039782, - "end_time": "2023-01-24T18:12:38.829873", + "duration": 0.053193, + "end_time": "2023-01-25T20:27:00.108496", "exception": false, - "start_time": "2023-01-24T18:12:38.790091", + "start_time": "2023-01-25T20:27:00.055303", "status": "completed" }, "tags": [] @@ -1190,16 +1190,16 @@ "id": "84555d37", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:12:38.912003Z", - "iopub.status.busy": "2023-01-24T18:12:38.911399Z", - "iopub.status.idle": "2023-01-24T18:12:38.921696Z", - "shell.execute_reply": "2023-01-24T18:12:38.921166Z" + "iopub.execute_input": "2023-01-25T20:27:00.219279Z", + "iopub.status.busy": "2023-01-25T20:27:00.218437Z", + "iopub.status.idle": "2023-01-25T20:27:00.235121Z", + "shell.execute_reply": "2023-01-25T20:27:00.234156Z" }, "papermill": { - "duration": 0.053003, - "end_time": "2023-01-24T18:12:38.923102", + "duration": 0.075668, + "end_time": "2023-01-25T20:27:00.237438", "exception": false, - "start_time": "2023-01-24T18:12:38.870099", + "start_time": "2023-01-25T20:27:00.161770", "status": "completed" }, "tags": [] @@ -1326,10 +1326,10 @@ "id": "bcc490f0", "metadata": { "papermill": { - "duration": 0.04037, - "end_time": "2023-01-24T18:12:39.004167", + "duration": 0.052694, + "end_time": "2023-01-25T20:27:00.347100", "exception": false, - "start_time": "2023-01-24T18:12:38.963797", + "start_time": "2023-01-25T20:27:00.294406", "status": "completed" }, "tags": [] @@ -1343,10 +1343,10 @@ "id": "3ee94bfe", "metadata": { "papermill": { - "duration": 0.040191, - "end_time": "2023-01-24T18:12:39.084499", + "duration": 0.056626, + "end_time": "2023-01-25T20:27:00.460153", "exception": false, - "start_time": "2023-01-24T18:12:39.044308", + "start_time": "2023-01-25T20:27:00.403527", "status": "completed" }, "tags": [] @@ -1362,10 +1362,10 @@ "id": "16963e67", "metadata": { "papermill": { - "duration": 0.040034, - "end_time": "2023-01-24T18:12:39.164503", + "duration": 0.057887, + "end_time": "2023-01-25T20:27:00.571706", "exception": false, - "start_time": "2023-01-24T18:12:39.124469", + "start_time": "2023-01-25T20:27:00.513819", "status": "completed" }, "tags": [] @@ -1380,16 +1380,16 @@ "id": "a5fe9abe", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:12:39.246732Z", - "iopub.status.busy": "2023-01-24T18:12:39.246021Z", - "iopub.status.idle": "2023-01-24T18:12:40.222333Z", - "shell.execute_reply": "2023-01-24T18:12:40.221657Z" + "iopub.execute_input": "2023-01-25T20:27:00.683637Z", + "iopub.status.busy": "2023-01-25T20:27:00.682796Z", + "iopub.status.idle": "2023-01-25T20:27:02.360038Z", + "shell.execute_reply": "2023-01-25T20:27:02.358969Z" }, "papermill": { - "duration": 1.019671, - "end_time": "2023-01-24T18:12:40.224206", + "duration": 1.73811, + "end_time": "2023-01-25T20:27:02.363046", "exception": false, - "start_time": "2023-01-24T18:12:39.204535", + "start_time": "2023-01-25T20:27:00.624936", "status": "completed" }, "tags": [] @@ -1428,16 +1428,16 @@ "id": "b011f619", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:12:40.307986Z", - "iopub.status.busy": "2023-01-24T18:12:40.307201Z", - "iopub.status.idle": "2023-01-24T18:12:40.515207Z", - "shell.execute_reply": "2023-01-24T18:12:40.514405Z" + "iopub.execute_input": "2023-01-25T20:27:02.483895Z", + "iopub.status.busy": "2023-01-25T20:27:02.483022Z", + "iopub.status.idle": "2023-01-25T20:27:02.756691Z", + "shell.execute_reply": "2023-01-25T20:27:02.754398Z" }, "papermill": { - "duration": 0.259722, - "end_time": "2023-01-24T18:12:40.525118", + "duration": 0.335711, + "end_time": "2023-01-25T20:27:02.759291", "exception": false, - "start_time": "2023-01-24T18:12:40.265396", + "start_time": "2023-01-25T20:27:02.423580", "status": "completed" }, "tags": [] @@ -1480,10 +1480,10 @@ "id": "3b7679c0", "metadata": { "papermill": { - "duration": 0.042669, - "end_time": "2023-01-24T18:12:40.617189", + "duration": 0.066028, + "end_time": "2023-01-25T20:27:02.889480", "exception": false, - "start_time": "2023-01-24T18:12:40.574520", + "start_time": "2023-01-25T20:27:02.823452", "status": "completed" }, "tags": [] @@ -1500,16 +1500,16 @@ "id": "1599f91d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:12:40.704045Z", - "iopub.status.busy": "2023-01-24T18:12:40.703253Z", - "iopub.status.idle": "2023-01-24T18:12:40.708147Z", - "shell.execute_reply": "2023-01-24T18:12:40.707144Z" + "iopub.execute_input": "2023-01-25T20:27:03.026776Z", + "iopub.status.busy": "2023-01-25T20:27:03.026205Z", + "iopub.status.idle": "2023-01-25T20:27:03.032081Z", + "shell.execute_reply": "2023-01-25T20:27:03.031265Z" }, "papermill": { - "duration": 0.049916, - "end_time": "2023-01-24T18:12:40.709621", + "duration": 0.08258, + "end_time": "2023-01-25T20:27:03.033919", "exception": false, - "start_time": "2023-01-24T18:12:40.659705", + "start_time": "2023-01-25T20:27:02.951339", "status": "completed" }, "tags": [] @@ -1529,16 +1529,16 @@ "id": "8c970f67", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T18:12:40.796541Z", - "iopub.status.busy": "2023-01-24T18:12:40.795997Z", - "iopub.status.idle": "2023-01-24T18:12:41.264370Z", - "shell.execute_reply": "2023-01-24T18:12:41.263667Z" + "iopub.execute_input": "2023-01-25T20:27:03.160290Z", + "iopub.status.busy": "2023-01-25T20:27:03.159711Z", + "iopub.status.idle": "2023-01-25T20:27:03.878221Z", + "shell.execute_reply": "2023-01-25T20:27:03.876784Z" }, "papermill": { - "duration": 0.513769, - "end_time": "2023-01-24T18:12:41.266099", + "duration": 0.78382, + "end_time": "2023-01-25T20:27:03.881335", "exception": false, - "start_time": "2023-01-24T18:12:40.752330", + "start_time": "2023-01-25T20:27:03.097515", "status": "completed" }, "tags": [] @@ -1607,17 +1607,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 172.94579, - "end_time": "2023-01-24T18:12:42.938415", + "duration": 223.266409, + "end_time": "2023-01-25T20:27:07.399970", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/visual_behavior_neuropixels_quickstart.ipynb", - "output_path": "/tmp/tmpk6sm1u3a/scratch_nb.ipynb", + "output_path": "/tmp/tmp5_gi35bw/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmpk6sm1u3a", + "output_dir": "/tmp/tmp5_gi35bw", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T18:09:49.992625", + "start_time": "2023-01-25T20:23:24.133561", "version": "2.4.0" }, "vscode": { diff --git a/doc_template/examples_root/examples/nb/visual_behavior_ophys_data_access.ipynb b/doc_template/examples_root/examples/nb/visual_behavior_ophys_data_access.ipynb index d1dc604a3..70ff51792 100644 --- a/doc_template/examples_root/examples/nb/visual_behavior_ophys_data_access.ipynb +++ b/doc_template/examples_root/examples/nb/visual_behavior_ophys_data_access.ipynb @@ -5,10 +5,10 @@ "id": "8432ad9b", "metadata": { "papermill": { - "duration": 0.011327, - "end_time": "2023-01-24T16:53:42.212601", + "duration": 0.014641, + "end_time": "2023-01-25T19:00:11.993423", "exception": false, - "start_time": "2023-01-24T16:53:42.201274", + "start_time": "2023-01-25T19:00:11.978782", "status": "completed" }, "pycharm": { @@ -25,10 +25,10 @@ "id": "86cb4f05", "metadata": { "papermill": { - "duration": 0.00986, - "end_time": "2023-01-24T16:53:42.232663", + "duration": 0.012148, + "end_time": "2023-01-25T19:00:12.017972", "exception": false, - "start_time": "2023-01-24T16:53:42.222803", + "start_time": "2023-01-25T19:00:12.005824", "status": "completed" }, "pycharm": { @@ -51,10 +51,10 @@ "id": "1be4fb02", "metadata": { "papermill": { - "duration": 0.009621, - "end_time": "2023-01-24T16:53:42.252035", + "duration": 0.012136, + "end_time": "2023-01-25T19:00:12.046673", "exception": false, - "start_time": "2023-01-24T16:53:42.242414", + "start_time": "2023-01-25T19:00:12.034537", "status": "completed" }, "pycharm": { @@ -75,10 +75,10 @@ "id": "4e9c2097", "metadata": { "papermill": { - "duration": 0.009707, - "end_time": "2023-01-24T16:53:42.271449", + "duration": 0.011756, + "end_time": "2023-01-25T19:00:12.071145", "exception": false, - "start_time": "2023-01-24T16:53:42.261742", + "start_time": "2023-01-25T19:00:12.059389", "status": "completed" }, "pycharm": { @@ -113,10 +113,10 @@ "id": "fe5057d6", "metadata": { "papermill": { - "duration": 0.00957, - "end_time": "2023-01-24T16:53:42.291122", + "duration": 0.012413, + "end_time": "2023-01-25T19:00:12.098844", "exception": false, - "start_time": "2023-01-24T16:53:42.281552", + "start_time": "2023-01-25T19:00:12.086431", "status": "completed" }, "pycharm": { @@ -133,10 +133,10 @@ "id": "68b8cb24", "metadata": { "papermill": { - "duration": 0.009588, - "end_time": "2023-01-24T16:53:42.310534", + "duration": 0.012692, + "end_time": "2023-01-25T19:00:12.124601", "exception": false, - "start_time": "2023-01-24T16:53:42.300946", + "start_time": "2023-01-25T19:00:12.111909", "status": "completed" }, "pycharm": { @@ -154,16 +154,16 @@ "id": "5e8afbc8", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:42.331461Z", - "iopub.status.busy": "2023-01-24T16:53:42.331000Z", - "iopub.status.idle": "2023-01-24T16:53:44.639303Z", - "shell.execute_reply": "2023-01-24T16:53:44.638476Z" + "iopub.execute_input": "2023-01-25T19:00:12.150191Z", + "iopub.status.busy": "2023-01-25T19:00:12.149832Z", + "iopub.status.idle": "2023-01-25T19:00:15.347993Z", + "shell.execute_reply": "2023-01-25T19:00:15.346755Z" }, "papermill": { - "duration": 2.321471, - "end_time": "2023-01-24T16:53:44.641718", + "duration": 3.214888, + "end_time": "2023-01-25T19:00:15.351445", "exception": false, - "start_time": "2023-01-24T16:53:42.320247", + "start_time": "2023-01-25T19:00:12.136557", "status": "completed" }, "pycharm": { @@ -176,81 +176,81 @@ "name": "stdout", "output_type": "stream", "text": [ - "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.0)\r\n", + "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.1)\r\n", + "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", + "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", + "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", + "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", + "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", + "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", + "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", + "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", + "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", + "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", "Requirement already satisfied: requests<3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.28.2)\r\n", - "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", + "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", + "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", - "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", - "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", - "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", - "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", + "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", - "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", - "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", - "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", - "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", + "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", "Requirement already satisfied: aiohttp==3.7.4 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.7.4)\r\n", - "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", + "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", + "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", + "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", + "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", + "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", "Requirement already satisfied: requests-toolbelt<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.10.1)\r\n", - "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", - "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", - "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", - "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", + "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", - "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", + "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", - "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", - "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", - "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", - "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", - "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", - "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", - "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", "Requirement already satisfied: yarl<2.0,>=1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (1.8.2)\r\n", - "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (6.0.4)\r\n", - "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", "Requirement already satisfied: chardet<4.0,>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.4)\r\n", "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", - "Requirement already satisfied: botocore<1.21.0,>=1.20.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (1.20.112)\r\n", + "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (6.0.4)\r\n", + "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", + "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", "Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.3.7)\r\n", + "Requirement already satisfied: botocore<1.21.0,>=1.20.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (1.20.112)\r\n", "Requirement already satisfied: jmespath<1.0.0,>=0.7.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.10.0)\r\n", "Requirement already satisfied: setuptools in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from glymur==0.8.19->allensdk) (56.0.0)\r\n", - "Requirement already satisfied: pyyaml in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (6.0)\r\n", "Requirement already satisfied: marshmallow<4.0,>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (3.19.0)\r\n", + "Requirement already satisfied: pyyaml in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (6.0)\r\n", "Requirement already satisfied: jsonschema<5,>=2.6.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (4.17.3)\r\n", "Requirement already satisfied: ruamel.yaml<1,>=0.16 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (0.17.21)\r\n", "Requirement already satisfied: MarkupSafe>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jinja2>=3.0.0->allensdk) (2.1.2)\r\n", "Requirement already satisfied: pyparsing>=2.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (3.0.9)\r\n", - "Requirement already satisfied: cycler>=0.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (0.11.0)\r\n", "Requirement already satisfied: pillow>=6.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (9.4.0)\r\n", "Requirement already satisfied: kiwisolver>=1.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (1.4.4)\r\n", + "Requirement already satisfied: cycler>=0.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (0.11.0)\r\n", "Requirement already satisfied: pytz>=2020.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from pandas>=1.1.5->allensdk) (2022.7.1)\r\n", - "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.0.1)\r\n", - "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", "Requirement already satisfied: certifi>=2017.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (2022.12.7)\r\n", "Requirement already satisfied: idna<4,>=2.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.4)\r\n", - "Requirement already satisfied: distro in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (1.8.0)\r\n", - "Requirement already satisfied: wheel>=0.32.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (0.38.4)\r\n", + "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.0.1)\r\n", "Requirement already satisfied: packaging in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (23.0)\r\n", - "Requirement already satisfied: tifffile>=2019.7.26 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2023.1.23.1)\r\n", - "Requirement already satisfied: networkx>=2.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (3.0)\r\n", + "Requirement already satisfied: wheel>=0.32.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (0.38.4)\r\n", + "Requirement already satisfied: distro in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (1.8.0)\r\n", "Requirement already satisfied: imageio>=2.4.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2.25.0)\r\n", "Requirement already satisfied: PyWavelets>=1.1.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (1.4.1)\r\n", + "Requirement already satisfied: networkx>=2.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (3.0)\r\n", + "Requirement already satisfied: tifffile>=2019.7.26 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2023.1.23.1)\r\n", "Requirement already satisfied: patsy>=0.5.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from statsmodels<=0.13.0->allensdk) (0.5.3)\r\n", "Requirement already satisfied: greenlet!=0.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from sqlalchemy->allensdk) (2.0.1)\r\n", - "Requirement already satisfied: py-cpuinfo in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (9.0.0)\r\n", + "Requirement already satisfied: numexpr>=2.6.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.8.4)\r\n", "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", + "Requirement already satisfied: py-cpuinfo in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (9.0.0)\r\n", "Requirement already satisfied: blosc2~=2.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.0.0)\r\n", - "Requirement already satisfied: numexpr>=2.6.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.8.4)\r\n", "Requirement already satisfied: msgpack in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from blosc2~=2.0.0->tables->allensdk) (1.0.4)\r\n", "Requirement already satisfied: pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (0.19.3)\r\n", - "Requirement already satisfied: importlib-resources>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (5.10.2)\r\n", "Requirement already satisfied: pkgutil-resolve-name>=1.3.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (1.3.10)\r\n", + "Requirement already satisfied: importlib-resources>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (5.10.2)\r\n", "Requirement already satisfied: ruamel.yaml.clib>=0.2.6 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from ruamel.yaml<1,>=0.16->hdmf<=3.4.7->allensdk) (0.2.7)\r\n", "Requirement already satisfied: zipp>=3.1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from importlib-resources>=1.4.0->jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (3.11.0)\r\n" ] @@ -265,10 +265,10 @@ "id": "05e83dd7", "metadata": { "papermill": { - "duration": 0.010878, - "end_time": "2023-01-24T16:53:44.663864", + "duration": 0.014837, + "end_time": "2023-01-25T19:00:15.381729", "exception": false, - "start_time": "2023-01-24T16:53:44.652986", + "start_time": "2023-01-25T19:00:15.366892", "status": "completed" }, "pycharm": { @@ -285,10 +285,10 @@ "id": "ff3f2f34", "metadata": { "papermill": { - "duration": 0.010505, - "end_time": "2023-01-24T16:53:44.684895", + "duration": 0.022344, + "end_time": "2023-01-25T19:00:15.424091", "exception": false, - "start_time": "2023-01-24T16:53:44.674390", + "start_time": "2023-01-25T19:00:15.401747", "status": "completed" }, "pycharm": { @@ -309,16 +309,16 @@ "id": "03a52ea5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:44.707877Z", - "iopub.status.busy": "2023-01-24T16:53:44.707099Z", - "iopub.status.idle": "2023-01-24T16:53:48.814929Z", - "shell.execute_reply": "2023-01-24T16:53:48.814072Z" + "iopub.execute_input": "2023-01-25T19:00:15.455732Z", + "iopub.status.busy": "2023-01-25T19:00:15.455341Z", + "iopub.status.idle": "2023-01-25T19:00:20.712969Z", + "shell.execute_reply": "2023-01-25T19:00:20.711723Z" }, "papermill": { - "duration": 4.121492, - "end_time": "2023-01-24T16:53:48.816855", + "duration": 5.277051, + "end_time": "2023-01-25T19:00:20.715429", "exception": false, - "start_time": "2023-01-24T16:53:44.695363", + "start_time": "2023-01-25T19:00:15.438378", "status": "completed" }, "pycharm": { @@ -332,81 +332,81 @@ "output_type": "stream", "text": [ "Requirement already satisfied: pip in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (22.3.1)\r\n", - "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.0)\r\n", - "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", - "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", - "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", - "Requirement already satisfied: requests-toolbelt<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.10.1)\r\n", + "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.1)\r\n", + "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", - "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", - "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", + "Requirement already satisfied: requests<3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.28.2)\r\n", + "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", - "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", - "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", - "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", + "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", + "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", + "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", - "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", - "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", - "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", - "Requirement already satisfied: requests<3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.28.2)\r\n", + "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", + "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", - "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", - "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", - "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", - "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", - "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", - "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", + "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", + "Requirement already satisfied: requests-toolbelt<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.10.1)\r\n", + "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", + "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", + "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", + "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", - "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", + "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", + "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", + "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", + "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", + "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", + "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", - "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", - "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", - "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", - "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", + "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", + "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", "Requirement already satisfied: aiohttp==3.7.4 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.7.4)\r\n", - "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", - "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", - "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", + "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", + "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", + "Requirement already satisfied: yarl<2.0,>=1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (1.8.2)\r\n", "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (6.0.4)\r\n", + "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", "Requirement already satisfied: chardet<4.0,>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.4)\r\n", - "Requirement already satisfied: yarl<2.0,>=1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (1.8.2)\r\n", + "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", + "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", "Requirement already satisfied: jmespath<1.0.0,>=0.7.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.10.0)\r\n", - "Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.3.7)\r\n", "Requirement already satisfied: botocore<1.21.0,>=1.20.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (1.20.112)\r\n", + "Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.3.7)\r\n", "Requirement already satisfied: setuptools in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from glymur==0.8.19->allensdk) (56.0.0)\r\n", "Requirement already satisfied: marshmallow<4.0,>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (3.19.0)\r\n", "Requirement already satisfied: pyyaml in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (6.0)\r\n", "Requirement already satisfied: jsonschema<5,>=2.6.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (4.17.3)\r\n", "Requirement already satisfied: ruamel.yaml<1,>=0.16 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (0.17.21)\r\n", "Requirement already satisfied: MarkupSafe>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jinja2>=3.0.0->allensdk) (2.1.2)\r\n", + "Requirement already satisfied: pyparsing>=2.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (3.0.9)\r\n", + "Requirement already satisfied: kiwisolver>=1.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (1.4.4)\r\n", "Requirement already satisfied: pillow>=6.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (9.4.0)\r\n", "Requirement already satisfied: cycler>=0.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (0.11.0)\r\n", - "Requirement already satisfied: kiwisolver>=1.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (1.4.4)\r\n", - "Requirement already satisfied: pyparsing>=2.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (3.0.9)\r\n", "Requirement already satisfied: pytz>=2020.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from pandas>=1.1.5->allensdk) (2022.7.1)\r\n", "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.0.1)\r\n", - "Requirement already satisfied: idna<4,>=2.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.4)\r\n", - "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", "Requirement already satisfied: certifi>=2017.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (2022.12.7)\r\n", + "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", + "Requirement already satisfied: idna<4,>=2.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.4)\r\n", + "Requirement already satisfied: wheel>=0.32.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (0.38.4)\r\n", "Requirement already satisfied: packaging in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (23.0)\r\n", "Requirement already satisfied: distro in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (1.8.0)\r\n", - "Requirement already satisfied: wheel>=0.32.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (0.38.4)\r\n", "Requirement already satisfied: networkx>=2.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (3.0)\r\n", "Requirement already satisfied: PyWavelets>=1.1.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (1.4.1)\r\n", - "Requirement already satisfied: imageio>=2.4.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2.25.0)\r\n", "Requirement already satisfied: tifffile>=2019.7.26 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2023.1.23.1)\r\n", + "Requirement already satisfied: imageio>=2.4.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2.25.0)\r\n", "Requirement already satisfied: patsy>=0.5.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from statsmodels<=0.13.0->allensdk) (0.5.3)\r\n", "Requirement already satisfied: greenlet!=0.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from sqlalchemy->allensdk) (2.0.1)\r\n", + "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", "Requirement already satisfied: numexpr>=2.6.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.8.4)\r\n", - "Requirement already satisfied: py-cpuinfo in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (9.0.0)\r\n", "Requirement already satisfied: blosc2~=2.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.0.0)\r\n", - "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", + "Requirement already satisfied: py-cpuinfo in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (9.0.0)\r\n", "Requirement already satisfied: msgpack in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from blosc2~=2.0.0->tables->allensdk) (1.0.4)\r\n", "Requirement already satisfied: pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (0.19.3)\r\n", - "Requirement already satisfied: importlib-resources>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (5.10.2)\r\n", "Requirement already satisfied: pkgutil-resolve-name>=1.3.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (1.3.10)\r\n", + "Requirement already satisfied: importlib-resources>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (5.10.2)\r\n", "Requirement already satisfied: ruamel.yaml.clib>=0.2.6 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from ruamel.yaml<1,>=0.16->hdmf<=3.4.7->allensdk) (0.2.7)\r\n", "Requirement already satisfied: zipp>=3.1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from importlib-resources>=1.4.0->jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (3.11.0)\r\n" ] @@ -422,10 +422,10 @@ "id": "b26fd439", "metadata": { "papermill": { - "duration": 0.011401, - "end_time": "2023-01-24T16:53:48.840111", + "duration": 0.014164, + "end_time": "2023-01-25T19:00:20.744583", "exception": false, - "start_time": "2023-01-24T16:53:48.828710", + "start_time": "2023-01-25T19:00:20.730419", "status": "completed" }, "pycharm": { @@ -443,16 +443,16 @@ "id": "396e1034", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:48.864925Z", - "iopub.status.busy": "2023-01-24T16:53:48.864111Z", - "iopub.status.idle": "2023-01-24T16:53:54.563062Z", - "shell.execute_reply": "2023-01-24T16:53:54.562450Z" + "iopub.execute_input": "2023-01-25T19:00:20.775294Z", + "iopub.status.busy": "2023-01-25T19:00:20.774914Z", + "iopub.status.idle": "2023-01-25T19:00:28.632120Z", + "shell.execute_reply": "2023-01-25T19:00:28.631022Z" }, "papermill": { - "duration": 5.713567, - "end_time": "2023-01-24T16:53:54.565008", + "duration": 7.875089, + "end_time": "2023-01-25T19:00:28.634144", "exception": false, - "start_time": "2023-01-24T16:53:48.851441", + "start_time": "2023-01-25T19:00:20.759055", "status": "completed" }, "pycharm": { @@ -473,7 +473,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "Your allensdk version is: 2.15.0\n" + "Your allensdk version is: 2.15.1\n" ] } ], @@ -494,16 +494,16 @@ "id": "781412bf", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:54.589982Z", - "iopub.status.busy": "2023-01-24T16:53:54.589363Z", - "iopub.status.idle": "2023-01-24T16:53:54.593250Z", - "shell.execute_reply": "2023-01-24T16:53:54.592576Z" + "iopub.execute_input": "2023-01-25T19:00:28.664556Z", + "iopub.status.busy": "2023-01-25T19:00:28.663414Z", + "iopub.status.idle": "2023-01-25T19:00:28.668621Z", + "shell.execute_reply": "2023-01-25T19:00:28.667657Z" }, "papermill": { - "duration": 0.018104, - "end_time": "2023-01-24T16:53:54.594944", + "duration": 0.021934, + "end_time": "2023-01-25T19:00:28.670600", "exception": false, - "start_time": "2023-01-24T16:53:54.576840", + "start_time": "2023-01-25T19:00:28.648666", "status": "completed" }, "pycharm": { @@ -527,16 +527,16 @@ "id": "22738ce0", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:54.647930Z", - "iopub.status.busy": "2023-01-24T16:53:54.647236Z", - "iopub.status.idle": "2023-01-24T16:53:56.411394Z", - "shell.execute_reply": "2023-01-24T16:53:56.410714Z" + "iopub.execute_input": "2023-01-25T19:00:28.736715Z", + "iopub.status.busy": "2023-01-25T19:00:28.735977Z", + "iopub.status.idle": "2023-01-25T19:00:30.699390Z", + "shell.execute_reply": "2023-01-25T19:00:30.698522Z" }, "papermill": { - "duration": 1.778622, - "end_time": "2023-01-24T16:53:56.413376", + "duration": 1.981258, + "end_time": "2023-01-25T19:00:30.701364", "exception": false, - "start_time": "2023-01-24T16:53:54.634754", + "start_time": "2023-01-25T19:00:28.720106", "status": "completed" }, "pycharm": { @@ -557,14 +557,14 @@ "\n", "To avoid this warning in the future, make sure that\n", "\n", - "/tmp/tmp88cfimnr/_downloaded_data.json\n", + "/tmp/tmpv0vm8dru/_downloaded_data.json\n", "\n", "is not deleted between instantiations of this cache\n", " warnings.warn(msg, MissingLocalManifestWarning)\n", - "ophys_session_table.csv: 100%|██████████| 227k/227k [00:00<00:00, 2.44MMB/s]\n", - "behavior_session_table.csv: 100%|██████████| 1.21M/1.21M [00:00<00:00, 11.6MMB/s]\n", - "ophys_experiment_table.csv: 100%|██████████| 610k/610k [00:00<00:00, 6.39MMB/s]\n", - "ophys_cells_table.csv: 100%|██████████| 4.29M/4.29M [00:00<00:00, 21.6MMB/s]\n" + "ophys_session_table.csv: 100%|██████████| 227k/227k [00:00<00:00, 2.35MMB/s]\n", + "behavior_session_table.csv: 100%|██████████| 1.21M/1.21M [00:00<00:00, 9.97MMB/s]\n", + "ophys_experiment_table.csv: 100%|██████████| 610k/610k [00:00<00:00, 5.68MMB/s]\n", + "ophys_cells_table.csv: 100%|██████████| 4.29M/4.29M [00:00<00:00, 13.7MMB/s]\n" ] } ], @@ -579,10 +579,10 @@ "id": "789b2c29", "metadata": { "papermill": { - "duration": 0.012484, - "end_time": "2023-01-24T16:53:56.438405", + "duration": 0.014225, + "end_time": "2023-01-25T19:00:30.731687", "exception": false, - "start_time": "2023-01-24T16:53:56.425921", + "start_time": "2023-01-25T19:00:30.717462", "status": "completed" }, "pycharm": { @@ -607,10 +607,10 @@ "id": "2c174b0a", "metadata": { "papermill": { - "duration": 0.012044, - "end_time": "2023-01-24T16:53:56.462575", + "duration": 0.01553, + "end_time": "2023-01-25T19:00:30.762182", "exception": false, - "start_time": "2023-01-24T16:53:56.450531", + "start_time": "2023-01-25T19:00:30.746652", "status": "completed" }, "pycharm": { @@ -629,10 +629,10 @@ "id": "df8231e7", "metadata": { "papermill": { - "duration": 0.011927, - "end_time": "2023-01-24T16:53:56.486513", + "duration": 0.016944, + "end_time": "2023-01-25T19:00:30.795305", "exception": false, - "start_time": "2023-01-24T16:53:56.474586", + "start_time": "2023-01-25T19:00:30.778361", "status": "completed" }, "pycharm": { @@ -652,16 +652,16 @@ "id": "90f5ce47", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:56.512171Z", - "iopub.status.busy": "2023-01-24T16:53:56.511615Z", - "iopub.status.idle": "2023-01-24T16:53:56.516902Z", - "shell.execute_reply": "2023-01-24T16:53:56.516388Z" + "iopub.execute_input": "2023-01-25T19:00:30.829095Z", + "iopub.status.busy": "2023-01-25T19:00:30.828524Z", + "iopub.status.idle": "2023-01-25T19:00:30.835747Z", + "shell.execute_reply": "2023-01-25T19:00:30.834939Z" }, "papermill": { - "duration": 0.019836, - "end_time": "2023-01-24T16:53:56.518327", + "duration": 0.02584, + "end_time": "2023-01-25T19:00:30.837595", "exception": false, - "start_time": "2023-01-24T16:53:56.498491", + "start_time": "2023-01-25T19:00:30.811755", "status": "completed" }, "pycharm": { @@ -694,10 +694,10 @@ "id": "58652284", "metadata": { "papermill": { - "duration": 0.012075, - "end_time": "2023-01-24T16:53:56.542567", + "duration": 0.015145, + "end_time": "2023-01-25T19:00:30.867199", "exception": false, - "start_time": "2023-01-24T16:53:56.530492", + "start_time": "2023-01-25T19:00:30.852054", "status": "completed" }, "pycharm": { @@ -715,16 +715,16 @@ "id": "376665f9", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:56.568461Z", - "iopub.status.busy": "2023-01-24T16:53:56.567778Z", - "iopub.status.idle": "2023-01-24T16:53:56.572663Z", - "shell.execute_reply": "2023-01-24T16:53:56.572056Z" + "iopub.execute_input": "2023-01-25T19:00:30.897945Z", + "iopub.status.busy": "2023-01-25T19:00:30.897233Z", + "iopub.status.idle": "2023-01-25T19:00:30.902946Z", + "shell.execute_reply": "2023-01-25T19:00:30.902029Z" }, "papermill": { - "duration": 0.019411, - "end_time": "2023-01-24T16:53:56.574041", + "duration": 0.023729, + "end_time": "2023-01-25T19:00:30.905506", "exception": false, - "start_time": "2023-01-24T16:53:56.554630", + "start_time": "2023-01-25T19:00:30.881777", "status": "completed" }, "pycharm": { @@ -753,10 +753,10 @@ "id": "3ea84f59", "metadata": { "papermill": { - "duration": 0.012191, - "end_time": "2023-01-24T16:53:56.598406", + "duration": 0.016876, + "end_time": "2023-01-25T19:00:30.937135", "exception": false, - "start_time": "2023-01-24T16:53:56.586215", + "start_time": "2023-01-25T19:00:30.920259", "status": "completed" }, "pycharm": { @@ -774,16 +774,16 @@ "id": "a546e49f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:56.624556Z", - "iopub.status.busy": "2023-01-24T16:53:56.623855Z", - "iopub.status.idle": "2023-01-24T16:53:56.628481Z", - "shell.execute_reply": "2023-01-24T16:53:56.627869Z" + "iopub.execute_input": "2023-01-25T19:00:30.969894Z", + "iopub.status.busy": "2023-01-25T19:00:30.969048Z", + "iopub.status.idle": "2023-01-25T19:00:30.975633Z", + "shell.execute_reply": "2023-01-25T19:00:30.974595Z" }, "papermill": { - "duration": 0.019311, - "end_time": "2023-01-24T16:53:56.629947", + "duration": 0.02555, + "end_time": "2023-01-25T19:00:30.977760", "exception": false, - "start_time": "2023-01-24T16:53:56.610636", + "start_time": "2023-01-25T19:00:30.952210", "status": "completed" }, "pycharm": { @@ -812,10 +812,10 @@ "id": "3659c8d0", "metadata": { "papermill": { - "duration": 0.012252, - "end_time": "2023-01-24T16:53:56.654726", + "duration": 0.015756, + "end_time": "2023-01-25T19:00:31.009410", "exception": false, - "start_time": "2023-01-24T16:53:56.642474", + "start_time": "2023-01-25T19:00:30.993654", "status": "completed" }, "pycharm": { @@ -833,16 +833,16 @@ "id": "27a9e239", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:56.680810Z", - "iopub.status.busy": "2023-01-24T16:53:56.680289Z", - "iopub.status.idle": "2023-01-24T16:53:56.684837Z", - "shell.execute_reply": "2023-01-24T16:53:56.684181Z" + "iopub.execute_input": "2023-01-25T19:00:31.041788Z", + "iopub.status.busy": "2023-01-25T19:00:31.041261Z", + "iopub.status.idle": "2023-01-25T19:00:31.047269Z", + "shell.execute_reply": "2023-01-25T19:00:31.046345Z" }, "papermill": { - "duration": 0.019288, - "end_time": "2023-01-24T16:53:56.686299", + "duration": 0.025444, + "end_time": "2023-01-25T19:00:31.049597", "exception": false, - "start_time": "2023-01-24T16:53:56.667011", + "start_time": "2023-01-25T19:00:31.024153", "status": "completed" }, "pycharm": { @@ -871,10 +871,10 @@ "id": "533ed358", "metadata": { "papermill": { - "duration": 0.012357, - "end_time": "2023-01-24T16:53:56.710957", + "duration": 0.015142, + "end_time": "2023-01-25T19:00:31.083138", "exception": false, - "start_time": "2023-01-24T16:53:56.698600", + "start_time": "2023-01-25T19:00:31.067996", "status": "completed" }, "pycharm": { @@ -900,16 +900,16 @@ "id": "1e63398b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:56.737185Z", - "iopub.status.busy": "2023-01-24T16:53:56.736644Z", - "iopub.status.idle": "2023-01-24T16:53:56.740853Z", - "shell.execute_reply": "2023-01-24T16:53:56.740349Z" + "iopub.execute_input": "2023-01-25T19:00:31.117443Z", + "iopub.status.busy": "2023-01-25T19:00:31.116402Z", + "iopub.status.idle": "2023-01-25T19:00:31.122716Z", + "shell.execute_reply": "2023-01-25T19:00:31.121824Z" }, "papermill": { - "duration": 0.019105, - "end_time": "2023-01-24T16:53:56.742391", + "duration": 0.026194, + "end_time": "2023-01-25T19:00:31.124658", "exception": false, - "start_time": "2023-01-24T16:53:56.723286", + "start_time": "2023-01-25T19:00:31.098464", "status": "completed" }, "pycharm": { @@ -938,10 +938,10 @@ "id": "6e94f4ce", "metadata": { "papermill": { - "duration": 0.012436, - "end_time": "2023-01-24T16:53:56.767337", + "duration": 0.01605, + "end_time": "2023-01-25T19:00:31.156004", "exception": false, - "start_time": "2023-01-24T16:53:56.754901", + "start_time": "2023-01-25T19:00:31.139954", "status": "completed" }, "pycharm": { @@ -959,16 +959,16 @@ "id": "17232af7", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:56.793859Z", - "iopub.status.busy": "2023-01-24T16:53:56.793155Z", - "iopub.status.idle": "2023-01-24T16:53:57.289849Z", - "shell.execute_reply": "2023-01-24T16:53:57.289180Z" + "iopub.execute_input": "2023-01-25T19:00:31.189887Z", + "iopub.status.busy": "2023-01-25T19:00:31.189112Z", + "iopub.status.idle": "2023-01-25T19:00:31.800524Z", + "shell.execute_reply": "2023-01-25T19:00:31.799463Z" }, "papermill": { - "duration": 0.512064, - "end_time": "2023-01-24T16:53:57.291722", + "duration": 0.630959, + "end_time": "2023-01-25T19:00:31.803792", "exception": false, - "start_time": "2023-01-24T16:53:56.779658", + "start_time": "2023-01-25T19:00:31.172833", "status": "completed" }, "pycharm": { @@ -1029,16 +1029,16 @@ "id": "e945c2da", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:57.319371Z", - "iopub.status.busy": "2023-01-24T16:53:57.318801Z", - "iopub.status.idle": "2023-01-24T16:53:57.323022Z", - "shell.execute_reply": "2023-01-24T16:53:57.322514Z" + "iopub.execute_input": "2023-01-25T19:00:31.836621Z", + "iopub.status.busy": "2023-01-25T19:00:31.836262Z", + "iopub.status.idle": "2023-01-25T19:00:31.841830Z", + "shell.execute_reply": "2023-01-25T19:00:31.841001Z" }, "papermill": { - "duration": 0.019528, - "end_time": "2023-01-24T16:53:57.324372", + "duration": 0.023955, + "end_time": "2023-01-25T19:00:31.843751", "exception": false, - "start_time": "2023-01-24T16:53:57.304844", + "start_time": "2023-01-25T19:00:31.819796", "status": "completed" }, "pycharm": { @@ -1067,10 +1067,10 @@ "id": "3c7a1db1", "metadata": { "papermill": { - "duration": 0.012764, - "end_time": "2023-01-24T16:53:57.350108", + "duration": 0.015695, + "end_time": "2023-01-25T19:00:31.875391", "exception": false, - "start_time": "2023-01-24T16:53:57.337344", + "start_time": "2023-01-25T19:00:31.859696", "status": "completed" }, "pycharm": { @@ -1088,16 +1088,16 @@ "id": "2c109ecc", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:57.377064Z", - "iopub.status.busy": "2023-01-24T16:53:57.376528Z", - "iopub.status.idle": "2023-01-24T16:53:57.757050Z", - "shell.execute_reply": "2023-01-24T16:53:57.756332Z" + "iopub.execute_input": "2023-01-25T19:00:31.908220Z", + "iopub.status.busy": "2023-01-25T19:00:31.907721Z", + "iopub.status.idle": "2023-01-25T19:00:32.355448Z", + "shell.execute_reply": "2023-01-25T19:00:32.354445Z" }, "papermill": { - "duration": 0.395957, - "end_time": "2023-01-24T16:53:57.758722", + "duration": 0.466848, + "end_time": "2023-01-25T19:00:32.357752", "exception": false, - "start_time": "2023-01-24T16:53:57.362765", + "start_time": "2023-01-25T19:00:31.890904", "status": "completed" }, "pycharm": { @@ -1133,10 +1133,10 @@ "id": "23787efa", "metadata": { "papermill": { - "duration": 0.012846, - "end_time": "2023-01-24T16:53:57.785105", + "duration": 0.015979, + "end_time": "2023-01-25T19:00:32.392966", "exception": false, - "start_time": "2023-01-24T16:53:57.772259", + "start_time": "2023-01-25T19:00:32.376987", "status": "completed" }, "pycharm": { @@ -1157,10 +1157,10 @@ "id": "3796bdf0", "metadata": { "papermill": { - "duration": 0.012709, - "end_time": "2023-01-24T16:53:57.810544", + "duration": 0.014648, + "end_time": "2023-01-25T19:00:32.423253", "exception": false, - "start_time": "2023-01-24T16:53:57.797835", + "start_time": "2023-01-25T19:00:32.408605", "status": "completed" }, "pycharm": { @@ -1180,16 +1180,16 @@ "id": "5f22ddda", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:57.837540Z", - "iopub.status.busy": "2023-01-24T16:53:57.836981Z", - "iopub.status.idle": "2023-01-24T16:53:57.858063Z", - "shell.execute_reply": "2023-01-24T16:53:57.857525Z" + "iopub.execute_input": "2023-01-25T19:00:32.457321Z", + "iopub.status.busy": "2023-01-25T19:00:32.454969Z", + "iopub.status.idle": "2023-01-25T19:00:32.486490Z", + "shell.execute_reply": "2023-01-25T19:00:32.485520Z" }, "papermill": { - "duration": 0.036323, - "end_time": "2023-01-24T16:53:57.859520", + "duration": 0.050938, + "end_time": "2023-01-25T19:00:32.489096", "exception": false, - "start_time": "2023-01-24T16:53:57.823197", + "start_time": "2023-01-25T19:00:32.438158", "status": "completed" }, "pycharm": { @@ -1491,10 +1491,10 @@ "id": "839e5c40", "metadata": { "papermill": { - "duration": 0.013176, - "end_time": "2023-01-24T16:53:57.886198", + "duration": 0.016016, + "end_time": "2023-01-25T19:00:32.522131", "exception": false, - "start_time": "2023-01-24T16:53:57.873022", + "start_time": "2023-01-25T19:00:32.506115", "status": "completed" }, "pycharm": { @@ -1516,16 +1516,16 @@ "id": "91e77985", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:57.913888Z", - "iopub.status.busy": "2023-01-24T16:53:57.913356Z", - "iopub.status.idle": "2023-01-24T16:53:57.935282Z", - "shell.execute_reply": "2023-01-24T16:53:57.934599Z" + "iopub.execute_input": "2023-01-25T19:00:32.558074Z", + "iopub.status.busy": "2023-01-25T19:00:32.557347Z", + "iopub.status.idle": "2023-01-25T19:00:32.589123Z", + "shell.execute_reply": "2023-01-25T19:00:32.588139Z" }, "papermill": { - "duration": 0.037471, - "end_time": "2023-01-24T16:53:57.936767", + "duration": 0.052343, + "end_time": "2023-01-25T19:00:32.591319", "exception": false, - "start_time": "2023-01-24T16:53:57.899296", + "start_time": "2023-01-25T19:00:32.538976", "status": "completed" }, "pycharm": { @@ -1828,10 +1828,10 @@ "id": "965547eb", "metadata": { "papermill": { - "duration": 0.013502, - "end_time": "2023-01-24T16:53:57.963963", + "duration": 0.016677, + "end_time": "2023-01-25T19:00:32.625329", "exception": false, - "start_time": "2023-01-24T16:53:57.950461", + "start_time": "2023-01-25T19:00:32.608652", "status": "completed" }, "pycharm": { @@ -1853,16 +1853,16 @@ "id": "8426cacb", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:57.992814Z", - "iopub.status.busy": "2023-01-24T16:53:57.992255Z", - "iopub.status.idle": "2023-01-24T16:53:58.012631Z", - "shell.execute_reply": "2023-01-24T16:53:58.011925Z" + "iopub.execute_input": "2023-01-25T19:00:32.660405Z", + "iopub.status.busy": "2023-01-25T19:00:32.659588Z", + "iopub.status.idle": "2023-01-25T19:00:32.688611Z", + "shell.execute_reply": "2023-01-25T19:00:32.687766Z" }, "papermill": { - "duration": 0.036511, - "end_time": "2023-01-24T16:53:58.014132", + "duration": 0.049404, + "end_time": "2023-01-25T19:00:32.690805", "exception": false, - "start_time": "2023-01-24T16:53:57.977621", + "start_time": "2023-01-25T19:00:32.641401", "status": "completed" }, "pycharm": { @@ -2158,10 +2158,10 @@ "id": "58332985", "metadata": { "papermill": { - "duration": 0.013906, - "end_time": "2023-01-24T16:53:58.042104", + "duration": 0.016805, + "end_time": "2023-01-25T19:00:32.725257", "exception": false, - "start_time": "2023-01-24T16:53:58.028198", + "start_time": "2023-01-25T19:00:32.708452", "status": "completed" }, "pycharm": { @@ -2183,16 +2183,16 @@ "id": "6b02f690", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:53:58.071854Z", - "iopub.status.busy": "2023-01-24T16:53:58.071037Z", - "iopub.status.idle": "2023-01-24T16:54:02.335969Z", - "shell.execute_reply": "2023-01-24T16:54:02.335274Z" + "iopub.execute_input": "2023-01-25T19:00:32.762827Z", + "iopub.status.busy": "2023-01-25T19:00:32.762029Z", + "iopub.status.idle": "2023-01-25T19:00:38.147451Z", + "shell.execute_reply": "2023-01-25T19:00:38.146443Z" }, "papermill": { - "duration": 4.281815, - "end_time": "2023-01-24T16:54:02.337786", + "duration": 5.407529, + "end_time": "2023-01-25T19:00:38.150044", "exception": false, - "start_time": "2023-01-24T16:53:58.055971", + "start_time": "2023-01-25T19:00:32.742515", "status": "completed" }, "pycharm": { @@ -2205,7 +2205,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "behavior_session_870987812.nwb: 100%|██████████| 51.7M/51.7M [00:01<00:00, 34.2MMB/s]\n", + "behavior_session_870987812.nwb: 100%|██████████| 51.7M/51.7M [00:01<00:00, 28.4MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", @@ -2223,16 +2223,16 @@ "id": "699acb2c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:54:02.369381Z", - "iopub.status.busy": "2023-01-24T16:54:02.368733Z", - "iopub.status.idle": "2023-01-24T16:54:02.374306Z", - "shell.execute_reply": "2023-01-24T16:54:02.373700Z" + "iopub.execute_input": "2023-01-25T19:00:38.191509Z", + "iopub.status.busy": "2023-01-25T19:00:38.191124Z", + "iopub.status.idle": "2023-01-25T19:00:38.196397Z", + "shell.execute_reply": "2023-01-25T19:00:38.195541Z" }, "papermill": { - "duration": 0.023084, - "end_time": "2023-01-24T16:54:02.375976", + "duration": 0.027278, + "end_time": "2023-01-25T19:00:38.198402", "exception": false, - "start_time": "2023-01-24T16:54:02.352892", + "start_time": "2023-01-25T19:00:38.171124", "status": "completed" }, "pycharm": { @@ -2259,10 +2259,10 @@ "id": "81274b2b", "metadata": { "papermill": { - "duration": 0.014632, - "end_time": "2023-01-24T16:54:02.405314", + "duration": 0.017723, + "end_time": "2023-01-25T19:00:38.236634", "exception": false, - "start_time": "2023-01-24T16:54:02.390682", + "start_time": "2023-01-25T19:00:38.218911", "status": "completed" }, "pycharm": { @@ -2280,16 +2280,16 @@ "id": "5f5916ef", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:54:02.435871Z", - "iopub.status.busy": "2023-01-24T16:54:02.435297Z", - "iopub.status.idle": "2023-01-24T16:54:03.124888Z", - "shell.execute_reply": "2023-01-24T16:54:03.124183Z" + "iopub.execute_input": "2023-01-25T19:00:38.275409Z", + "iopub.status.busy": "2023-01-25T19:00:38.274848Z", + "iopub.status.idle": "2023-01-25T19:00:39.129028Z", + "shell.execute_reply": "2023-01-25T19:00:39.128017Z" }, "papermill": { - "duration": 0.706719, - "end_time": "2023-01-24T16:54:03.126522", + "duration": 0.876239, + "end_time": "2023-01-25T19:00:39.131581", "exception": false, - "start_time": "2023-01-24T16:54:02.419803", + "start_time": "2023-01-25T19:00:38.255342", "status": "completed" }, "pycharm": { @@ -2385,16 +2385,16 @@ "id": "b31be593", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:54:03.158688Z", - "iopub.status.busy": "2023-01-24T16:54:03.158138Z", - "iopub.status.idle": "2023-01-24T16:54:03.612682Z", - "shell.execute_reply": "2023-01-24T16:54:03.612100Z" + "iopub.execute_input": "2023-01-25T19:00:39.173127Z", + "iopub.status.busy": "2023-01-25T19:00:39.172800Z", + "iopub.status.idle": "2023-01-25T19:00:39.546039Z", + "shell.execute_reply": "2023-01-25T19:00:39.543711Z" }, "papermill": { - "duration": 0.472493, - "end_time": "2023-01-24T16:54:03.614416", + "duration": 0.396398, + "end_time": "2023-01-25T19:00:39.548177", "exception": false, - "start_time": "2023-01-24T16:54:03.141923", + "start_time": "2023-01-25T19:00:39.151779", "status": "completed" }, "pycharm": { @@ -2406,7 +2406,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 21, @@ -2434,10 +2434,10 @@ "id": "a4b70dd9", "metadata": { "papermill": { - "duration": 0.015397, - "end_time": "2023-01-24T16:54:03.645561", + "duration": 0.022965, + "end_time": "2023-01-25T19:00:39.592197", "exception": false, - "start_time": "2023-01-24T16:54:03.630164", + "start_time": "2023-01-25T19:00:39.569232", "status": "completed" }, "pycharm": { @@ -2457,16 +2457,16 @@ "id": "1e6906bb", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:54:03.677913Z", - "iopub.status.busy": "2023-01-24T16:54:03.677198Z", - "iopub.status.idle": "2023-01-24T16:54:14.164749Z", - "shell.execute_reply": "2023-01-24T16:54:14.164087Z" + "iopub.execute_input": "2023-01-25T19:00:39.633506Z", + "iopub.status.busy": "2023-01-25T19:00:39.632524Z", + "iopub.status.idle": "2023-01-25T19:00:55.044218Z", + "shell.execute_reply": "2023-01-25T19:00:55.043136Z" }, "papermill": { - "duration": 10.505657, - "end_time": "2023-01-24T16:54:14.166607", + "duration": 15.434733, + "end_time": "2023-01-25T19:00:55.046659", "exception": false, - "start_time": "2023-01-24T16:54:03.660950", + "start_time": "2023-01-25T19:00:39.611926", "status": "completed" }, "pycharm": { @@ -2479,7 +2479,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "behavior_ophys_experiment_951980471.nwb: 100%|██████████| 264M/264M [00:06<00:00, 39.2MMB/s]\n", + "behavior_ophys_experiment_951980471.nwb: 100%|██████████| 264M/264M [00:10<00:00, 26.2MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", @@ -2497,16 +2497,16 @@ "id": "4a4aa252", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:54:14.205911Z", - "iopub.status.busy": "2023-01-24T16:54:14.205137Z", - "iopub.status.idle": "2023-01-24T16:54:14.209330Z", - "shell.execute_reply": "2023-01-24T16:54:14.208794Z" + "iopub.execute_input": "2023-01-25T19:00:55.097526Z", + "iopub.status.busy": "2023-01-25T19:00:55.097132Z", + "iopub.status.idle": "2023-01-25T19:00:55.101973Z", + "shell.execute_reply": "2023-01-25T19:00:55.101111Z" }, "papermill": { - "duration": 0.02565, - "end_time": "2023-01-24T16:54:14.210713", + "duration": 0.032946, + "end_time": "2023-01-25T19:00:55.104540", "exception": false, - "start_time": "2023-01-24T16:54:14.185063", + "start_time": "2023-01-25T19:00:55.071594", "status": "completed" }, "pycharm": { @@ -2533,10 +2533,10 @@ "id": "5b73bb76", "metadata": { "papermill": { - "duration": 0.017737, - "end_time": "2023-01-24T16:54:14.246280", + "duration": 0.023242, + "end_time": "2023-01-25T19:00:55.151830", "exception": false, - "start_time": "2023-01-24T16:54:14.228543", + "start_time": "2023-01-25T19:00:55.128588", "status": "completed" }, "pycharm": { @@ -2554,16 +2554,16 @@ "id": "52416f8d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:54:14.283756Z", - "iopub.status.busy": "2023-01-24T16:54:14.282939Z", - "iopub.status.idle": "2023-01-24T16:54:14.448387Z", - "shell.execute_reply": "2023-01-24T16:54:14.447815Z" + "iopub.execute_input": "2023-01-25T19:00:55.200985Z", + "iopub.status.busy": "2023-01-25T19:00:55.200161Z", + "iopub.status.idle": "2023-01-25T19:00:55.419553Z", + "shell.execute_reply": "2023-01-25T19:00:55.418239Z" }, "papermill": { - "duration": 0.185844, - "end_time": "2023-01-24T16:54:14.449977", + "duration": 0.248234, + "end_time": "2023-01-25T19:00:55.423921", "exception": false, - "start_time": "2023-01-24T16:54:14.264133", + "start_time": "2023-01-25T19:00:55.175687", "status": "completed" }, "pycharm": { @@ -2575,7 +2575,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 24, @@ -2602,10 +2602,10 @@ "id": "591f6cb9", "metadata": { "papermill": { - "duration": 0.019589, - "end_time": "2023-01-24T16:54:14.489992", + "duration": 0.024279, + "end_time": "2023-01-25T19:00:55.473312", "exception": false, - "start_time": "2023-01-24T16:54:14.470403", + "start_time": "2023-01-25T19:00:55.449033", "status": "completed" }, "pycharm": { @@ -2622,10 +2622,10 @@ "id": "8e6ea298", "metadata": { "papermill": { - "duration": 0.019368, - "end_time": "2023-01-24T16:54:14.529161", + "duration": 0.025481, + "end_time": "2023-01-25T19:00:55.524206", "exception": false, - "start_time": "2023-01-24T16:54:14.509793", + "start_time": "2023-01-25T19:00:55.498725", "status": "completed" }, "pycharm": { @@ -2647,16 +2647,16 @@ "id": "60ee366e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:54:14.569845Z", - "iopub.status.busy": "2023-01-24T16:54:14.569137Z", - "iopub.status.idle": "2023-01-24T16:54:14.576295Z", - "shell.execute_reply": "2023-01-24T16:54:14.575612Z" + "iopub.execute_input": "2023-01-25T19:00:55.575193Z", + "iopub.status.busy": "2023-01-25T19:00:55.574608Z", + "iopub.status.idle": "2023-01-25T19:00:55.584816Z", + "shell.execute_reply": "2023-01-25T19:00:55.583915Z" }, "papermill": { - "duration": 0.029175, - "end_time": "2023-01-24T16:54:14.577787", + "duration": 0.038005, + "end_time": "2023-01-25T19:00:55.586705", "exception": false, - "start_time": "2023-01-24T16:54:14.548612", + "start_time": "2023-01-25T19:00:55.548700", "status": "completed" }, "pycharm": { @@ -2682,10 +2682,10 @@ "id": "bdc818fc", "metadata": { "papermill": { - "duration": 0.019436, - "end_time": "2023-01-24T16:54:14.616777", + "duration": 0.029624, + "end_time": "2023-01-25T19:00:55.642885", "exception": false, - "start_time": "2023-01-24T16:54:14.597341", + "start_time": "2023-01-25T19:00:55.613261", "status": "completed" }, "pycharm": { @@ -2746,16 +2746,16 @@ "id": "d917e48b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:54:14.657392Z", - "iopub.status.busy": "2023-01-24T16:54:14.656803Z", - "iopub.status.idle": "2023-01-24T16:54:14.661492Z", - "shell.execute_reply": "2023-01-24T16:54:14.660939Z" + "iopub.execute_input": "2023-01-25T19:00:55.697661Z", + "iopub.status.busy": "2023-01-25T19:00:55.696959Z", + "iopub.status.idle": "2023-01-25T19:00:55.703049Z", + "shell.execute_reply": "2023-01-25T19:00:55.702187Z" }, "papermill": { - "duration": 0.026714, - "end_time": "2023-01-24T16:54:14.662792", + "duration": 0.035164, + "end_time": "2023-01-25T19:00:55.704958", "exception": false, - "start_time": "2023-01-24T16:54:14.636078", + "start_time": "2023-01-25T19:00:55.669794", "status": "completed" }, "pycharm": { @@ -2790,16 +2790,16 @@ "id": "b259055e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:54:14.703327Z", - "iopub.status.busy": "2023-01-24T16:54:14.702789Z", - "iopub.status.idle": "2023-01-24T16:54:14.707204Z", - "shell.execute_reply": "2023-01-24T16:54:14.706651Z" + "iopub.execute_input": "2023-01-25T19:00:55.757740Z", + "iopub.status.busy": "2023-01-25T19:00:55.757150Z", + "iopub.status.idle": "2023-01-25T19:00:55.763566Z", + "shell.execute_reply": "2023-01-25T19:00:55.762699Z" }, "papermill": { - "duration": 0.026227, - "end_time": "2023-01-24T16:54:14.708553", + "duration": 0.035362, + "end_time": "2023-01-25T19:00:55.766055", "exception": false, - "start_time": "2023-01-24T16:54:14.682326", + "start_time": "2023-01-25T19:00:55.730693", "status": "completed" }, "pycharm": { @@ -2832,16 +2832,16 @@ "id": "0d6b03c0", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:54:14.749243Z", - "iopub.status.busy": "2023-01-24T16:54:14.748732Z", - "iopub.status.idle": "2023-01-24T16:54:14.753352Z", - "shell.execute_reply": "2023-01-24T16:54:14.752702Z" + "iopub.execute_input": "2023-01-25T19:00:55.825246Z", + "iopub.status.busy": "2023-01-25T19:00:55.824666Z", + "iopub.status.idle": "2023-01-25T19:00:55.830784Z", + "shell.execute_reply": "2023-01-25T19:00:55.829922Z" }, "papermill": { - "duration": 0.026711, - "end_time": "2023-01-24T16:54:14.754872", + "duration": 0.040374, + "end_time": "2023-01-25T19:00:55.832826", "exception": false, - "start_time": "2023-01-24T16:54:14.728161", + "start_time": "2023-01-25T19:00:55.792452", "status": "completed" }, "pycharm": { @@ -2874,16 +2874,16 @@ "id": "a954b1b5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:54:14.795841Z", - "iopub.status.busy": "2023-01-24T16:54:14.795290Z", - "iopub.status.idle": "2023-01-24T16:54:14.799745Z", - "shell.execute_reply": "2023-01-24T16:54:14.799222Z" + "iopub.execute_input": "2023-01-25T19:00:55.887221Z", + "iopub.status.busy": "2023-01-25T19:00:55.886843Z", + "iopub.status.idle": "2023-01-25T19:00:55.893302Z", + "shell.execute_reply": "2023-01-25T19:00:55.892450Z" }, "papermill": { - "duration": 0.026699, - "end_time": "2023-01-24T16:54:14.801222", + "duration": 0.039372, + "end_time": "2023-01-25T19:00:55.898006", "exception": false, - "start_time": "2023-01-24T16:54:14.774523", + "start_time": "2023-01-25T19:00:55.858634", "status": "completed" }, "pycharm": { @@ -2915,10 +2915,10 @@ "id": "0cdcfcd6", "metadata": { "papermill": { - "duration": 0.019659, - "end_time": "2023-01-24T16:54:14.840484", + "duration": 0.027501, + "end_time": "2023-01-25T19:00:55.956221", "exception": false, - "start_time": "2023-01-24T16:54:14.820825", + "start_time": "2023-01-25T19:00:55.928720", "status": "completed" }, "pycharm": { @@ -2978,16 +2978,16 @@ "id": "37c06d70", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:54:14.881240Z", - "iopub.status.busy": "2023-01-24T16:54:14.880789Z", - "iopub.status.idle": "2023-01-24T16:54:15.118378Z", - "shell.execute_reply": "2023-01-24T16:54:15.117700Z" + "iopub.execute_input": "2023-01-25T19:00:56.010337Z", + "iopub.status.busy": "2023-01-25T19:00:56.009752Z", + "iopub.status.idle": "2023-01-25T19:00:56.184832Z", + "shell.execute_reply": "2023-01-25T19:00:56.183424Z" }, "papermill": { - "duration": 0.272573, - "end_time": "2023-01-24T16:54:15.132672", + "duration": 0.223344, + "end_time": "2023-01-25T19:00:56.205212", "exception": false, - "start_time": "2023-01-24T16:54:14.860099", + "start_time": "2023-01-25T19:00:55.981868", "status": "completed" }, "pycharm": { @@ -9070,10 +9070,10 @@ "id": "62c9d9c3", "metadata": { "papermill": { - "duration": 0.033171, - "end_time": "2023-01-24T16:54:15.200717", + "duration": 0.040906, + "end_time": "2023-01-25T19:00:56.288490", "exception": false, - "start_time": "2023-01-24T16:54:15.167546", + "start_time": "2023-01-25T19:00:56.247584", "status": "completed" }, "pycharm": { @@ -9109,18 +9109,18 @@ }, "papermill": { "default_parameters": {}, - "duration": 34.609886, - "end_time": "2023-01-24T16:54:15.753868", + "duration": 46.637581, + "end_time": "2023-01-25T19:00:57.149521", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/visual_behavior_ophys_data_access.ipynb", - "output_path": "/tmp/tmp88cfimnr/scratch_nb.ipynb", + "output_path": "/tmp/tmpv0vm8dru/scratch_nb.ipynb", "parameters": { "DOWNLOAD_COMPLETE_DATASET": false, - "output_dir": "/tmp/tmp88cfimnr", + "output_dir": "/tmp/tmpv0vm8dru", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T16:53:41.143982", + "start_time": "2023-01-25T19:00:10.511940", "version": "2.4.0" } }, diff --git a/doc_template/examples_root/examples/nb/visual_behavior_ophys_dataset_manifest.ipynb b/doc_template/examples_root/examples/nb/visual_behavior_ophys_dataset_manifest.ipynb index 27dce83d8..2ecf2be4c 100644 --- a/doc_template/examples_root/examples/nb/visual_behavior_ophys_dataset_manifest.ipynb +++ b/doc_template/examples_root/examples/nb/visual_behavior_ophys_dataset_manifest.ipynb @@ -5,10 +5,10 @@ "id": "5851560d", "metadata": { "papermill": { - "duration": 0.02644, - "end_time": "2023-01-24T16:20:15.372079", + "duration": 0.035181, + "end_time": "2023-01-25T18:23:36.193589", "exception": false, - "start_time": "2023-01-24T16:20:15.345639", + "start_time": "2023-01-25T18:23:36.158408", "status": "completed" }, "pycharm": { @@ -25,10 +25,10 @@ "id": "34c30ddc", "metadata": { "papermill": { - "duration": 0.024931, - "end_time": "2023-01-24T16:20:15.422149", + "duration": 0.032522, + "end_time": "2023-01-25T18:23:36.259427", "exception": false, - "start_time": "2023-01-24T16:20:15.397218", + "start_time": "2023-01-25T18:23:36.226905", "status": "completed" }, "pycharm": { @@ -47,10 +47,10 @@ "id": "f5cf03c7", "metadata": { "papermill": { - "duration": 0.02501, - "end_time": "2023-01-24T16:20:15.471944", + "duration": 0.031787, + "end_time": "2023-01-25T18:23:36.323568", "exception": false, - "start_time": "2023-01-24T16:20:15.446934", + "start_time": "2023-01-25T18:23:36.291781", "status": "completed" }, "pycharm": { @@ -67,10 +67,10 @@ "id": "7910fadd", "metadata": { "papermill": { - "duration": 0.024534, - "end_time": "2023-01-24T16:20:15.521310", + "duration": 0.032001, + "end_time": "2023-01-25T18:23:36.387859", "exception": false, - "start_time": "2023-01-24T16:20:15.496776", + "start_time": "2023-01-25T18:23:36.355858", "status": "completed" }, "pycharm": { @@ -88,16 +88,16 @@ "id": "1823b226", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:15.572486Z", - "iopub.status.busy": "2023-01-24T16:20:15.571751Z", - "iopub.status.idle": "2023-01-24T16:20:17.882486Z", - "shell.execute_reply": "2023-01-24T16:20:17.881537Z" + "iopub.execute_input": "2023-01-25T18:23:36.454105Z", + "iopub.status.busy": "2023-01-25T18:23:36.453316Z", + "iopub.status.idle": "2023-01-25T18:23:39.700603Z", + "shell.execute_reply": "2023-01-25T18:23:39.699210Z" }, "papermill": { - "duration": 2.338384, - "end_time": "2023-01-24T16:20:17.884416", + "duration": 3.283459, + "end_time": "2023-01-25T18:23:39.703338", "exception": false, - "start_time": "2023-01-24T16:20:15.546032", + "start_time": "2023-01-25T18:23:36.419879", "status": "completed" }, "pycharm": { @@ -110,81 +110,81 @@ "name": "stdout", "output_type": "stream", "text": [ - "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.0)\r\n", - "Requirement already satisfied: aiohttp==3.7.4 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.7.4)\r\n", - "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", - "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", - "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", - "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", - "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", + "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.1)\r\n", + "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", + "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", + "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", - "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", + "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", + "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", + "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", + "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", + "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", + "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", + "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", "Requirement already satisfied: requests-toolbelt<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.10.1)\r\n", - "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", - "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", - "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", - "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", - "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", - "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", - "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", - "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", - "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", "Requirement already satisfied: requests<3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.28.2)\r\n", - "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", + "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", + "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", + "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", + "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", + "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", - "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", - "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", - "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", + "Requirement already satisfied: aiohttp==3.7.4 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.7.4)\r\n", + "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", + "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", + "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", + "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", + "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", - "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", - "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", - "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", - "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", - "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", - "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", + "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", + "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", + "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", + "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", + "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", - "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", - "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", - "Requirement already satisfied: yarl<2.0,>=1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (1.8.2)\r\n", "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (6.0.4)\r\n", + "Requirement already satisfied: yarl<2.0,>=1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (1.8.2)\r\n", + "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", "Requirement already satisfied: chardet<4.0,>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.4)\r\n", - "Requirement already satisfied: botocore<1.21.0,>=1.20.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (1.20.112)\r\n", + "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", "Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.3.7)\r\n", "Requirement already satisfied: jmespath<1.0.0,>=0.7.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.10.0)\r\n", + "Requirement already satisfied: botocore<1.21.0,>=1.20.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (1.20.112)\r\n", "Requirement already satisfied: setuptools in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from glymur==0.8.19->allensdk) (56.0.0)\r\n", - "Requirement already satisfied: marshmallow<4.0,>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (3.19.0)\r\n", "Requirement already satisfied: pyyaml in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (6.0)\r\n", - "Requirement already satisfied: jsonschema<5,>=2.6.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (4.17.3)\r\n", + "Requirement already satisfied: marshmallow<4.0,>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (3.19.0)\r\n", "Requirement already satisfied: ruamel.yaml<1,>=0.16 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (0.17.21)\r\n", + "Requirement already satisfied: jsonschema<5,>=2.6.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (4.17.3)\r\n", "Requirement already satisfied: MarkupSafe>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jinja2>=3.0.0->allensdk) (2.1.2)\r\n", - "Requirement already satisfied: pyparsing>=2.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (3.0.9)\r\n", - "Requirement already satisfied: pillow>=6.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (9.4.0)\r\n", "Requirement already satisfied: kiwisolver>=1.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (1.4.4)\r\n", "Requirement already satisfied: cycler>=0.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (0.11.0)\r\n", + "Requirement already satisfied: pyparsing>=2.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (3.0.9)\r\n", + "Requirement already satisfied: pillow>=6.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (9.4.0)\r\n", "Requirement already satisfied: pytz>=2020.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from pandas>=1.1.5->allensdk) (2022.7.1)\r\n", - "Requirement already satisfied: idna<4,>=2.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.4)\r\n", - "Requirement already satisfied: certifi>=2017.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (2022.12.7)\r\n", "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.0.1)\r\n", - "Requirement already satisfied: wheel>=0.32.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (0.38.4)\r\n", + "Requirement already satisfied: certifi>=2017.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (2022.12.7)\r\n", + "Requirement already satisfied: idna<4,>=2.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.4)\r\n", "Requirement already satisfied: distro in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (1.8.0)\r\n", "Requirement already satisfied: packaging in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (23.0)\r\n", + "Requirement already satisfied: wheel>=0.32.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (0.38.4)\r\n", "Requirement already satisfied: imageio>=2.4.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2.25.0)\r\n", - "Requirement already satisfied: PyWavelets>=1.1.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (1.4.1)\r\n", "Requirement already satisfied: tifffile>=2019.7.26 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2023.1.23.1)\r\n", + "Requirement already satisfied: PyWavelets>=1.1.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (1.4.1)\r\n", "Requirement already satisfied: networkx>=2.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (3.0)\r\n", "Requirement already satisfied: patsy>=0.5.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from statsmodels<=0.13.0->allensdk) (0.5.3)\r\n", "Requirement already satisfied: greenlet!=0.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from sqlalchemy->allensdk) (2.0.1)\r\n", "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", - "Requirement already satisfied: blosc2~=2.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.0.0)\r\n", "Requirement already satisfied: numexpr>=2.6.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.8.4)\r\n", + "Requirement already satisfied: blosc2~=2.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.0.0)\r\n", "Requirement already satisfied: py-cpuinfo in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (9.0.0)\r\n", "Requirement already satisfied: msgpack in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from blosc2~=2.0.0->tables->allensdk) (1.0.4)\r\n", "Requirement already satisfied: pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (0.19.3)\r\n", - "Requirement already satisfied: pkgutil-resolve-name>=1.3.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (1.3.10)\r\n", "Requirement already satisfied: importlib-resources>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (5.10.2)\r\n", + "Requirement already satisfied: pkgutil-resolve-name>=1.3.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (1.3.10)\r\n", "Requirement already satisfied: ruamel.yaml.clib>=0.2.6 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from ruamel.yaml<1,>=0.16->hdmf<=3.4.7->allensdk) (0.2.7)\r\n", "Requirement already satisfied: zipp>=3.1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from importlib-resources>=1.4.0->jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (3.11.0)\r\n" ] @@ -199,10 +199,10 @@ "id": "558d41de", "metadata": { "papermill": { - "duration": 0.02523, - "end_time": "2023-01-24T16:20:17.935476", + "duration": 0.034714, + "end_time": "2023-01-25T18:23:39.772279", "exception": false, - "start_time": "2023-01-24T16:20:17.910246", + "start_time": "2023-01-25T18:23:39.737565", "status": "completed" }, "pycharm": { @@ -219,10 +219,10 @@ "id": "a5394404", "metadata": { "papermill": { - "duration": 0.025444, - "end_time": "2023-01-24T16:20:17.986479", + "duration": 0.033843, + "end_time": "2023-01-25T18:23:39.840686", "exception": false, - "start_time": "2023-01-24T16:20:17.961035", + "start_time": "2023-01-25T18:23:39.806843", "status": "completed" }, "pycharm": { @@ -243,16 +243,16 @@ "id": "fdc24a64", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:18.039104Z", - "iopub.status.busy": "2023-01-24T16:20:18.038506Z", - "iopub.status.idle": "2023-01-24T16:20:22.067655Z", - "shell.execute_reply": "2023-01-24T16:20:22.066526Z" + "iopub.execute_input": "2023-01-25T18:23:39.910563Z", + "iopub.status.busy": "2023-01-25T18:23:39.909290Z", + "iopub.status.idle": "2023-01-25T18:23:45.219142Z", + "shell.execute_reply": "2023-01-25T18:23:45.217310Z" }, "papermill": { - "duration": 4.057548, - "end_time": "2023-01-24T16:20:22.069353", + "duration": 5.347152, + "end_time": "2023-01-25T18:23:45.221683", "exception": false, - "start_time": "2023-01-24T16:20:18.011805", + "start_time": "2023-01-25T18:23:39.874531", "status": "completed" }, "pycharm": { @@ -266,77 +266,77 @@ "output_type": "stream", "text": [ "Requirement already satisfied: pip in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (22.3.1)\r\n", - "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.0)\r\n", - "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", - "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", + "Requirement already satisfied: allensdk in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (2.15.1)\r\n", + "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", + "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", + "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", + "Requirement already satisfied: requests-toolbelt<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.10.1)\r\n", + "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", + "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", "Requirement already satisfied: cachetools<5.0.0,>=4.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.2.4)\r\n", - "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", - "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", - "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", - "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", "Requirement already satisfied: aiohttp==3.7.4 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.7.4)\r\n", - "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", - "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", - "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", - "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", + "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", "Requirement already satisfied: glymur==0.8.19 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.8.19)\r\n", - "Requirement already satisfied: future<1.0.0,>=0.14.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.18.3)\r\n", + "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", + "Requirement already satisfied: numpy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.23.5)\r\n", + "Requirement already satisfied: matplotlib<3.4.3,>=1.4.3 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.2)\r\n", + "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", + "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", + "Requirement already satisfied: nest-asyncio in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.6)\r\n", "Requirement already satisfied: pynwb in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.0)\r\n", - "Requirement already satisfied: ndx-events<=0.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.2.0)\r\n", - "Requirement already satisfied: requests-toolbelt<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.10.1)\r\n", + "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", + "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", + "Requirement already satisfied: scipy<2.0.0,>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.10.0)\r\n", "Requirement already satisfied: simpleitk<3.0.0,>=2.0.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.2.1)\r\n", - "Requirement already satisfied: boto3==1.17.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.17.21)\r\n", + "Requirement already satisfied: simplejson<4.0.0,>=3.10.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.18.1)\r\n", "Requirement already satisfied: hdmf<=3.4.7 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.4.7)\r\n", - "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", - "Requirement already satisfied: h5py in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", "Requirement already satisfied: statsmodels<=0.13.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.13.0)\r\n", - "Requirement already satisfied: jinja2>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.1.2)\r\n", - "Requirement already satisfied: python-dateutil in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.8.2)\r\n", - "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", - "Requirement already satisfied: scikit-image>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.19.3)\r\n", - "Requirement already satisfied: argschema<4.0.0,>=3.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.0.4)\r\n", + "Requirement already satisfied: xarray in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2023.1.0)\r\n", + "Requirement already satisfied: semver in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.13.0)\r\n", + "Requirement already satisfied: pandas>=1.1.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.5.3)\r\n", + "Requirement already satisfied: six<2.0.0,>=1.9.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.16.0)\r\n", "Requirement already satisfied: requests<3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.28.2)\r\n", - "Requirement already satisfied: scikit-build<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.16.6)\r\n", - "Requirement already satisfied: sqlalchemy in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (1.4.46)\r\n", "Requirement already satisfied: seaborn<1.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.12.2)\r\n", - "Requirement already satisfied: pynrrd<1.0.0,>=0.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (0.4.3)\r\n", - "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", + "Requirement already satisfied: psycopg2-binary in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (2.9.5)\r\n", + "Requirement already satisfied: tqdm>=4.27 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (4.64.1)\r\n", + "Requirement already satisfied: tables in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from allensdk) (3.8.0)\r\n", "Requirement already satisfied: chardet<4.0,>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.4)\r\n", - "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (6.0.4)\r\n", - "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", "Requirement already satisfied: yarl<2.0,>=1.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (1.8.2)\r\n", "Requirement already satisfied: async-timeout<4.0,>=3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (3.0.1)\r\n", + "Requirement already satisfied: multidict<7.0,>=4.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (6.0.4)\r\n", + "Requirement already satisfied: typing-extensions>=3.6.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (4.4.0)\r\n", + "Requirement already satisfied: attrs>=17.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from aiohttp==3.7.4->allensdk) (22.2.0)\r\n", "Requirement already satisfied: jmespath<1.0.0,>=0.7.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.10.0)\r\n", - "Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.3.7)\r\n", "Requirement already satisfied: botocore<1.21.0,>=1.20.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (1.20.112)\r\n", + "Requirement already satisfied: s3transfer<0.4.0,>=0.3.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from boto3==1.17.21->allensdk) (0.3.7)\r\n", "Requirement already satisfied: setuptools in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from glymur==0.8.19->allensdk) (56.0.0)\r\n", - "Requirement already satisfied: marshmallow<4.0,>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (3.19.0)\r\n", "Requirement already satisfied: pyyaml in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (6.0)\r\n", - "Requirement already satisfied: jsonschema<5,>=2.6.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (4.17.3)\r\n", + "Requirement already satisfied: marshmallow<4.0,>=3.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from argschema<4.0.0,>=3.0.1->allensdk) (3.19.0)\r\n", "Requirement already satisfied: ruamel.yaml<1,>=0.16 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (0.17.21)\r\n", + "Requirement already satisfied: jsonschema<5,>=2.6.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from hdmf<=3.4.7->allensdk) (4.17.3)\r\n", "Requirement already satisfied: MarkupSafe>=2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jinja2>=3.0.0->allensdk) (2.1.2)\r\n", + "Requirement already satisfied: pillow>=6.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (9.4.0)\r\n", "Requirement already satisfied: kiwisolver>=1.0.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (1.4.4)\r\n", "Requirement already satisfied: cycler>=0.10 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (0.11.0)\r\n", - "Requirement already satisfied: pillow>=6.2.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (9.4.0)\r\n", "Requirement already satisfied: pyparsing>=2.2.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from matplotlib<3.4.3,>=1.4.3->allensdk) (3.0.9)\r\n", "Requirement already satisfied: pytz>=2020.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from pandas>=1.1.5->allensdk) (2022.7.1)\r\n", - "Requirement already satisfied: idna<4,>=2.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.4)\r\n", "Requirement already satisfied: charset-normalizer<4,>=2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.0.1)\r\n", "Requirement already satisfied: certifi>=2017.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (2022.12.7)\r\n", "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (1.26.14)\r\n", - "Requirement already satisfied: wheel>=0.32.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (0.38.4)\r\n", + "Requirement already satisfied: idna<4,>=2.5 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from requests<3.0.0->allensdk) (3.4)\r\n", "Requirement already satisfied: packaging in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (23.0)\r\n", + "Requirement already satisfied: wheel>=0.32.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (0.38.4)\r\n", "Requirement already satisfied: distro in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-build<1.0.0->allensdk) (1.8.0)\r\n", - "Requirement already satisfied: PyWavelets>=1.1.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (1.4.1)\r\n", - "Requirement already satisfied: imageio>=2.4.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2.25.0)\r\n", "Requirement already satisfied: networkx>=2.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (3.0)\r\n", + "Requirement already satisfied: PyWavelets>=1.1.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (1.4.1)\r\n", "Requirement already satisfied: tifffile>=2019.7.26 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2023.1.23.1)\r\n", + "Requirement already satisfied: imageio>=2.4.1 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from scikit-image>=0.14.0->allensdk) (2.25.0)\r\n", "Requirement already satisfied: patsy>=0.5.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from statsmodels<=0.13.0->allensdk) (0.5.3)\r\n", "Requirement already satisfied: greenlet!=0.4.17 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from sqlalchemy->allensdk) (2.0.1)\r\n", "Requirement already satisfied: numexpr>=2.6.2 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.8.4)\r\n", - "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", "Requirement already satisfied: blosc2~=2.0.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (2.0.0)\r\n", "Requirement already satisfied: py-cpuinfo in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (9.0.0)\r\n", + "Requirement already satisfied: cython>=0.29.21 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from tables->allensdk) (0.29.33)\r\n", "Requirement already satisfied: msgpack in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from blosc2~=2.0.0->tables->allensdk) (1.0.4)\r\n", "Requirement already satisfied: importlib-resources>=1.4.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (5.10.2)\r\n", "Requirement already satisfied: pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 in /opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages (from jsonschema<5,>=2.6.0->hdmf<=3.4.7->allensdk) (0.19.3)\r\n", @@ -356,10 +356,10 @@ "id": "d26db20b", "metadata": { "papermill": { - "duration": 0.026239, - "end_time": "2023-01-24T16:20:22.126242", + "duration": 0.034202, + "end_time": "2023-01-25T18:23:45.290095", "exception": false, - "start_time": "2023-01-24T16:20:22.100003", + "start_time": "2023-01-25T18:23:45.255893", "status": "completed" }, "pycharm": { @@ -377,16 +377,16 @@ "id": "61cecf93", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:22.180444Z", - "iopub.status.busy": "2023-01-24T16:20:22.179868Z", - "iopub.status.idle": "2023-01-24T16:20:27.796843Z", - "shell.execute_reply": "2023-01-24T16:20:27.796154Z" + "iopub.execute_input": "2023-01-25T18:23:45.359993Z", + "iopub.status.busy": "2023-01-25T18:23:45.359323Z", + "iopub.status.idle": "2023-01-25T18:23:53.294377Z", + "shell.execute_reply": "2023-01-25T18:23:53.293400Z" }, "papermill": { - "duration": 5.646587, - "end_time": "2023-01-24T16:20:27.799083", + "duration": 7.973026, + "end_time": "2023-01-25T18:23:53.297013", "exception": false, - "start_time": "2023-01-24T16:20:22.152496", + "start_time": "2023-01-25T18:23:45.323987", "status": "completed" }, "pycharm": { @@ -416,10 +416,10 @@ "id": "4bb898d4", "metadata": { "papermill": { - "duration": 0.026297, - "end_time": "2023-01-24T16:20:27.852224", + "duration": 0.035974, + "end_time": "2023-01-25T18:23:53.373018", "exception": false, - "start_time": "2023-01-24T16:20:27.825927", + "start_time": "2023-01-25T18:23:53.337044", "status": "completed" }, "pycharm": { @@ -437,16 +437,16 @@ "id": "003ddb42", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:27.906946Z", - "iopub.status.busy": "2023-01-24T16:20:27.905989Z", - "iopub.status.idle": "2023-01-24T16:20:27.909663Z", - "shell.execute_reply": "2023-01-24T16:20:27.908972Z" + "iopub.execute_input": "2023-01-25T18:23:53.443621Z", + "iopub.status.busy": "2023-01-25T18:23:53.442954Z", + "iopub.status.idle": "2023-01-25T18:23:53.449481Z", + "shell.execute_reply": "2023-01-25T18:23:53.448256Z" }, "papermill": { - "duration": 0.032829, - "end_time": "2023-01-24T16:20:27.911359", + "duration": 0.044198, + "end_time": "2023-01-25T18:23:53.451655", "exception": false, - "start_time": "2023-01-24T16:20:27.878530", + "start_time": "2023-01-25T18:23:53.407457", "status": "completed" }, "pycharm": { @@ -468,16 +468,16 @@ "id": "f0b38233", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:28.025931Z", - "iopub.status.busy": "2023-01-24T16:20:28.025409Z", - "iopub.status.idle": "2023-01-24T16:20:30.004060Z", - "shell.execute_reply": "2023-01-24T16:20:30.003482Z" + "iopub.execute_input": "2023-01-25T18:23:53.604353Z", + "iopub.status.busy": "2023-01-25T18:23:53.603545Z", + "iopub.status.idle": "2023-01-25T18:23:55.586236Z", + "shell.execute_reply": "2023-01-25T18:23:55.585167Z" }, "papermill": { - "duration": 2.007346, - "end_time": "2023-01-24T16:20:30.005525", + "duration": 2.021704, + "end_time": "2023-01-25T18:23:55.588962", "exception": false, - "start_time": "2023-01-24T16:20:27.998179", + "start_time": "2023-01-25T18:23:53.567258", "status": "completed" }, "pycharm": { @@ -498,14 +498,14 @@ "\n", "To avoid this warning in the future, make sure that\n", "\n", - "/tmp/tmp_fq2z8ma/_downloaded_data.json\n", + "/tmp/tmp2eslfx52/_downloaded_data.json\n", "\n", "is not deleted between instantiations of this cache\n", " warnings.warn(msg, MissingLocalManifestWarning)\n", - "ophys_session_table.csv: 100%|██████████| 227k/227k [00:00<00:00, 1.94MMB/s] \n", - "behavior_session_table.csv: 100%|██████████| 1.21M/1.21M [00:00<00:00, 8.62MMB/s]\n", - "ophys_experiment_table.csv: 100%|██████████| 610k/610k [00:00<00:00, 6.73MMB/s]\n", - "ophys_cells_table.csv: 100%|██████████| 4.29M/4.29M [00:00<00:00, 17.8MMB/s]\n" + "ophys_session_table.csv: 100%|██████████| 227k/227k [00:00<00:00, 2.09MMB/s]\n", + "behavior_session_table.csv: 100%|██████████| 1.21M/1.21M [00:00<00:00, 13.3MMB/s]\n", + "ophys_experiment_table.csv: 100%|██████████| 610k/610k [00:00<00:00, 7.33MMB/s]\n", + "ophys_cells_table.csv: 100%|██████████| 4.29M/4.29M [00:00<00:00, 23.9MMB/s]\n" ] } ], @@ -518,10 +518,10 @@ "id": "358b9ca2", "metadata": { "papermill": { - "duration": 0.0276, - "end_time": "2023-01-24T16:20:30.061128", + "duration": 0.037744, + "end_time": "2023-01-25T18:23:55.664356", "exception": false, - "start_time": "2023-01-24T16:20:30.033528", + "start_time": "2023-01-25T18:23:55.626612", "status": "completed" }, "pycharm": { @@ -548,10 +548,10 @@ "id": "745f2f80", "metadata": { "papermill": { - "duration": 0.027366, - "end_time": "2023-01-24T16:20:30.116037", + "duration": 0.037954, + "end_time": "2023-01-25T18:23:55.739091", "exception": false, - "start_time": "2023-01-24T16:20:30.088671", + "start_time": "2023-01-25T18:23:55.701137", "status": "completed" }, "pycharm": { @@ -568,10 +568,10 @@ "id": "5cba01b6", "metadata": { "papermill": { - "duration": 0.027287, - "end_time": "2023-01-24T16:20:30.170891", + "duration": 0.037231, + "end_time": "2023-01-25T18:23:55.817510", "exception": false, - "start_time": "2023-01-24T16:20:30.143604", + "start_time": "2023-01-25T18:23:55.780279", "status": "completed" }, "pycharm": { @@ -590,10 +590,10 @@ "id": "76cd72dd", "metadata": { "papermill": { - "duration": 0.027258, - "end_time": "2023-01-24T16:20:30.225449", + "duration": 0.037402, + "end_time": "2023-01-25T18:23:55.895088", "exception": false, - "start_time": "2023-01-24T16:20:30.198191", + "start_time": "2023-01-25T18:23:55.857686", "status": "completed" }, "pycharm": { @@ -610,10 +610,10 @@ "id": "ff3bee62", "metadata": { "papermill": { - "duration": 0.027291, - "end_time": "2023-01-24T16:20:30.280125", + "duration": 0.041399, + "end_time": "2023-01-25T18:23:55.977319", "exception": false, - "start_time": "2023-01-24T16:20:30.252834", + "start_time": "2023-01-25T18:23:55.935920", "status": "completed" }, "pycharm": { @@ -630,10 +630,10 @@ "id": "4938ec29", "metadata": { "papermill": { - "duration": 0.027318, - "end_time": "2023-01-24T16:20:30.334752", + "duration": 0.049935, + "end_time": "2023-01-25T18:23:56.067573", "exception": false, - "start_time": "2023-01-24T16:20:30.307434", + "start_time": "2023-01-25T18:23:56.017638", "status": "completed" }, "pycharm": { @@ -650,10 +650,10 @@ "id": "13b629b0", "metadata": { "papermill": { - "duration": 0.027231, - "end_time": "2023-01-24T16:20:30.389388", + "duration": 0.036466, + "end_time": "2023-01-25T18:23:56.140087", "exception": false, - "start_time": "2023-01-24T16:20:30.362157", + "start_time": "2023-01-25T18:23:56.103621", "status": "completed" }, "pycharm": { @@ -670,10 +670,10 @@ "id": "0750bf10", "metadata": { "papermill": { - "duration": 0.027139, - "end_time": "2023-01-24T16:20:30.443788", + "duration": 0.036014, + "end_time": "2023-01-25T18:23:56.212019", "exception": false, - "start_time": "2023-01-24T16:20:30.416649", + "start_time": "2023-01-25T18:23:56.176005", "status": "completed" }, "pycharm": { @@ -691,16 +691,16 @@ "id": "6de4c43a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:30.500359Z", - "iopub.status.busy": "2023-01-24T16:20:30.499770Z", - "iopub.status.idle": "2023-01-24T16:20:30.523423Z", - "shell.execute_reply": "2023-01-24T16:20:30.522876Z" + "iopub.execute_input": "2023-01-25T18:23:56.286773Z", + "iopub.status.busy": "2023-01-25T18:23:56.286064Z", + "iopub.status.idle": "2023-01-25T18:23:56.320722Z", + "shell.execute_reply": "2023-01-25T18:23:56.319616Z" }, "papermill": { - "duration": 0.053658, - "end_time": "2023-01-24T16:20:30.524871", + "duration": 0.07532, + "end_time": "2023-01-25T18:23:56.323538", "exception": false, - "start_time": "2023-01-24T16:20:30.471213", + "start_time": "2023-01-25T18:23:56.248218", "status": "completed" }, "pycharm": { @@ -1002,10 +1002,10 @@ "id": "23b2e84c", "metadata": { "papermill": { - "duration": 0.027661, - "end_time": "2023-01-24T16:20:30.580346", + "duration": 0.035278, + "end_time": "2023-01-25T18:23:56.394678", "exception": false, - "start_time": "2023-01-24T16:20:30.552685", + "start_time": "2023-01-25T18:23:56.359400", "status": "completed" }, "pycharm": { @@ -1023,16 +1023,16 @@ "id": "4ccde8b1", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:30.637550Z", - "iopub.status.busy": "2023-01-24T16:20:30.636979Z", - "iopub.status.idle": "2023-01-24T16:20:30.641893Z", - "shell.execute_reply": "2023-01-24T16:20:30.641254Z" + "iopub.execute_input": "2023-01-25T18:23:56.470390Z", + "iopub.status.busy": "2023-01-25T18:23:56.469566Z", + "iopub.status.idle": "2023-01-25T18:23:56.476608Z", + "shell.execute_reply": "2023-01-25T18:23:56.475634Z" }, "papermill": { - "duration": 0.035173, - "end_time": "2023-01-24T16:20:30.643318", + "duration": 0.047472, + "end_time": "2023-01-25T18:23:56.478628", "exception": false, - "start_time": "2023-01-24T16:20:30.608145", + "start_time": "2023-01-25T18:23:56.431156", "status": "completed" }, "pycharm": { @@ -1067,10 +1067,10 @@ "id": "38a115a0", "metadata": { "papermill": { - "duration": 0.027698, - "end_time": "2023-01-24T16:20:30.698630", + "duration": 0.036612, + "end_time": "2023-01-25T18:23:56.550534", "exception": false, - "start_time": "2023-01-24T16:20:30.670932", + "start_time": "2023-01-25T18:23:56.513922", "status": "completed" }, "pycharm": { @@ -1088,16 +1088,16 @@ "id": "b20a7aae", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:30.755975Z", - "iopub.status.busy": "2023-01-24T16:20:30.755406Z", - "iopub.status.idle": "2023-01-24T16:20:30.759951Z", - "shell.execute_reply": "2023-01-24T16:20:30.759369Z" + "iopub.execute_input": "2023-01-25T18:23:56.624825Z", + "iopub.status.busy": "2023-01-25T18:23:56.623778Z", + "iopub.status.idle": "2023-01-25T18:23:56.630918Z", + "shell.execute_reply": "2023-01-25T18:23:56.629894Z" }, "papermill": { - "duration": 0.034785, - "end_time": "2023-01-24T16:20:30.761322", + "duration": 0.046968, + "end_time": "2023-01-25T18:23:56.633025", "exception": false, - "start_time": "2023-01-24T16:20:30.726537", + "start_time": "2023-01-25T18:23:56.586057", "status": "completed" }, "pycharm": { @@ -1131,10 +1131,10 @@ "id": "f1bc0503", "metadata": { "papermill": { - "duration": 0.027742, - "end_time": "2023-01-24T16:20:30.816913", + "duration": 0.03611, + "end_time": "2023-01-25T18:23:56.706040", "exception": false, - "start_time": "2023-01-24T16:20:30.789171", + "start_time": "2023-01-25T18:23:56.669930", "status": "completed" }, "pycharm": { @@ -1151,10 +1151,10 @@ "id": "ff0ba98e", "metadata": { "papermill": { - "duration": 0.027738, - "end_time": "2023-01-24T16:20:30.872700", + "duration": 0.039441, + "end_time": "2023-01-25T18:23:56.782642", "exception": false, - "start_time": "2023-01-24T16:20:30.844962", + "start_time": "2023-01-25T18:23:56.743201", "status": "completed" }, "pycharm": { @@ -1171,10 +1171,10 @@ "id": "a54fc9b0", "metadata": { "papermill": { - "duration": 0.02768, - "end_time": "2023-01-24T16:20:30.928107", + "duration": 0.037202, + "end_time": "2023-01-25T18:23:56.861153", "exception": false, - "start_time": "2023-01-24T16:20:30.900427", + "start_time": "2023-01-25T18:23:56.823951", "status": "completed" }, "pycharm": { @@ -1192,16 +1192,16 @@ "id": "5f0573a7", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:32.037576Z", - "iopub.status.busy": "2023-01-24T16:20:32.037286Z", - "iopub.status.idle": "2023-01-24T16:20:32.041693Z", - "shell.execute_reply": "2023-01-24T16:20:32.041144Z" + "iopub.execute_input": "2023-01-25T18:23:56.943581Z", + "iopub.status.busy": "2023-01-25T18:23:56.940587Z", + "iopub.status.idle": "2023-01-25T18:23:56.949705Z", + "shell.execute_reply": "2023-01-25T18:23:56.948652Z" }, "papermill": { - "duration": 0.035255, - "end_time": "2023-01-24T16:20:32.043098", + "duration": 0.051765, + "end_time": "2023-01-25T18:23:56.951989", "exception": false, - "start_time": "2023-01-24T16:20:32.007843", + "start_time": "2023-01-25T18:23:56.900224", "status": "completed" }, "pycharm": { @@ -1227,10 +1227,10 @@ "id": "03c92c4d", "metadata": { "papermill": { - "duration": 0.028259, - "end_time": "2023-01-24T16:20:32.099542", + "duration": 0.038147, + "end_time": "2023-01-25T18:23:57.027979", "exception": false, - "start_time": "2023-01-24T16:20:32.071283", + "start_time": "2023-01-25T18:23:56.989832", "status": "completed" }, "pycharm": { @@ -1248,16 +1248,16 @@ "id": "7818dee1", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:32.157629Z", - "iopub.status.busy": "2023-01-24T16:20:32.157055Z", - "iopub.status.idle": "2023-01-24T16:20:32.161377Z", - "shell.execute_reply": "2023-01-24T16:20:32.160861Z" + "iopub.execute_input": "2023-01-25T18:23:57.107544Z", + "iopub.status.busy": "2023-01-25T18:23:57.106566Z", + "iopub.status.idle": "2023-01-25T18:23:57.114943Z", + "shell.execute_reply": "2023-01-25T18:23:57.114121Z" }, "papermill": { - "duration": 0.035055, - "end_time": "2023-01-24T16:20:32.162782", + "duration": 0.051519, + "end_time": "2023-01-25T18:23:57.117034", "exception": false, - "start_time": "2023-01-24T16:20:32.127727", + "start_time": "2023-01-25T18:23:57.065515", "status": "completed" }, "pycharm": { @@ -1289,10 +1289,10 @@ "id": "80b02150", "metadata": { "papermill": { - "duration": 0.02807, - "end_time": "2023-01-24T16:20:32.219121", + "duration": 0.036699, + "end_time": "2023-01-25T18:23:57.200084", "exception": false, - "start_time": "2023-01-24T16:20:32.191051", + "start_time": "2023-01-25T18:23:57.163385", "status": "completed" }, "pycharm": { @@ -1310,16 +1310,16 @@ "id": "59782e41", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:32.277371Z", - "iopub.status.busy": "2023-01-24T16:20:32.276810Z", - "iopub.status.idle": "2023-01-24T16:20:32.281216Z", - "shell.execute_reply": "2023-01-24T16:20:32.280682Z" + "iopub.execute_input": "2023-01-25T18:23:57.278388Z", + "iopub.status.busy": "2023-01-25T18:23:57.277536Z", + "iopub.status.idle": "2023-01-25T18:23:57.284396Z", + "shell.execute_reply": "2023-01-25T18:23:57.283340Z" }, "papermill": { - "duration": 0.035173, - "end_time": "2023-01-24T16:20:32.282556", + "duration": 0.05099, + "end_time": "2023-01-25T18:23:57.286999", "exception": false, - "start_time": "2023-01-24T16:20:32.247383", + "start_time": "2023-01-25T18:23:57.236009", "status": "completed" }, "pycharm": { @@ -1348,10 +1348,10 @@ "id": "25086019", "metadata": { "papermill": { - "duration": 0.028053, - "end_time": "2023-01-24T16:20:32.338571", + "duration": 0.035903, + "end_time": "2023-01-25T18:23:57.360557", "exception": false, - "start_time": "2023-01-24T16:20:32.310518", + "start_time": "2023-01-25T18:23:57.324654", "status": "completed" }, "pycharm": { @@ -1370,10 +1370,10 @@ "id": "db6df690", "metadata": { "papermill": { - "duration": 0.027997, - "end_time": "2023-01-24T16:20:32.394853", + "duration": 0.037301, + "end_time": "2023-01-25T18:23:57.434218", "exception": false, - "start_time": "2023-01-24T16:20:32.366856", + "start_time": "2023-01-25T18:23:57.396917", "status": "completed" }, "pycharm": { @@ -1391,16 +1391,16 @@ "id": "e15eda2d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:32.452805Z", - "iopub.status.busy": "2023-01-24T16:20:32.452242Z", - "iopub.status.idle": "2023-01-24T16:20:32.457069Z", - "shell.execute_reply": "2023-01-24T16:20:32.456370Z" + "iopub.execute_input": "2023-01-25T18:23:57.516670Z", + "iopub.status.busy": "2023-01-25T18:23:57.515804Z", + "iopub.status.idle": "2023-01-25T18:23:57.522701Z", + "shell.execute_reply": "2023-01-25T18:23:57.521125Z" }, "papermill": { - "duration": 0.035549, - "end_time": "2023-01-24T16:20:32.458536", + "duration": 0.054359, + "end_time": "2023-01-25T18:23:57.524728", "exception": false, - "start_time": "2023-01-24T16:20:32.422987", + "start_time": "2023-01-25T18:23:57.470369", "status": "completed" }, "pycharm": { @@ -1430,16 +1430,16 @@ "id": "60237c34", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:32.516836Z", - "iopub.status.busy": "2023-01-24T16:20:32.516280Z", - "iopub.status.idle": "2023-01-24T16:20:32.520941Z", - "shell.execute_reply": "2023-01-24T16:20:32.520301Z" + "iopub.execute_input": "2023-01-25T18:23:57.603559Z", + "iopub.status.busy": "2023-01-25T18:23:57.602720Z", + "iopub.status.idle": "2023-01-25T18:23:57.608885Z", + "shell.execute_reply": "2023-01-25T18:23:57.608049Z" }, "papermill": { - "duration": 0.035568, - "end_time": "2023-01-24T16:20:32.522434", + "duration": 0.047995, + "end_time": "2023-01-25T18:23:57.610833", "exception": false, - "start_time": "2023-01-24T16:20:32.486866", + "start_time": "2023-01-25T18:23:57.562838", "status": "completed" }, "pycharm": { @@ -1468,10 +1468,10 @@ "id": "eb33911a", "metadata": { "papermill": { - "duration": 0.028386, - "end_time": "2023-01-24T16:20:32.579171", + "duration": 0.039412, + "end_time": "2023-01-25T18:23:57.689362", "exception": false, - "start_time": "2023-01-24T16:20:32.550785", + "start_time": "2023-01-25T18:23:57.649950", "status": "completed" }, "pycharm": { @@ -1490,10 +1490,10 @@ "id": "031be223", "metadata": { "papermill": { - "duration": 0.028287, - "end_time": "2023-01-24T16:20:32.635774", + "duration": 0.038053, + "end_time": "2023-01-25T18:23:57.766740", "exception": false, - "start_time": "2023-01-24T16:20:32.607487", + "start_time": "2023-01-25T18:23:57.728687", "status": "completed" }, "pycharm": { @@ -1511,16 +1511,16 @@ "id": "8038b9de", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:32.694266Z", - "iopub.status.busy": "2023-01-24T16:20:32.693694Z", - "iopub.status.idle": "2023-01-24T16:20:32.712374Z", - "shell.execute_reply": "2023-01-24T16:20:32.711724Z" + "iopub.execute_input": "2023-01-25T18:23:57.848061Z", + "iopub.status.busy": "2023-01-25T18:23:57.847080Z", + "iopub.status.idle": "2023-01-25T18:23:57.872510Z", + "shell.execute_reply": "2023-01-25T18:23:57.871525Z" }, "papermill": { - "duration": 0.049689, - "end_time": "2023-01-24T16:20:32.713870", + "duration": 0.073559, + "end_time": "2023-01-25T18:23:57.879753", "exception": false, - "start_time": "2023-01-24T16:20:32.664181", + "start_time": "2023-01-25T18:23:57.806194", "status": "completed" }, "pycharm": { @@ -1601,10 +1601,10 @@ "id": "ff70ba8f", "metadata": { "papermill": { - "duration": 0.028574, - "end_time": "2023-01-24T16:20:32.771123", + "duration": 0.038069, + "end_time": "2023-01-25T18:23:57.956207", "exception": false, - "start_time": "2023-01-24T16:20:32.742549", + "start_time": "2023-01-25T18:23:57.918138", "status": "completed" }, "pycharm": { @@ -1621,10 +1621,10 @@ "id": "e5c3b7e4", "metadata": { "papermill": { - "duration": 0.028041, - "end_time": "2023-01-24T16:20:32.827532", + "duration": 0.037379, + "end_time": "2023-01-25T18:23:58.031390", "exception": false, - "start_time": "2023-01-24T16:20:32.799491", + "start_time": "2023-01-25T18:23:57.994011", "status": "completed" }, "pycharm": { @@ -1641,10 +1641,10 @@ "id": "0e79b59f", "metadata": { "papermill": { - "duration": 0.028263, - "end_time": "2023-01-24T16:20:32.884260", + "duration": 0.036254, + "end_time": "2023-01-25T18:23:58.104963", "exception": false, - "start_time": "2023-01-24T16:20:32.855997", + "start_time": "2023-01-25T18:23:58.068709", "status": "completed" }, "pycharm": { @@ -1662,16 +1662,16 @@ "id": "7c9cdf28", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:32.942941Z", - "iopub.status.busy": "2023-01-24T16:20:32.942220Z", - "iopub.status.idle": "2023-01-24T16:20:32.948520Z", - "shell.execute_reply": "2023-01-24T16:20:32.947850Z" + "iopub.execute_input": "2023-01-25T18:23:58.185091Z", + "iopub.status.busy": "2023-01-25T18:23:58.184348Z", + "iopub.status.idle": "2023-01-25T18:23:58.193106Z", + "shell.execute_reply": "2023-01-25T18:23:58.192116Z" }, "papermill": { - "duration": 0.03742, - "end_time": "2023-01-24T16:20:32.950021", + "duration": 0.053629, + "end_time": "2023-01-25T18:23:58.195654", "exception": false, - "start_time": "2023-01-24T16:20:32.912601", + "start_time": "2023-01-25T18:23:58.142025", "status": "completed" }, "pycharm": { @@ -1718,10 +1718,10 @@ "id": "484ff16b", "metadata": { "papermill": { - "duration": 0.028659, - "end_time": "2023-01-24T16:20:33.007250", + "duration": 0.038468, + "end_time": "2023-01-25T18:23:58.277581", "exception": false, - "start_time": "2023-01-24T16:20:32.978591", + "start_time": "2023-01-25T18:23:58.239113", "status": "completed" }, "pycharm": { @@ -1738,10 +1738,10 @@ "id": "ab075c3d", "metadata": { "papermill": { - "duration": 0.028598, - "end_time": "2023-01-24T16:20:33.064548", + "duration": 0.037498, + "end_time": "2023-01-25T18:23:58.353158", "exception": false, - "start_time": "2023-01-24T16:20:33.035950", + "start_time": "2023-01-25T18:23:58.315660", "status": "completed" }, "pycharm": { @@ -1760,10 +1760,10 @@ "id": "7c9ea148", "metadata": { "papermill": { - "duration": 0.028504, - "end_time": "2023-01-24T16:20:33.121798", + "duration": 0.03653, + "end_time": "2023-01-25T18:23:58.426336", "exception": false, - "start_time": "2023-01-24T16:20:33.093294", + "start_time": "2023-01-25T18:23:58.389806", "status": "completed" }, "pycharm": { @@ -1780,10 +1780,10 @@ "id": "e75f59f0", "metadata": { "papermill": { - "duration": 0.028361, - "end_time": "2023-01-24T16:20:33.178700", + "duration": 0.037378, + "end_time": "2023-01-25T18:23:58.502309", "exception": false, - "start_time": "2023-01-24T16:20:33.150339", + "start_time": "2023-01-25T18:23:58.464931", "status": "completed" }, "pycharm": { @@ -1801,16 +1801,16 @@ "id": "e6020cbd", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:33.237566Z", - "iopub.status.busy": "2023-01-24T16:20:33.236999Z", - "iopub.status.idle": "2023-01-24T16:20:33.242655Z", - "shell.execute_reply": "2023-01-24T16:20:33.241983Z" + "iopub.execute_input": "2023-01-25T18:23:58.580099Z", + "iopub.status.busy": "2023-01-25T18:23:58.579519Z", + "iopub.status.idle": "2023-01-25T18:23:58.586768Z", + "shell.execute_reply": "2023-01-25T18:23:58.585799Z" }, "papermill": { - "duration": 0.036737, - "end_time": "2023-01-24T16:20:33.244174", + "duration": 0.048606, + "end_time": "2023-01-25T18:23:58.589364", "exception": false, - "start_time": "2023-01-24T16:20:33.207437", + "start_time": "2023-01-25T18:23:58.540758", "status": "completed" }, "pycharm": { @@ -1858,10 +1858,10 @@ "id": "b026a1c6", "metadata": { "papermill": { - "duration": 0.028534, - "end_time": "2023-01-24T16:20:33.301221", + "duration": 0.037785, + "end_time": "2023-01-25T18:23:58.663958", "exception": false, - "start_time": "2023-01-24T16:20:33.272687", + "start_time": "2023-01-25T18:23:58.626173", "status": "completed" }, "pycharm": { @@ -1878,10 +1878,10 @@ "id": "03da3956", "metadata": { "papermill": { - "duration": 0.028459, - "end_time": "2023-01-24T16:20:33.358245", + "duration": 0.037058, + "end_time": "2023-01-25T18:23:58.737549", "exception": false, - "start_time": "2023-01-24T16:20:33.329786", + "start_time": "2023-01-25T18:23:58.700491", "status": "completed" }, "pycharm": { @@ -1898,10 +1898,10 @@ "id": "30159c12", "metadata": { "papermill": { - "duration": 0.028562, - "end_time": "2023-01-24T16:20:33.415275", + "duration": 0.036838, + "end_time": "2023-01-25T18:23:58.813290", "exception": false, - "start_time": "2023-01-24T16:20:33.386713", + "start_time": "2023-01-25T18:23:58.776452", "status": "completed" }, "pycharm": { @@ -1918,10 +1918,10 @@ "id": "1e5955fc", "metadata": { "papermill": { - "duration": 0.028616, - "end_time": "2023-01-24T16:20:33.472566", + "duration": 0.036823, + "end_time": "2023-01-25T18:23:58.887649", "exception": false, - "start_time": "2023-01-24T16:20:33.443950", + "start_time": "2023-01-25T18:23:58.850826", "status": "completed" }, "pycharm": { @@ -1940,10 +1940,10 @@ "id": "17171d6e", "metadata": { "papermill": { - "duration": 0.028409, - "end_time": "2023-01-24T16:20:33.529404", + "duration": 0.036678, + "end_time": "2023-01-25T18:23:58.961358", "exception": false, - "start_time": "2023-01-24T16:20:33.500995", + "start_time": "2023-01-25T18:23:58.924680", "status": "completed" }, "pycharm": { @@ -1960,10 +1960,10 @@ "id": "dd6a406f", "metadata": { "papermill": { - "duration": 0.028402, - "end_time": "2023-01-24T16:20:33.586534", + "duration": 0.038503, + "end_time": "2023-01-25T18:23:59.038883", "exception": false, - "start_time": "2023-01-24T16:20:33.558132", + "start_time": "2023-01-25T18:23:59.000380", "status": "completed" }, "pycharm": { @@ -1980,10 +1980,10 @@ "id": "b7a28754", "metadata": { "papermill": { - "duration": 0.02839, - "end_time": "2023-01-24T16:20:33.643318", + "duration": 0.036489, + "end_time": "2023-01-25T18:23:59.115346", "exception": false, - "start_time": "2023-01-24T16:20:33.614928", + "start_time": "2023-01-25T18:23:59.078857", "status": "completed" }, "pycharm": { @@ -2000,10 +2000,10 @@ "id": "901b0840", "metadata": { "papermill": { - "duration": 0.028489, - "end_time": "2023-01-24T16:20:33.700411", + "duration": 0.037652, + "end_time": "2023-01-25T18:23:59.190905", "exception": false, - "start_time": "2023-01-24T16:20:33.671922", + "start_time": "2023-01-25T18:23:59.153253", "status": "completed" }, "pycharm": { @@ -2020,10 +2020,10 @@ "id": "6274c13d", "metadata": { "papermill": { - "duration": 0.028378, - "end_time": "2023-01-24T16:20:33.757190", + "duration": 0.037702, + "end_time": "2023-01-25T18:23:59.267547", "exception": false, - "start_time": "2023-01-24T16:20:33.728812", + "start_time": "2023-01-25T18:23:59.229845", "status": "completed" }, "pycharm": { @@ -2040,10 +2040,10 @@ "id": "1da1c171", "metadata": { "papermill": { - "duration": 0.028193, - "end_time": "2023-01-24T16:20:33.813901", + "duration": 0.038939, + "end_time": "2023-01-25T18:23:59.344833", "exception": false, - "start_time": "2023-01-24T16:20:33.785708", + "start_time": "2023-01-25T18:23:59.305894", "status": "completed" }, "pycharm": { @@ -2062,10 +2062,10 @@ "id": "6065bf63", "metadata": { "papermill": { - "duration": 0.028359, - "end_time": "2023-01-24T16:20:33.870645", + "duration": 0.036911, + "end_time": "2023-01-25T18:23:59.417594", "exception": false, - "start_time": "2023-01-24T16:20:33.842286", + "start_time": "2023-01-25T18:23:59.380683", "status": "completed" }, "pycharm": { @@ -2083,16 +2083,16 @@ "id": "6606e286", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:33.929898Z", - "iopub.status.busy": "2023-01-24T16:20:33.929332Z", - "iopub.status.idle": "2023-01-24T16:20:33.942942Z", - "shell.execute_reply": "2023-01-24T16:20:33.942283Z" + "iopub.execute_input": "2023-01-25T18:23:59.501372Z", + "iopub.status.busy": "2023-01-25T18:23:59.500804Z", + "iopub.status.idle": "2023-01-25T18:23:59.520293Z", + "shell.execute_reply": "2023-01-25T18:23:59.519297Z" }, "papermill": { - "duration": 0.045009, - "end_time": "2023-01-24T16:20:33.944435", + "duration": 0.064105, + "end_time": "2023-01-25T18:23:59.522439", "exception": false, - "start_time": "2023-01-24T16:20:33.899426", + "start_time": "2023-01-25T18:23:59.458334", "status": "completed" }, "pycharm": { @@ -2221,16 +2221,16 @@ "id": "59cfd3f4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:34.003651Z", - "iopub.status.busy": "2023-01-24T16:20:34.002984Z", - "iopub.status.idle": "2023-01-24T16:20:34.015256Z", - "shell.execute_reply": "2023-01-24T16:20:34.014615Z" + "iopub.execute_input": "2023-01-25T18:23:59.601075Z", + "iopub.status.busy": "2023-01-25T18:23:59.600201Z", + "iopub.status.idle": "2023-01-25T18:23:59.616984Z", + "shell.execute_reply": "2023-01-25T18:23:59.616126Z" }, "papermill": { - "duration": 0.043652, - "end_time": "2023-01-24T16:20:34.016853", + "duration": 0.057554, + "end_time": "2023-01-25T18:23:59.619100", "exception": false, - "start_time": "2023-01-24T16:20:33.973201", + "start_time": "2023-01-25T18:23:59.561546", "status": "completed" }, "pycharm": { @@ -2251,10 +2251,10 @@ "id": "18e78600", "metadata": { "papermill": { - "duration": 0.029054, - "end_time": "2023-01-24T16:20:34.075027", + "duration": 0.036823, + "end_time": "2023-01-25T18:23:59.692186", "exception": false, - "start_time": "2023-01-24T16:20:34.045973", + "start_time": "2023-01-25T18:23:59.655363", "status": "completed" }, "pycharm": { @@ -2272,16 +2272,16 @@ "id": "2893504f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:34.134310Z", - "iopub.status.busy": "2023-01-24T16:20:34.133747Z", - "iopub.status.idle": "2023-01-24T16:20:34.138906Z", - "shell.execute_reply": "2023-01-24T16:20:34.138227Z" + "iopub.execute_input": "2023-01-25T18:23:59.770936Z", + "iopub.status.busy": "2023-01-25T18:23:59.769263Z", + "iopub.status.idle": "2023-01-25T18:23:59.778025Z", + "shell.execute_reply": "2023-01-25T18:23:59.777089Z" }, "papermill": { - "duration": 0.036754, - "end_time": "2023-01-24T16:20:34.140423", + "duration": 0.049558, + "end_time": "2023-01-25T18:23:59.780156", "exception": false, - "start_time": "2023-01-24T16:20:34.103669", + "start_time": "2023-01-25T18:23:59.730598", "status": "completed" }, "pycharm": { @@ -2313,16 +2313,16 @@ "id": "93050515", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:34.199790Z", - "iopub.status.busy": "2023-01-24T16:20:34.199246Z", - "iopub.status.idle": "2023-01-24T16:20:34.210675Z", - "shell.execute_reply": "2023-01-24T16:20:34.209950Z" + "iopub.execute_input": "2023-01-25T18:23:59.859735Z", + "iopub.status.busy": "2023-01-25T18:23:59.858872Z", + "iopub.status.idle": "2023-01-25T18:23:59.874326Z", + "shell.execute_reply": "2023-01-25T18:23:59.873338Z" }, "papermill": { - "duration": 0.042819, - "end_time": "2023-01-24T16:20:34.212100", + "duration": 0.058087, + "end_time": "2023-01-25T18:23:59.876396", "exception": false, - "start_time": "2023-01-24T16:20:34.169281", + "start_time": "2023-01-25T18:23:59.818309", "status": "completed" }, "pycharm": { @@ -2407,10 +2407,10 @@ "id": "983a12b2", "metadata": { "papermill": { - "duration": 0.028926, - "end_time": "2023-01-24T16:20:34.270246", + "duration": 0.037055, + "end_time": "2023-01-25T18:23:59.950103", "exception": false, - "start_time": "2023-01-24T16:20:34.241320", + "start_time": "2023-01-25T18:23:59.913048", "status": "completed" }, "pycharm": { @@ -2428,10 +2428,10 @@ "id": "e04c6d3e", "metadata": { "papermill": { - "duration": 0.028829, - "end_time": "2023-01-24T16:20:34.327929", + "duration": 0.038879, + "end_time": "2023-01-25T18:24:00.026781", "exception": false, - "start_time": "2023-01-24T16:20:34.299100", + "start_time": "2023-01-25T18:23:59.987902", "status": "completed" }, "pycharm": { @@ -2447,10 +2447,10 @@ "id": "cf0fc554", "metadata": { "papermill": { - "duration": 0.028735, - "end_time": "2023-01-24T16:20:34.385626", + "duration": 0.036501, + "end_time": "2023-01-25T18:24:00.102654", "exception": false, - "start_time": "2023-01-24T16:20:34.356891", + "start_time": "2023-01-25T18:24:00.066153", "status": "completed" }, "pycharm": { @@ -2467,10 +2467,10 @@ "id": "05b97a3e", "metadata": { "papermill": { - "duration": 0.02894, - "end_time": "2023-01-24T16:20:34.443899", + "duration": 0.037615, + "end_time": "2023-01-25T18:24:00.178293", "exception": false, - "start_time": "2023-01-24T16:20:34.414959", + "start_time": "2023-01-25T18:24:00.140678", "status": "completed" }, "pycharm": { @@ -2488,16 +2488,16 @@ "id": "8831dcb6", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:34.503675Z", - "iopub.status.busy": "2023-01-24T16:20:34.502949Z", - "iopub.status.idle": "2023-01-24T16:20:34.527514Z", - "shell.execute_reply": "2023-01-24T16:20:34.526849Z" + "iopub.execute_input": "2023-01-25T18:24:02.167853Z", + "iopub.status.busy": "2023-01-25T18:24:02.167459Z", + "iopub.status.idle": "2023-01-25T18:24:02.198878Z", + "shell.execute_reply": "2023-01-25T18:24:02.198009Z" }, "papermill": { - "duration": 0.056315, - "end_time": "2023-01-24T16:20:34.529077", + "duration": 1.98536, + "end_time": "2023-01-25T18:24:02.200837", "exception": false, - "start_time": "2023-01-24T16:20:34.472762", + "start_time": "2023-01-25T18:24:00.215477", "status": "completed" }, "pycharm": { @@ -2811,16 +2811,16 @@ "id": "ca9bb487", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:34.589932Z", - "iopub.status.busy": "2023-01-24T16:20:34.589641Z", - "iopub.status.idle": "2023-01-24T16:20:34.606456Z", - "shell.execute_reply": "2023-01-24T16:20:34.605790Z" + "iopub.execute_input": "2023-01-25T18:24:02.279963Z", + "iopub.status.busy": "2023-01-25T18:24:02.279218Z", + "iopub.status.idle": "2023-01-25T18:24:02.303111Z", + "shell.execute_reply": "2023-01-25T18:24:02.302049Z" }, "papermill": { - "duration": 0.049103, - "end_time": "2023-01-24T16:20:34.607960", + "duration": 0.066442, + "end_time": "2023-01-25T18:24:02.305953", "exception": false, - "start_time": "2023-01-24T16:20:34.558857", + "start_time": "2023-01-25T18:24:02.239511", "status": "completed" }, "pycharm": { @@ -3029,10 +3029,10 @@ "id": "5cc382f2", "metadata": { "papermill": { - "duration": 0.029523, - "end_time": "2023-01-24T16:20:34.667083", + "duration": 0.039706, + "end_time": "2023-01-25T18:24:02.386274", "exception": false, - "start_time": "2023-01-24T16:20:34.637560", + "start_time": "2023-01-25T18:24:02.346568", "status": "completed" }, "pycharm": { @@ -3049,10 +3049,10 @@ "id": "18de9c0a", "metadata": { "papermill": { - "duration": 0.029698, - "end_time": "2023-01-24T16:20:34.726513", + "duration": 0.036881, + "end_time": "2023-01-25T18:24:02.463252", "exception": false, - "start_time": "2023-01-24T16:20:34.696815", + "start_time": "2023-01-25T18:24:02.426371", "status": "completed" }, "pycharm": { @@ -3069,10 +3069,10 @@ "id": "9d820569", "metadata": { "papermill": { - "duration": 0.029583, - "end_time": "2023-01-24T16:20:34.786259", + "duration": 0.037767, + "end_time": "2023-01-25T18:24:02.537948", "exception": false, - "start_time": "2023-01-24T16:20:34.756676", + "start_time": "2023-01-25T18:24:02.500181", "status": "completed" }, "pycharm": { @@ -3089,10 +3089,10 @@ "id": "a7c8920b", "metadata": { "papermill": { - "duration": 0.029614, - "end_time": "2023-01-24T16:20:34.845465", + "duration": 0.037399, + "end_time": "2023-01-25T18:24:02.613105", "exception": false, - "start_time": "2023-01-24T16:20:34.815851", + "start_time": "2023-01-25T18:24:02.575706", "status": "completed" }, "pycharm": { @@ -3109,10 +3109,10 @@ "id": "7684ef65", "metadata": { "papermill": { - "duration": 0.029466, - "end_time": "2023-01-24T16:20:34.904440", + "duration": 0.03814, + "end_time": "2023-01-25T18:24:02.689408", "exception": false, - "start_time": "2023-01-24T16:20:34.874974", + "start_time": "2023-01-25T18:24:02.651268", "status": "completed" }, "pycharm": { @@ -3130,16 +3130,16 @@ "id": "9a3d4298", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:34.965498Z", - "iopub.status.busy": "2023-01-24T16:20:34.964926Z", - "iopub.status.idle": "2023-01-24T16:20:34.974828Z", - "shell.execute_reply": "2023-01-24T16:20:34.974156Z" + "iopub.execute_input": "2023-01-25T18:24:02.768903Z", + "iopub.status.busy": "2023-01-25T18:24:02.768311Z", + "iopub.status.idle": "2023-01-25T18:24:02.782072Z", + "shell.execute_reply": "2023-01-25T18:24:02.781166Z" }, "papermill": { - "duration": 0.042289, - "end_time": "2023-01-24T16:20:34.976336", + "duration": 0.055584, + "end_time": "2023-01-25T18:24:02.783988", "exception": false, - "start_time": "2023-01-24T16:20:34.934047", + "start_time": "2023-01-25T18:24:02.728404", "status": "completed" }, "pycharm": { @@ -3206,10 +3206,10 @@ "id": "e0db92d4", "metadata": { "papermill": { - "duration": 0.029996, - "end_time": "2023-01-24T16:20:35.036025", + "duration": 0.040962, + "end_time": "2023-01-25T18:24:02.865141", "exception": false, - "start_time": "2023-01-24T16:20:35.006029", + "start_time": "2023-01-25T18:24:02.824179", "status": "completed" }, "pycharm": { @@ -3227,16 +3227,16 @@ "id": "895d8679", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:35.097590Z", - "iopub.status.busy": "2023-01-24T16:20:35.097019Z", - "iopub.status.idle": "2023-01-24T16:20:35.103169Z", - "shell.execute_reply": "2023-01-24T16:20:35.102520Z" + "iopub.execute_input": "2023-01-25T18:24:02.951299Z", + "iopub.status.busy": "2023-01-25T18:24:02.950305Z", + "iopub.status.idle": "2023-01-25T18:24:02.957532Z", + "shell.execute_reply": "2023-01-25T18:24:02.956276Z" }, "papermill": { - "duration": 0.03912, - "end_time": "2023-01-24T16:20:35.104867", + "duration": 0.052391, + "end_time": "2023-01-25T18:24:02.959660", "exception": false, - "start_time": "2023-01-24T16:20:35.065747", + "start_time": "2023-01-25T18:24:02.907269", "status": "completed" }, "pycharm": { @@ -3264,10 +3264,10 @@ "id": "4347ef89", "metadata": { "papermill": { - "duration": 0.029539, - "end_time": "2023-01-24T16:20:35.164130", + "duration": 0.045236, + "end_time": "2023-01-25T18:24:03.051556", "exception": false, - "start_time": "2023-01-24T16:20:35.134591", + "start_time": "2023-01-25T18:24:03.006320", "status": "completed" }, "pycharm": { @@ -3285,16 +3285,16 @@ "id": "9d0e7372", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:35.225239Z", - "iopub.status.busy": "2023-01-24T16:20:35.224673Z", - "iopub.status.idle": "2023-01-24T16:20:35.229417Z", - "shell.execute_reply": "2023-01-24T16:20:35.228899Z" + "iopub.execute_input": "2023-01-25T18:24:03.139901Z", + "iopub.status.busy": "2023-01-25T18:24:03.139255Z", + "iopub.status.idle": "2023-01-25T18:24:03.146028Z", + "shell.execute_reply": "2023-01-25T18:24:03.145125Z" }, "papermill": { - "duration": 0.037149, - "end_time": "2023-01-24T16:20:35.230951", + "duration": 0.050785, + "end_time": "2023-01-25T18:24:03.147955", "exception": false, - "start_time": "2023-01-24T16:20:35.193802", + "start_time": "2023-01-25T18:24:03.097170", "status": "completed" }, "pycharm": { @@ -3324,16 +3324,16 @@ "id": "9a478a25", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:35.292545Z", - "iopub.status.busy": "2023-01-24T16:20:35.291656Z", - "iopub.status.idle": "2023-01-24T16:20:35.299701Z", - "shell.execute_reply": "2023-01-24T16:20:35.299012Z" + "iopub.execute_input": "2023-01-25T18:24:03.227437Z", + "iopub.status.busy": "2023-01-25T18:24:03.226622Z", + "iopub.status.idle": "2023-01-25T18:24:03.241247Z", + "shell.execute_reply": "2023-01-25T18:24:03.238400Z" }, "papermill": { - "duration": 0.040427, - "end_time": "2023-01-24T16:20:35.301149", + "duration": 0.056388, + "end_time": "2023-01-25T18:24:03.243221", "exception": false, - "start_time": "2023-01-24T16:20:35.260722", + "start_time": "2023-01-25T18:24:03.186833", "status": "completed" }, "pycharm": { @@ -3397,10 +3397,10 @@ "id": "f82f9443", "metadata": { "papermill": { - "duration": 0.029988, - "end_time": "2023-01-24T16:20:35.361119", + "duration": 0.0431, + "end_time": "2023-01-25T18:24:03.325904", "exception": false, - "start_time": "2023-01-24T16:20:35.331131", + "start_time": "2023-01-25T18:24:03.282804", "status": "completed" }, "pycharm": { @@ -3417,10 +3417,10 @@ "id": "bbe5b15f", "metadata": { "papermill": { - "duration": 0.029731, - "end_time": "2023-01-24T16:20:35.420687", + "duration": 0.03704, + "end_time": "2023-01-25T18:24:03.402727", "exception": false, - "start_time": "2023-01-24T16:20:35.390956", + "start_time": "2023-01-25T18:24:03.365687", "status": "completed" }, "pycharm": { @@ -3437,10 +3437,10 @@ "id": "1fb21893", "metadata": { "papermill": { - "duration": 0.029764, - "end_time": "2023-01-24T16:20:35.480431", + "duration": 0.036723, + "end_time": "2023-01-25T18:24:03.477375", "exception": false, - "start_time": "2023-01-24T16:20:35.450667", + "start_time": "2023-01-25T18:24:03.440652", "status": "completed" }, "pycharm": { @@ -3458,16 +3458,16 @@ "id": "281336e5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:35.541718Z", - "iopub.status.busy": "2023-01-24T16:20:35.541146Z", - "iopub.status.idle": "2023-01-24T16:20:35.550922Z", - "shell.execute_reply": "2023-01-24T16:20:35.550215Z" + "iopub.execute_input": "2023-01-25T18:24:03.554362Z", + "iopub.status.busy": "2023-01-25T18:24:03.553467Z", + "iopub.status.idle": "2023-01-25T18:24:03.566558Z", + "shell.execute_reply": "2023-01-25T18:24:03.565694Z" }, "papermill": { - "duration": 0.04221, - "end_time": "2023-01-24T16:20:35.552410", + "duration": 0.053716, + "end_time": "2023-01-25T18:24:03.568544", "exception": false, - "start_time": "2023-01-24T16:20:35.510200", + "start_time": "2023-01-25T18:24:03.514828", "status": "completed" }, "pycharm": { @@ -3533,10 +3533,10 @@ "id": "934f44ca", "metadata": { "papermill": { - "duration": 0.02988, - "end_time": "2023-01-24T16:20:35.612467", + "duration": 0.036688, + "end_time": "2023-01-25T18:24:03.643201", "exception": false, - "start_time": "2023-01-24T16:20:35.582587", + "start_time": "2023-01-25T18:24:03.606513", "status": "completed" }, "pycharm": { @@ -3553,10 +3553,10 @@ "id": "2da74236", "metadata": { "papermill": { - "duration": 0.030255, - "end_time": "2023-01-24T16:20:35.672577", + "duration": 0.040884, + "end_time": "2023-01-25T18:24:03.722495", "exception": false, - "start_time": "2023-01-24T16:20:35.642322", + "start_time": "2023-01-25T18:24:03.681611", "status": "completed" }, "pycharm": { @@ -3574,16 +3574,16 @@ "id": "4619658c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:35.734701Z", - "iopub.status.busy": "2023-01-24T16:20:35.733999Z", - "iopub.status.idle": "2023-01-24T16:20:35.741977Z", - "shell.execute_reply": "2023-01-24T16:20:35.741337Z" + "iopub.execute_input": "2023-01-25T18:24:03.800701Z", + "iopub.status.busy": "2023-01-25T18:24:03.800153Z", + "iopub.status.idle": "2023-01-25T18:24:03.810636Z", + "shell.execute_reply": "2023-01-25T18:24:03.809841Z" }, "papermill": { - "duration": 0.040694, - "end_time": "2023-01-24T16:20:35.743495", + "duration": 0.0532, + "end_time": "2023-01-25T18:24:03.812679", "exception": false, - "start_time": "2023-01-24T16:20:35.702801", + "start_time": "2023-01-25T18:24:03.759479", "status": "completed" }, "pycharm": { @@ -3647,10 +3647,10 @@ "id": "b4a5f2a9", "metadata": { "papermill": { - "duration": 0.030065, - "end_time": "2023-01-24T16:20:35.803799", + "duration": 0.038042, + "end_time": "2023-01-25T18:24:03.889358", "exception": false, - "start_time": "2023-01-24T16:20:35.773734", + "start_time": "2023-01-25T18:24:03.851316", "status": "completed" }, "pycharm": { @@ -3667,10 +3667,10 @@ "id": "ba86289b", "metadata": { "papermill": { - "duration": 0.030121, - "end_time": "2023-01-24T16:20:35.864428", + "duration": 0.040847, + "end_time": "2023-01-25T18:24:03.970377", "exception": false, - "start_time": "2023-01-24T16:20:35.834307", + "start_time": "2023-01-25T18:24:03.929530", "status": "completed" }, "pycharm": { @@ -3688,16 +3688,16 @@ "id": "66199121", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:35.926933Z", - "iopub.status.busy": "2023-01-24T16:20:35.926352Z", - "iopub.status.idle": "2023-01-24T16:20:35.936012Z", - "shell.execute_reply": "2023-01-24T16:20:35.935328Z" + "iopub.execute_input": "2023-01-25T18:24:04.054569Z", + "iopub.status.busy": "2023-01-25T18:24:04.054000Z", + "iopub.status.idle": "2023-01-25T18:24:04.069570Z", + "shell.execute_reply": "2023-01-25T18:24:04.068583Z" }, "papermill": { - "duration": 0.043214, - "end_time": "2023-01-24T16:20:35.937522", + "duration": 0.060454, + "end_time": "2023-01-25T18:24:04.071707", "exception": false, - "start_time": "2023-01-24T16:20:35.894308", + "start_time": "2023-01-25T18:24:04.011253", "status": "completed" }, "pycharm": { @@ -3763,10 +3763,10 @@ "id": "98aeda1d", "metadata": { "papermill": { - "duration": 0.030359, - "end_time": "2023-01-24T16:20:35.998249", + "duration": 0.039185, + "end_time": "2023-01-25T18:24:04.150771", "exception": false, - "start_time": "2023-01-24T16:20:35.967890", + "start_time": "2023-01-25T18:24:04.111586", "status": "completed" }, "pycharm": { @@ -3783,10 +3783,10 @@ "id": "b1e021a9", "metadata": { "papermill": { - "duration": 0.030128, - "end_time": "2023-01-24T16:20:36.059256", + "duration": 0.038856, + "end_time": "2023-01-25T18:24:04.230212", "exception": false, - "start_time": "2023-01-24T16:20:36.029128", + "start_time": "2023-01-25T18:24:04.191356", "status": "completed" }, "pycharm": { @@ -3803,10 +3803,10 @@ "id": "2f9fee8c", "metadata": { "papermill": { - "duration": 0.030387, - "end_time": "2023-01-24T16:20:36.120194", + "duration": 0.039745, + "end_time": "2023-01-25T18:24:04.309150", "exception": false, - "start_time": "2023-01-24T16:20:36.089807", + "start_time": "2023-01-25T18:24:04.269405", "status": "completed" }, "pycharm": { @@ -3823,10 +3823,10 @@ "id": "f6693273", "metadata": { "papermill": { - "duration": 0.030171, - "end_time": "2023-01-24T16:20:36.180519", + "duration": 0.038113, + "end_time": "2023-01-25T18:24:04.385267", "exception": false, - "start_time": "2023-01-24T16:20:36.150348", + "start_time": "2023-01-25T18:24:04.347154", "status": "completed" }, "pycharm": { @@ -3843,10 +3843,10 @@ "id": "3a7a18d4", "metadata": { "papermill": { - "duration": 0.030285, - "end_time": "2023-01-24T16:20:36.241174", + "duration": 0.038713, + "end_time": "2023-01-25T18:24:04.463841", "exception": false, - "start_time": "2023-01-24T16:20:36.210889", + "start_time": "2023-01-25T18:24:04.425128", "status": "completed" }, "pycharm": { @@ -3863,10 +3863,10 @@ "id": "39a69f2e", "metadata": { "papermill": { - "duration": 0.030445, - "end_time": "2023-01-24T16:20:36.301852", + "duration": 0.03829, + "end_time": "2023-01-25T18:24:04.541537", "exception": false, - "start_time": "2023-01-24T16:20:36.271407", + "start_time": "2023-01-25T18:24:04.503247", "status": "completed" }, "pycharm": { @@ -3884,16 +3884,16 @@ "id": "1e4cda23", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:36.364298Z", - "iopub.status.busy": "2023-01-24T16:20:36.363733Z", - "iopub.status.idle": "2023-01-24T16:20:36.374123Z", - "shell.execute_reply": "2023-01-24T16:20:36.373489Z" + "iopub.execute_input": "2023-01-25T18:24:04.621348Z", + "iopub.status.busy": "2023-01-25T18:24:04.620634Z", + "iopub.status.idle": "2023-01-25T18:24:04.635671Z", + "shell.execute_reply": "2023-01-25T18:24:04.634763Z" }, "papermill": { - "duration": 0.043337, - "end_time": "2023-01-24T16:20:36.375645", + "duration": 0.057434, + "end_time": "2023-01-25T18:24:04.637660", "exception": false, - "start_time": "2023-01-24T16:20:36.332308", + "start_time": "2023-01-25T18:24:04.580226", "status": "completed" }, "pycharm": { @@ -3959,10 +3959,10 @@ "id": "53d7c797", "metadata": { "papermill": { - "duration": 0.030389, - "end_time": "2023-01-24T16:20:36.436283", + "duration": 0.039022, + "end_time": "2023-01-25T18:24:04.717213", "exception": false, - "start_time": "2023-01-24T16:20:36.405894", + "start_time": "2023-01-25T18:24:04.678191", "status": "completed" }, "pycharm": { @@ -3979,10 +3979,10 @@ "id": "e0fbaddf", "metadata": { "papermill": { - "duration": 0.030463, - "end_time": "2023-01-24T16:20:36.497241", + "duration": 0.039844, + "end_time": "2023-01-25T18:24:04.795895", "exception": false, - "start_time": "2023-01-24T16:20:36.466778", + "start_time": "2023-01-25T18:24:04.756051", "status": "completed" }, "pycharm": { @@ -4000,16 +4000,16 @@ "id": "c60129c2", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:36.560108Z", - "iopub.status.busy": "2023-01-24T16:20:36.559539Z", - "iopub.status.idle": "2023-01-24T16:20:36.568618Z", - "shell.execute_reply": "2023-01-24T16:20:36.568100Z" + "iopub.execute_input": "2023-01-25T18:24:04.888618Z", + "iopub.status.busy": "2023-01-25T18:24:04.887760Z", + "iopub.status.idle": "2023-01-25T18:24:04.900966Z", + "shell.execute_reply": "2023-01-25T18:24:04.900137Z" }, "papermill": { - "duration": 0.042355, - "end_time": "2023-01-24T16:20:36.570110", + "duration": 0.064791, + "end_time": "2023-01-25T18:24:04.903077", "exception": false, - "start_time": "2023-01-24T16:20:36.527755", + "start_time": "2023-01-25T18:24:04.838286", "status": "completed" }, "pycharm": { @@ -4074,10 +4074,10 @@ "id": "5edd5efc", "metadata": { "papermill": { - "duration": 0.030448, - "end_time": "2023-01-24T16:20:36.631299", + "duration": 0.039496, + "end_time": "2023-01-25T18:24:04.982741", "exception": false, - "start_time": "2023-01-24T16:20:36.600851", + "start_time": "2023-01-25T18:24:04.943245", "status": "completed" }, "pycharm": { @@ -4095,16 +4095,16 @@ "id": "9027e240", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:36.694059Z", - "iopub.status.busy": "2023-01-24T16:20:36.693496Z", - "iopub.status.idle": "2023-01-24T16:20:36.701377Z", - "shell.execute_reply": "2023-01-24T16:20:36.700858Z" + "iopub.execute_input": "2023-01-25T18:24:05.067501Z", + "iopub.status.busy": "2023-01-25T18:24:05.066060Z", + "iopub.status.idle": "2023-01-25T18:24:05.079543Z", + "shell.execute_reply": "2023-01-25T18:24:05.078568Z" }, "papermill": { - "duration": 0.041202, - "end_time": "2023-01-24T16:20:36.702862", + "duration": 0.057804, + "end_time": "2023-01-25T18:24:05.081573", "exception": false, - "start_time": "2023-01-24T16:20:36.661660", + "start_time": "2023-01-25T18:24:05.023769", "status": "completed" }, "pycharm": { @@ -4170,10 +4170,10 @@ "id": "0ec46b22", "metadata": { "papermill": { - "duration": 0.030479, - "end_time": "2023-01-24T16:20:36.764068", + "duration": 0.039279, + "end_time": "2023-01-25T18:24:05.161245", "exception": false, - "start_time": "2023-01-24T16:20:36.733589", + "start_time": "2023-01-25T18:24:05.121966", "status": "completed" }, "pycharm": { @@ -4190,10 +4190,10 @@ "id": "6be4c69a", "metadata": { "papermill": { - "duration": 0.030492, - "end_time": "2023-01-24T16:20:36.825161", + "duration": 0.043765, + "end_time": "2023-01-25T18:24:05.245774", "exception": false, - "start_time": "2023-01-24T16:20:36.794669", + "start_time": "2023-01-25T18:24:05.202009", "status": "completed" }, "pycharm": { @@ -4210,10 +4210,10 @@ "id": "eae9b601", "metadata": { "papermill": { - "duration": 0.030464, - "end_time": "2023-01-24T16:20:36.886205", + "duration": 0.042319, + "end_time": "2023-01-25T18:24:05.334289", "exception": false, - "start_time": "2023-01-24T16:20:36.855741", + "start_time": "2023-01-25T18:24:05.291970", "status": "completed" }, "pycharm": { @@ -4231,16 +4231,16 @@ "id": "a0ab006e", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:36.948863Z", - "iopub.status.busy": "2023-01-24T16:20:36.948305Z", - "iopub.status.idle": "2023-01-24T16:20:36.958336Z", - "shell.execute_reply": "2023-01-24T16:20:36.957699Z" + "iopub.execute_input": "2023-01-25T18:24:05.424496Z", + "iopub.status.busy": "2023-01-25T18:24:05.423845Z", + "iopub.status.idle": "2023-01-25T18:24:05.437676Z", + "shell.execute_reply": "2023-01-25T18:24:05.436731Z" }, "papermill": { - "duration": 0.04321, - "end_time": "2023-01-24T16:20:36.959790", + "duration": 0.061401, + "end_time": "2023-01-25T18:24:05.439882", "exception": false, - "start_time": "2023-01-24T16:20:36.916580", + "start_time": "2023-01-25T18:24:05.378481", "status": "completed" }, "pycharm": { @@ -4308,16 +4308,16 @@ "id": "8e318120", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:37.023349Z", - "iopub.status.busy": "2023-01-24T16:20:37.022777Z", - "iopub.status.idle": "2023-01-24T16:20:37.031385Z", - "shell.execute_reply": "2023-01-24T16:20:37.030695Z" + "iopub.execute_input": "2023-01-25T18:24:05.522393Z", + "iopub.status.busy": "2023-01-25T18:24:05.521667Z", + "iopub.status.idle": "2023-01-25T18:24:05.533295Z", + "shell.execute_reply": "2023-01-25T18:24:05.532394Z" }, "papermill": { - "duration": 0.042106, - "end_time": "2023-01-24T16:20:37.032898", + "duration": 0.055352, + "end_time": "2023-01-25T18:24:05.535714", "exception": false, - "start_time": "2023-01-24T16:20:36.990792", + "start_time": "2023-01-25T18:24:05.480362", "status": "completed" }, "pycharm": { @@ -4383,10 +4383,10 @@ "id": "39290a73", "metadata": { "papermill": { - "duration": 0.030715, - "end_time": "2023-01-24T16:20:37.094338", + "duration": 0.039088, + "end_time": "2023-01-25T18:24:05.615430", "exception": false, - "start_time": "2023-01-24T16:20:37.063623", + "start_time": "2023-01-25T18:24:05.576342", "status": "completed" }, "pycharm": { @@ -4403,10 +4403,10 @@ "id": "9c0f83d1", "metadata": { "papermill": { - "duration": 0.03069, - "end_time": "2023-01-24T16:20:37.155964", + "duration": 0.042733, + "end_time": "2023-01-25T18:24:05.698572", "exception": false, - "start_time": "2023-01-24T16:20:37.125274", + "start_time": "2023-01-25T18:24:05.655839", "status": "completed" }, "pycharm": { @@ -4423,10 +4423,10 @@ "id": "7d825055", "metadata": { "papermill": { - "duration": 0.03071, - "end_time": "2023-01-24T16:20:37.217406", + "duration": 0.041861, + "end_time": "2023-01-25T18:24:05.783860", "exception": false, - "start_time": "2023-01-24T16:20:37.186696", + "start_time": "2023-01-25T18:24:05.741999", "status": "completed" }, "pycharm": { @@ -4443,10 +4443,10 @@ "id": "fd3599f6", "metadata": { "papermill": { - "duration": 0.030853, - "end_time": "2023-01-24T16:20:37.279037", + "duration": 0.046092, + "end_time": "2023-01-25T18:24:05.874637", "exception": false, - "start_time": "2023-01-24T16:20:37.248184", + "start_time": "2023-01-25T18:24:05.828545", "status": "completed" }, "pycharm": { @@ -4465,10 +4465,10 @@ "id": "62088262", "metadata": { "papermill": { - "duration": 0.030748, - "end_time": "2023-01-24T16:20:37.340429", + "duration": 0.045862, + "end_time": "2023-01-25T18:24:05.963461", "exception": false, - "start_time": "2023-01-24T16:20:37.309681", + "start_time": "2023-01-25T18:24:05.917599", "status": "completed" }, "pycharm": { @@ -4486,16 +4486,16 @@ "id": "9d31c411", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:37.403753Z", - "iopub.status.busy": "2023-01-24T16:20:37.403184Z", - "iopub.status.idle": "2023-01-24T16:20:37.410132Z", - "shell.execute_reply": "2023-01-24T16:20:37.409497Z" + "iopub.execute_input": "2023-01-25T18:24:06.066261Z", + "iopub.status.busy": "2023-01-25T18:24:06.064506Z", + "iopub.status.idle": "2023-01-25T18:24:06.075237Z", + "shell.execute_reply": "2023-01-25T18:24:06.074224Z" }, "papermill": { - "duration": 0.040333, - "end_time": "2023-01-24T16:20:37.411576", + "duration": 0.064966, + "end_time": "2023-01-25T18:24:06.077456", "exception": false, - "start_time": "2023-01-24T16:20:37.371243", + "start_time": "2023-01-25T18:24:06.012490", "status": "completed" }, "pycharm": { @@ -4529,16 +4529,16 @@ "id": "79764ccc", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:37.475099Z", - "iopub.status.busy": "2023-01-24T16:20:37.474538Z", - "iopub.status.idle": "2023-01-24T16:20:37.484933Z", - "shell.execute_reply": "2023-01-24T16:20:37.484295Z" + "iopub.execute_input": "2023-01-25T18:24:06.173610Z", + "iopub.status.busy": "2023-01-25T18:24:06.172822Z", + "iopub.status.idle": "2023-01-25T18:24:06.189627Z", + "shell.execute_reply": "2023-01-25T18:24:06.188712Z" }, "papermill": { - "duration": 0.04373, - "end_time": "2023-01-24T16:20:37.486341", + "duration": 0.063502, + "end_time": "2023-01-25T18:24:06.191783", "exception": false, - "start_time": "2023-01-24T16:20:37.442611", + "start_time": "2023-01-25T18:24:06.128281", "status": "completed" }, "pycharm": { @@ -4606,10 +4606,10 @@ "id": "e99daa09", "metadata": { "papermill": { - "duration": 0.030951, - "end_time": "2023-01-24T16:20:37.548456", + "duration": 0.0416, + "end_time": "2023-01-25T18:24:06.277080", "exception": false, - "start_time": "2023-01-24T16:20:37.517505", + "start_time": "2023-01-25T18:24:06.235480", "status": "completed" }, "pycharm": { @@ -4626,10 +4626,10 @@ "id": "77c1cab6", "metadata": { "papermill": { - "duration": 0.030837, - "end_time": "2023-01-24T16:20:37.610201", + "duration": 0.049, + "end_time": "2023-01-25T18:24:06.372698", "exception": false, - "start_time": "2023-01-24T16:20:37.579364", + "start_time": "2023-01-25T18:24:06.323698", "status": "completed" }, "pycharm": { @@ -4647,16 +4647,16 @@ "id": "6e8ca8f0", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:37.674552Z", - "iopub.status.busy": "2023-01-24T16:20:37.673981Z", - "iopub.status.idle": "2023-01-24T16:20:37.683152Z", - "shell.execute_reply": "2023-01-24T16:20:37.682593Z" + "iopub.execute_input": "2023-01-25T18:24:06.479931Z", + "iopub.status.busy": "2023-01-25T18:24:06.478766Z", + "iopub.status.idle": "2023-01-25T18:24:06.500402Z", + "shell.execute_reply": "2023-01-25T18:24:06.499539Z" }, "papermill": { - "duration": 0.043023, - "end_time": "2023-01-24T16:20:37.684483", + "duration": 0.077041, + "end_time": "2023-01-25T18:24:06.502369", "exception": false, - "start_time": "2023-01-24T16:20:37.641460", + "start_time": "2023-01-25T18:24:06.425328", "status": "completed" }, "pycharm": { @@ -4723,10 +4723,10 @@ "id": "408ba8d1", "metadata": { "papermill": { - "duration": 0.031284, - "end_time": "2023-01-24T16:20:37.746937", + "duration": 0.041499, + "end_time": "2023-01-25T18:24:06.587040", "exception": false, - "start_time": "2023-01-24T16:20:37.715653", + "start_time": "2023-01-25T18:24:06.545541", "status": "completed" }, "pycharm": { @@ -4744,16 +4744,16 @@ "id": "bf60216c", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:37.811285Z", - "iopub.status.busy": "2023-01-24T16:20:37.810451Z", - "iopub.status.idle": "2023-01-24T16:20:37.817261Z", - "shell.execute_reply": "2023-01-24T16:20:37.816541Z" + "iopub.execute_input": "2023-01-25T18:24:06.671548Z", + "iopub.status.busy": "2023-01-25T18:24:06.670416Z", + "iopub.status.idle": "2023-01-25T18:24:06.679995Z", + "shell.execute_reply": "2023-01-25T18:24:06.679162Z" }, "papermill": { - "duration": 0.040566, - "end_time": "2023-01-24T16:20:37.818755", + "duration": 0.054678, + "end_time": "2023-01-25T18:24:06.682117", "exception": false, - "start_time": "2023-01-24T16:20:37.778189", + "start_time": "2023-01-25T18:24:06.627439", "status": "completed" }, "pycharm": { @@ -4788,10 +4788,10 @@ "id": "b3ba42ef", "metadata": { "papermill": { - "duration": 0.031231, - "end_time": "2023-01-24T16:20:37.881173", + "duration": 0.038877, + "end_time": "2023-01-25T18:24:06.762975", "exception": false, - "start_time": "2023-01-24T16:20:37.849942", + "start_time": "2023-01-25T18:24:06.724098", "status": "completed" }, "pycharm": { @@ -4807,10 +4807,10 @@ "id": "9dd5f5e5", "metadata": { "papermill": { - "duration": 0.031306, - "end_time": "2023-01-24T16:20:37.943783", + "duration": 0.043264, + "end_time": "2023-01-25T18:24:06.846355", "exception": false, - "start_time": "2023-01-24T16:20:37.912477", + "start_time": "2023-01-25T18:24:06.803091", "status": "completed" }, "pycharm": { @@ -4827,10 +4827,10 @@ "id": "9ec2a91c", "metadata": { "papermill": { - "duration": 0.031298, - "end_time": "2023-01-24T16:20:38.006103", + "duration": 0.039513, + "end_time": "2023-01-25T18:24:06.925757", "exception": false, - "start_time": "2023-01-24T16:20:37.974805", + "start_time": "2023-01-25T18:24:06.886244", "status": "completed" }, "pycharm": { @@ -4848,16 +4848,16 @@ "id": "4d0f19fd", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:38.070768Z", - "iopub.status.busy": "2023-01-24T16:20:38.070053Z", - "iopub.status.idle": "2023-01-24T16:20:38.092943Z", - "shell.execute_reply": "2023-01-24T16:20:38.092234Z" + "iopub.execute_input": "2023-01-25T18:24:07.005298Z", + "iopub.status.busy": "2023-01-25T18:24:07.004610Z", + "iopub.status.idle": "2023-01-25T18:24:07.035618Z", + "shell.execute_reply": "2023-01-25T18:24:07.034757Z" }, "papermill": { - "duration": 0.056909, - "end_time": "2023-01-24T16:20:38.094632", + "duration": 0.073894, + "end_time": "2023-01-25T18:24:07.038140", "exception": false, - "start_time": "2023-01-24T16:20:38.037723", + "start_time": "2023-01-25T18:24:06.964246", "status": "completed" }, "pycharm": { @@ -5154,10 +5154,10 @@ "id": "90e742ca", "metadata": { "papermill": { - "duration": 0.031656, - "end_time": "2023-01-24T16:20:38.158141", + "duration": 0.039371, + "end_time": "2023-01-25T18:24:07.119511", "exception": false, - "start_time": "2023-01-24T16:20:38.126485", + "start_time": "2023-01-25T18:24:07.080140", "status": "completed" }, "pycharm": { @@ -5175,16 +5175,16 @@ "id": "2935b6a8", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:38.223367Z", - "iopub.status.busy": "2023-01-24T16:20:38.222746Z", - "iopub.status.idle": "2023-01-24T16:20:38.227632Z", - "shell.execute_reply": "2023-01-24T16:20:38.226957Z" + "iopub.execute_input": "2023-01-25T18:24:07.245059Z", + "iopub.status.busy": "2023-01-25T18:24:07.244393Z", + "iopub.status.idle": "2023-01-25T18:24:07.251451Z", + "shell.execute_reply": "2023-01-25T18:24:07.250626Z" }, "papermill": { - "duration": 0.039121, - "end_time": "2023-01-24T16:20:38.229172", + "duration": 0.051333, + "end_time": "2023-01-25T18:24:07.253410", "exception": false, - "start_time": "2023-01-24T16:20:38.190051", + "start_time": "2023-01-25T18:24:07.202077", "status": "completed" }, "pycharm": { @@ -5220,16 +5220,16 @@ "id": "a5fb01f7", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:38.294639Z", - "iopub.status.busy": "2023-01-24T16:20:38.294104Z", - "iopub.status.idle": "2023-01-24T16:20:38.298793Z", - "shell.execute_reply": "2023-01-24T16:20:38.298181Z" + "iopub.execute_input": "2023-01-25T18:24:07.336126Z", + "iopub.status.busy": "2023-01-25T18:24:07.335546Z", + "iopub.status.idle": "2023-01-25T18:24:07.342017Z", + "shell.execute_reply": "2023-01-25T18:24:07.341201Z" }, "papermill": { - "duration": 0.039553, - "end_time": "2023-01-24T16:20:38.300215", + "duration": 0.050841, + "end_time": "2023-01-25T18:24:07.344133", "exception": false, - "start_time": "2023-01-24T16:20:38.260662", + "start_time": "2023-01-25T18:24:07.293292", "status": "completed" }, "pycharm": { @@ -5266,10 +5266,10 @@ "id": "731e2ab8", "metadata": { "papermill": { - "duration": 0.031851, - "end_time": "2023-01-24T16:20:38.363733", + "duration": 0.041969, + "end_time": "2023-01-25T18:24:07.425985", "exception": false, - "start_time": "2023-01-24T16:20:38.331882", + "start_time": "2023-01-25T18:24:07.384016", "status": "completed" }, "pycharm": { @@ -5287,16 +5287,16 @@ "id": "31028431", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:38.429861Z", - "iopub.status.busy": "2023-01-24T16:20:38.429296Z", - "iopub.status.idle": "2023-01-24T16:20:38.439962Z", - "shell.execute_reply": "2023-01-24T16:20:38.439228Z" + "iopub.execute_input": "2023-01-25T18:24:07.513838Z", + "iopub.status.busy": "2023-01-25T18:24:07.513221Z", + "iopub.status.idle": "2023-01-25T18:24:07.528648Z", + "shell.execute_reply": "2023-01-25T18:24:07.527253Z" }, "papermill": { - "duration": 0.0457, - "end_time": "2023-01-24T16:20:38.441476", + "duration": 0.060497, + "end_time": "2023-01-25T18:24:07.530678", "exception": false, - "start_time": "2023-01-24T16:20:38.395776", + "start_time": "2023-01-25T18:24:07.470181", "status": "completed" }, "pycharm": { @@ -5364,10 +5364,10 @@ "id": "b875e804", "metadata": { "papermill": { - "duration": 0.03195, - "end_time": "2023-01-24T16:20:38.505926", + "duration": 0.043874, + "end_time": "2023-01-25T18:24:07.617002", "exception": false, - "start_time": "2023-01-24T16:20:38.473976", + "start_time": "2023-01-25T18:24:07.573128", "status": "completed" }, "pycharm": { @@ -5384,10 +5384,10 @@ "id": "f9211fc5", "metadata": { "papermill": { - "duration": 0.031841, - "end_time": "2023-01-24T16:20:38.569649", + "duration": 0.043131, + "end_time": "2023-01-25T18:24:07.700409", "exception": false, - "start_time": "2023-01-24T16:20:38.537808", + "start_time": "2023-01-25T18:24:07.657278", "status": "completed" }, "pycharm": { @@ -5404,10 +5404,10 @@ "id": "cc59f9dc", "metadata": { "papermill": { - "duration": 0.031665, - "end_time": "2023-01-24T16:20:38.633523", + "duration": 0.040741, + "end_time": "2023-01-25T18:24:07.780667", "exception": false, - "start_time": "2023-01-24T16:20:38.601858", + "start_time": "2023-01-25T18:24:07.739926", "status": "completed" }, "pycharm": { @@ -5425,16 +5425,16 @@ "id": "54f91b4f", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:38.699284Z", - "iopub.status.busy": "2023-01-24T16:20:38.698477Z", - "iopub.status.idle": "2023-01-24T16:20:38.702892Z", - "shell.execute_reply": "2023-01-24T16:20:38.702166Z" + "iopub.execute_input": "2023-01-25T18:24:07.863697Z", + "iopub.status.busy": "2023-01-25T18:24:07.862975Z", + "iopub.status.idle": "2023-01-25T18:24:07.868586Z", + "shell.execute_reply": "2023-01-25T18:24:07.867662Z" }, "papermill": { - "duration": 0.039079, - "end_time": "2023-01-24T16:20:38.704455", + "duration": 0.048907, + "end_time": "2023-01-25T18:24:07.870709", "exception": false, - "start_time": "2023-01-24T16:20:38.665376", + "start_time": "2023-01-25T18:24:07.821802", "status": "completed" }, "pycharm": { @@ -5468,10 +5468,10 @@ "id": "d6c74213", "metadata": { "papermill": { - "duration": 0.032, - "end_time": "2023-01-24T16:20:38.768738", + "duration": 0.045559, + "end_time": "2023-01-25T18:24:07.955923", "exception": false, - "start_time": "2023-01-24T16:20:38.736738", + "start_time": "2023-01-25T18:24:07.910364", "status": "completed" }, "pycharm": { @@ -5488,10 +5488,10 @@ "id": "b8fe48de", "metadata": { "papermill": { - "duration": 0.032056, - "end_time": "2023-01-24T16:20:38.832892", + "duration": 0.040349, + "end_time": "2023-01-25T18:24:08.037907", "exception": false, - "start_time": "2023-01-24T16:20:38.800836", + "start_time": "2023-01-25T18:24:07.997558", "status": "completed" }, "pycharm": { @@ -5509,16 +5509,16 @@ "id": "5c519ede", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:38.899052Z", - "iopub.status.busy": "2023-01-24T16:20:38.898473Z", - "iopub.status.idle": "2023-01-24T16:20:38.902483Z", - "shell.execute_reply": "2023-01-24T16:20:38.901806Z" + "iopub.execute_input": "2023-01-25T18:24:08.129433Z", + "iopub.status.busy": "2023-01-25T18:24:08.128889Z", + "iopub.status.idle": "2023-01-25T18:24:08.133899Z", + "shell.execute_reply": "2023-01-25T18:24:08.132997Z" }, "papermill": { - "duration": 0.038776, - "end_time": "2023-01-24T16:20:38.903906", + "duration": 0.053205, + "end_time": "2023-01-25T18:24:08.136082", "exception": false, - "start_time": "2023-01-24T16:20:38.865130", + "start_time": "2023-01-25T18:24:08.082877", "status": "completed" }, "pycharm": { @@ -5537,16 +5537,16 @@ "id": "1c04f4fd", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:38.970006Z", - "iopub.status.busy": "2023-01-24T16:20:38.969432Z", - "iopub.status.idle": "2023-01-24T16:20:38.990534Z", - "shell.execute_reply": "2023-01-24T16:20:38.989888Z" + "iopub.execute_input": "2023-01-25T18:24:08.225242Z", + "iopub.status.busy": "2023-01-25T18:24:08.224681Z", + "iopub.status.idle": "2023-01-25T18:24:08.255587Z", + "shell.execute_reply": "2023-01-25T18:24:08.254577Z" }, "papermill": { - "duration": 0.05582, - "end_time": "2023-01-24T16:20:38.992024", + "duration": 0.078188, + "end_time": "2023-01-25T18:24:08.257622", "exception": false, - "start_time": "2023-01-24T16:20:38.936204", + "start_time": "2023-01-25T18:24:08.179434", "status": "completed" }, "pycharm": { @@ -5873,10 +5873,10 @@ "id": "08c3f8d5", "metadata": { "papermill": { - "duration": 0.032896, - "end_time": "2023-01-24T16:20:39.057685", + "duration": 0.04175, + "end_time": "2023-01-25T18:24:08.341690", "exception": false, - "start_time": "2023-01-24T16:20:39.024789", + "start_time": "2023-01-25T18:24:08.299940", "status": "completed" }, "pycharm": { @@ -5893,10 +5893,10 @@ "id": "a9dc1c8f", "metadata": { "papermill": { - "duration": 0.032428, - "end_time": "2023-01-24T16:20:39.123172", + "duration": 0.041797, + "end_time": "2023-01-25T18:24:08.424450", "exception": false, - "start_time": "2023-01-24T16:20:39.090744", + "start_time": "2023-01-25T18:24:08.382653", "status": "completed" }, "pycharm": { @@ -5914,16 +5914,16 @@ "id": "eea0fa3d", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:39.189823Z", - "iopub.status.busy": "2023-01-24T16:20:39.189126Z", - "iopub.status.idle": "2023-01-24T16:20:39.193926Z", - "shell.execute_reply": "2023-01-24T16:20:39.193425Z" + "iopub.execute_input": "2023-01-25T18:24:08.510094Z", + "iopub.status.busy": "2023-01-25T18:24:08.509521Z", + "iopub.status.idle": "2023-01-25T18:24:08.516052Z", + "shell.execute_reply": "2023-01-25T18:24:08.515234Z" }, "papermill": { - "duration": 0.039715, - "end_time": "2023-01-24T16:20:39.195318", + "duration": 0.053428, + "end_time": "2023-01-25T18:24:08.518689", "exception": false, - "start_time": "2023-01-24T16:20:39.155603", + "start_time": "2023-01-25T18:24:08.465261", "status": "completed" }, "pycharm": { @@ -5954,10 +5954,10 @@ "id": "f765cf8d", "metadata": { "papermill": { - "duration": 0.032662, - "end_time": "2023-01-24T16:20:39.260520", + "duration": 0.042744, + "end_time": "2023-01-25T18:24:08.605313", "exception": false, - "start_time": "2023-01-24T16:20:39.227858", + "start_time": "2023-01-25T18:24:08.562569", "status": "completed" }, "pycharm": { @@ -5974,10 +5974,10 @@ "id": "2354be59", "metadata": { "papermill": { - "duration": 0.032409, - "end_time": "2023-01-24T16:20:39.326743", + "duration": 0.041919, + "end_time": "2023-01-25T18:24:08.688721", "exception": false, - "start_time": "2023-01-24T16:20:39.294334", + "start_time": "2023-01-25T18:24:08.646802", "status": "completed" }, "pycharm": { @@ -5996,10 +5996,10 @@ "id": "768b2dd4", "metadata": { "papermill": { - "duration": 0.032612, - "end_time": "2023-01-24T16:20:39.391822", + "duration": 0.039228, + "end_time": "2023-01-25T18:24:08.769677", "exception": false, - "start_time": "2023-01-24T16:20:39.359210", + "start_time": "2023-01-25T18:24:08.730449", "status": "completed" }, "pycharm": { @@ -6016,10 +6016,10 @@ "id": "3985b896", "metadata": { "papermill": { - "duration": 0.032409, - "end_time": "2023-01-24T16:20:39.456692", + "duration": 0.041126, + "end_time": "2023-01-25T18:24:08.852349", "exception": false, - "start_time": "2023-01-24T16:20:39.424283", + "start_time": "2023-01-25T18:24:08.811223", "status": "completed" }, "pycharm": { @@ -6038,10 +6038,10 @@ "id": "54d1a1d3", "metadata": { "papermill": { - "duration": 0.032431, - "end_time": "2023-01-24T16:20:39.521401", + "duration": 0.040724, + "end_time": "2023-01-25T18:24:08.935052", "exception": false, - "start_time": "2023-01-24T16:20:39.488970", + "start_time": "2023-01-25T18:24:08.894328", "status": "completed" }, "pycharm": { @@ -6058,10 +6058,10 @@ "id": "d982faa5", "metadata": { "papermill": { - "duration": 0.032294, - "end_time": "2023-01-24T16:20:39.585986", + "duration": 0.041791, + "end_time": "2023-01-25T18:24:09.017777", "exception": false, - "start_time": "2023-01-24T16:20:39.553692", + "start_time": "2023-01-25T18:24:08.975986", "status": "completed" }, "pycharm": { @@ -6080,10 +6080,10 @@ "id": "757f68db", "metadata": { "papermill": { - "duration": 0.032531, - "end_time": "2023-01-24T16:20:39.650895", + "duration": 0.043076, + "end_time": "2023-01-25T18:24:09.109136", "exception": false, - "start_time": "2023-01-24T16:20:39.618364", + "start_time": "2023-01-25T18:24:09.066060", "status": "completed" }, "pycharm": { @@ -6100,10 +6100,10 @@ "id": "2853c8c8", "metadata": { "papermill": { - "duration": 0.032423, - "end_time": "2023-01-24T16:20:39.715964", + "duration": 0.041671, + "end_time": "2023-01-25T18:24:09.193152", "exception": false, - "start_time": "2023-01-24T16:20:39.683541", + "start_time": "2023-01-25T18:24:09.151481", "status": "completed" }, "pycharm": { @@ -6122,10 +6122,10 @@ "id": "ec343aef", "metadata": { "papermill": { - "duration": 0.032376, - "end_time": "2023-01-24T16:20:39.780825", + "duration": 0.042347, + "end_time": "2023-01-25T18:24:09.278412", "exception": false, - "start_time": "2023-01-24T16:20:39.748449", + "start_time": "2023-01-25T18:24:09.236065", "status": "completed" }, "pycharm": { @@ -6145,10 +6145,10 @@ "id": "52140d97", "metadata": { "papermill": { - "duration": 0.032373, - "end_time": "2023-01-24T16:20:39.845666", + "duration": 0.039602, + "end_time": "2023-01-25T18:24:09.359796", "exception": false, - "start_time": "2023-01-24T16:20:39.813293", + "start_time": "2023-01-25T18:24:09.320194", "status": "completed" }, "pycharm": { @@ -6164,10 +6164,10 @@ "id": "12c7f170", "metadata": { "papermill": { - "duration": 0.032411, - "end_time": "2023-01-24T16:20:39.910302", + "duration": 0.042689, + "end_time": "2023-01-25T18:24:09.443108", "exception": false, - "start_time": "2023-01-24T16:20:39.877891", + "start_time": "2023-01-25T18:24:09.400419", "status": "completed" }, "pycharm": { @@ -6184,10 +6184,10 @@ "id": "1cedb900", "metadata": { "papermill": { - "duration": 0.032488, - "end_time": "2023-01-24T16:20:39.975484", + "duration": 0.041343, + "end_time": "2023-01-25T18:24:09.525247", "exception": false, - "start_time": "2023-01-24T16:20:39.942996", + "start_time": "2023-01-25T18:24:09.483904", "status": "completed" }, "pycharm": { @@ -6205,16 +6205,16 @@ "id": "67ec7003", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:40.042650Z", - "iopub.status.busy": "2023-01-24T16:20:40.042077Z", - "iopub.status.idle": "2023-01-24T16:20:40.048141Z", - "shell.execute_reply": "2023-01-24T16:20:40.047485Z" + "iopub.execute_input": "2023-01-25T18:24:09.613554Z", + "iopub.status.busy": "2023-01-25T18:24:09.612989Z", + "iopub.status.idle": "2023-01-25T18:24:09.621579Z", + "shell.execute_reply": "2023-01-25T18:24:09.620456Z" }, "papermill": { - "duration": 0.041418, - "end_time": "2023-01-24T16:20:40.049615", + "duration": 0.054174, + "end_time": "2023-01-25T18:24:09.623983", "exception": false, - "start_time": "2023-01-24T16:20:40.008197", + "start_time": "2023-01-25T18:24:09.569809", "status": "completed" }, "pycharm": { @@ -6247,16 +6247,16 @@ "id": "04008a46", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:40.117771Z", - "iopub.status.busy": "2023-01-24T16:20:40.117213Z", - "iopub.status.idle": "2023-01-24T16:20:40.138271Z", - "shell.execute_reply": "2023-01-24T16:20:40.137587Z" + "iopub.execute_input": "2023-01-25T18:24:09.707961Z", + "iopub.status.busy": "2023-01-25T18:24:09.707118Z", + "iopub.status.idle": "2023-01-25T18:24:09.737539Z", + "shell.execute_reply": "2023-01-25T18:24:09.736486Z" }, "papermill": { - "duration": 0.05648, - "end_time": "2023-01-24T16:20:40.139764", + "duration": 0.075712, + "end_time": "2023-01-25T18:24:09.739475", "exception": false, - "start_time": "2023-01-24T16:20:40.083284", + "start_time": "2023-01-25T18:24:09.663763", "status": "completed" }, "pycharm": { @@ -6575,10 +6575,10 @@ "id": "d298a228", "metadata": { "papermill": { - "duration": 0.032998, - "end_time": "2023-01-24T16:20:40.206162", + "duration": 0.041283, + "end_time": "2023-01-25T18:24:09.822435", "exception": false, - "start_time": "2023-01-24T16:20:40.173164", + "start_time": "2023-01-25T18:24:09.781152", "status": "completed" }, "pycharm": { @@ -6596,16 +6596,16 @@ "id": "53012df3", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:40.274188Z", - "iopub.status.busy": "2023-01-24T16:20:40.273621Z", - "iopub.status.idle": "2023-01-24T16:20:40.376757Z", - "shell.execute_reply": "2023-01-24T16:20:40.376093Z" + "iopub.execute_input": "2023-01-25T18:24:09.905889Z", + "iopub.status.busy": "2023-01-25T18:24:09.905314Z", + "iopub.status.idle": "2023-01-25T18:24:10.046899Z", + "shell.execute_reply": "2023-01-25T18:24:10.045892Z" }, "papermill": { - "duration": 0.139176, - "end_time": "2023-01-24T16:20:40.378580", + "duration": 0.186253, + "end_time": "2023-01-25T18:24:10.049390", "exception": false, - "start_time": "2023-01-24T16:20:40.239404", + "start_time": "2023-01-25T18:24:09.863137", "status": "completed" }, "pycharm": { @@ -6624,16 +6624,16 @@ "id": "783a85a4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:20:40.446509Z", - "iopub.status.busy": "2023-01-24T16:20:40.445944Z", - "iopub.status.idle": "2023-01-24T16:21:53.527913Z", - "shell.execute_reply": "2023-01-24T16:21:53.527330Z" + "iopub.execute_input": "2023-01-25T18:24:10.146336Z", + "iopub.status.busy": "2023-01-25T18:24:10.145237Z", + "iopub.status.idle": "2023-01-25T18:25:56.208393Z", + "shell.execute_reply": "2023-01-25T18:25:56.207490Z" }, "papermill": { - "duration": 73.118317, - "end_time": "2023-01-24T16:21:53.530185", + "duration": 106.116888, + "end_time": "2023-01-25T18:25:56.211146", "exception": false, - "start_time": "2023-01-24T16:20:40.411868", + "start_time": "2023-01-25T18:24:10.094258", "status": "completed" }, "pycharm": { @@ -6646,32 +6646,32 @@ "name": "stderr", "output_type": "stream", "text": [ - "behavior_ophys_experiment_955276580.nwb: 100%|██████████| 280M/280M [00:08<00:00, 34.5MMB/s]\n", + "behavior_ophys_experiment_955276580.nwb: 100%|██████████| 280M/280M [00:11<00:00, 24.1MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_ophys_experiment_956903375.nwb: 100%|██████████| 288M/288M [00:07<00:00, 37.5MMB/s]\n", + "behavior_ophys_experiment_956903375.nwb: 100%|██████████| 288M/288M [00:10<00:00, 26.2MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_ophys_experiment_957652800.nwb: 100%|██████████| 290M/290M [00:07<00:00, 38.7MMB/s]\n", + "behavior_ophys_experiment_957652800.nwb: 100%|██████████| 290M/290M [00:11<00:00, 24.9MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_ophys_experiment_959337347.nwb: 100%|██████████| 305M/305M [00:08<00:00, 36.4MMB/s]\n", + "behavior_ophys_experiment_959337347.nwb: 100%|██████████| 305M/305M [00:12<00:00, 24.5MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_ophys_experiment_960351917.nwb: 100%|██████████| 295M/295M [00:07<00:00, 39.4MMB/s]\n", + "behavior_ophys_experiment_960351917.nwb: 100%|██████████| 295M/295M [00:10<00:00, 27.1MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_ophys_experiment_960960480.nwb: 100%|██████████| 300M/300M [00:09<00:00, 32.2MMB/s]\n", + "behavior_ophys_experiment_960960480.nwb: 100%|██████████| 300M/300M [00:11<00:00, 25.6MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", @@ -6710,10 +6710,10 @@ "id": "e307cb12", "metadata": { "papermill": { - "duration": 0.052548, - "end_time": "2023-01-24T16:21:53.636301", + "duration": 0.082675, + "end_time": "2023-01-25T18:25:56.371779", "exception": false, - "start_time": "2023-01-24T16:21:53.583753", + "start_time": "2023-01-25T18:25:56.289104", "status": "completed" }, "pycharm": { @@ -6729,10 +6729,10 @@ "id": "916a6eb1", "metadata": { "papermill": { - "duration": 0.05252, - "end_time": "2023-01-24T16:21:53.741396", + "duration": 0.075928, + "end_time": "2023-01-25T18:25:56.524162", "exception": false, - "start_time": "2023-01-24T16:21:53.688876", + "start_time": "2023-01-25T18:25:56.448234", "status": "completed" }, "pycharm": { @@ -6750,16 +6750,16 @@ "id": "8583aaf9", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:21:53.848803Z", - "iopub.status.busy": "2023-01-24T16:21:53.848228Z", - "iopub.status.idle": "2023-01-24T16:21:53.853839Z", - "shell.execute_reply": "2023-01-24T16:21:53.853288Z" + "iopub.execute_input": "2023-01-25T18:25:56.685244Z", + "iopub.status.busy": "2023-01-25T18:25:56.684386Z", + "iopub.status.idle": "2023-01-25T18:25:56.692605Z", + "shell.execute_reply": "2023-01-25T18:25:56.691737Z" }, "papermill": { - "duration": 0.060743, - "end_time": "2023-01-24T16:21:53.855171", + "duration": 0.092552, + "end_time": "2023-01-25T18:25:56.694621", "exception": false, - "start_time": "2023-01-24T16:21:53.794428", + "start_time": "2023-01-25T18:25:56.602069", "status": "completed" }, "pycharm": { @@ -6784,16 +6784,16 @@ "id": "78e63532", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:21:53.965251Z", - "iopub.status.busy": "2023-01-24T16:21:53.964870Z", - "iopub.status.idle": "2023-01-24T16:21:53.972145Z", - "shell.execute_reply": "2023-01-24T16:21:53.971612Z" + "iopub.execute_input": "2023-01-25T18:25:56.849079Z", + "iopub.status.busy": "2023-01-25T18:25:56.848702Z", + "iopub.status.idle": "2023-01-25T18:25:56.860884Z", + "shell.execute_reply": "2023-01-25T18:25:56.859606Z" }, "papermill": { - "duration": 0.062526, - "end_time": "2023-01-24T16:21:53.973483", + "duration": 0.093075, + "end_time": "2023-01-25T18:25:56.862928", "exception": false, - "start_time": "2023-01-24T16:21:53.910957", + "start_time": "2023-01-25T18:25:56.769853", "status": "completed" }, "pycharm": { @@ -6842,10 +6842,10 @@ "id": "ef194001", "metadata": { "papermill": { - "duration": 0.053557, - "end_time": "2023-01-24T16:21:54.080543", + "duration": 0.075702, + "end_time": "2023-01-25T18:25:57.011765", "exception": false, - "start_time": "2023-01-24T16:21:54.026986", + "start_time": "2023-01-25T18:25:56.936063", "status": "completed" }, "pycharm": { @@ -6863,16 +6863,16 @@ "id": "d035286a", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:21:54.189443Z", - "iopub.status.busy": "2023-01-24T16:21:54.188707Z", - "iopub.status.idle": "2023-01-24T16:21:54.193282Z", - "shell.execute_reply": "2023-01-24T16:21:54.192604Z" + "iopub.execute_input": "2023-01-25T18:25:57.160407Z", + "iopub.status.busy": "2023-01-25T18:25:57.159551Z", + "iopub.status.idle": "2023-01-25T18:25:57.165516Z", + "shell.execute_reply": "2023-01-25T18:25:57.164632Z" }, "papermill": { - "duration": 0.060677, - "end_time": "2023-01-24T16:21:54.195596", + "duration": 0.081429, + "end_time": "2023-01-25T18:25:57.167351", "exception": false, - "start_time": "2023-01-24T16:21:54.134919", + "start_time": "2023-01-25T18:25:57.085922", "status": "completed" }, "pycharm": { @@ -6901,16 +6901,16 @@ "id": "0bf45dda", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:21:54.303475Z", - "iopub.status.busy": "2023-01-24T16:21:54.302733Z", - "iopub.status.idle": "2023-01-24T16:22:59.826690Z", - "shell.execute_reply": "2023-01-24T16:22:59.825988Z" + "iopub.execute_input": "2023-01-25T18:25:57.311902Z", + "iopub.status.busy": "2023-01-25T18:25:57.311205Z", + "iopub.status.idle": "2023-01-25T18:27:26.824060Z", + "shell.execute_reply": "2023-01-25T18:27:26.823010Z" }, "papermill": { - "duration": 65.580595, - "end_time": "2023-01-24T16:22:59.828986", + "duration": 89.587805, + "end_time": "2023-01-25T18:27:26.826176", "exception": false, - "start_time": "2023-01-24T16:21:54.248391", + "start_time": "2023-01-25T18:25:57.238371", "status": "completed" }, "pycharm": { @@ -6923,32 +6923,32 @@ "name": "stderr", "output_type": "stream", "text": [ - "behavior_ophys_experiment_1050762966.nwb: 100%|██████████| 254M/254M [00:07<00:00, 34.1MMB/s]\n", + "behavior_ophys_experiment_1050762966.nwb: 100%|██████████| 254M/254M [00:10<00:00, 24.4MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_ophys_experiment_1050762969.nwb: 100%|██████████| 253M/253M [00:07<00:00, 34.8MMB/s]\n", + "behavior_ophys_experiment_1050762969.nwb: 100%|██████████| 253M/253M [00:10<00:00, 23.7MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_ophys_experiment_1050762972.nwb: 100%|██████████| 244M/244M [00:06<00:00, 37.8MMB/s]\n", + "behavior_ophys_experiment_1050762972.nwb: 100%|██████████| 244M/244M [00:08<00:00, 28.8MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_ophys_experiment_1050762974.nwb: 100%|██████████| 248M/248M [00:07<00:00, 32.8MMB/s]\n", + "behavior_ophys_experiment_1050762974.nwb: 100%|██████████| 248M/248M [00:09<00:00, 27.3MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_ophys_experiment_1050762975.nwb: 100%|██████████| 253M/253M [00:06<00:00, 37.4MMB/s]\n", + "behavior_ophys_experiment_1050762975.nwb: 100%|██████████| 253M/253M [00:08<00:00, 31.1MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", - "behavior_ophys_experiment_1050762977.nwb: 100%|██████████| 242M/242M [00:06<00:00, 34.6MMB/s]\n", + "behavior_ophys_experiment_1050762977.nwb: 100%|██████████| 242M/242M [00:08<00:00, 29.1MMB/s]\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'hdmf-common' version 1.3.0 because version 1.5.1 is already loaded.\n", " warn(\"Ignoring cached namespace '%s' version %s because version %s is already loaded.\"\n", "/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/hdmf/spec/namespace.py:531: UserWarning: Ignoring cached namespace 'core' version 2.2.5 because version 2.5.0 is already loaded.\n", @@ -6958,7 +6958,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 55, @@ -7009,10 +7009,10 @@ "id": "2f9f57a1", "metadata": { "papermill": { - "duration": 0.069797, - "end_time": "2023-01-24T16:22:59.996562", + "duration": 0.093142, + "end_time": "2023-01-25T18:27:27.012647", "exception": false, - "start_time": "2023-01-24T16:22:59.926765", + "start_time": "2023-01-25T18:27:26.919505", "status": "completed" }, "pycharm": { @@ -7030,16 +7030,16 @@ "id": "0b9608e5", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:23:00.137490Z", - "iopub.status.busy": "2023-01-24T16:23:00.136745Z", - "iopub.status.idle": "2023-01-24T16:23:00.144357Z", - "shell.execute_reply": "2023-01-24T16:23:00.143727Z" + "iopub.execute_input": "2023-01-25T18:27:27.265991Z", + "iopub.status.busy": "2023-01-25T18:27:27.265094Z", + "iopub.status.idle": "2023-01-25T18:27:27.278569Z", + "shell.execute_reply": "2023-01-25T18:27:27.276367Z" }, "papermill": { - "duration": 0.079564, - "end_time": "2023-01-24T16:23:00.145859", + "duration": 0.120745, + "end_time": "2023-01-25T18:27:27.281368", "exception": false, - "start_time": "2023-01-24T16:23:00.066295", + "start_time": "2023-01-25T18:27:27.160623", "status": "completed" }, "pycharm": { @@ -7134,10 +7134,10 @@ "id": "6b4a6555", "metadata": { "papermill": { - "duration": 0.069372, - "end_time": "2023-01-24T16:23:00.284178", + "duration": 0.100666, + "end_time": "2023-01-25T18:27:27.479881", "exception": false, - "start_time": "2023-01-24T16:23:00.214806", + "start_time": "2023-01-25T18:27:27.379215", "status": "completed" }, "tags": [] @@ -7152,16 +7152,16 @@ "id": "2da8849b", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:23:00.424500Z", - "iopub.status.busy": "2023-01-24T16:23:00.423934Z", - "iopub.status.idle": "2023-01-24T16:23:00.592115Z", - "shell.execute_reply": "2023-01-24T16:23:00.591440Z" + "iopub.execute_input": "2023-01-25T18:27:27.691302Z", + "iopub.status.busy": "2023-01-25T18:27:27.690527Z", + "iopub.status.idle": "2023-01-25T18:27:28.139502Z", + "shell.execute_reply": "2023-01-25T18:27:28.138520Z" }, "papermill": { - "duration": 0.240383, - "end_time": "2023-01-24T16:23:00.594301", + "duration": 0.559239, + "end_time": "2023-01-25T18:27:28.142542", "exception": false, - "start_time": "2023-01-24T16:23:00.353918", + "start_time": "2023-01-25T18:27:27.583303", "status": "completed" }, "tags": [] @@ -7210,10 +7210,10 @@ "id": "acbf3e5a", "metadata": { "papermill": { - "duration": 0.069771, - "end_time": "2023-01-24T16:23:00.734234", + "duration": 0.094141, + "end_time": "2023-01-25T18:27:28.331067", "exception": false, - "start_time": "2023-01-24T16:23:00.664463", + "start_time": "2023-01-25T18:27:28.236926", "status": "completed" }, "tags": [] @@ -7228,16 +7228,16 @@ "id": "d584bdac", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:23:00.875488Z", - "iopub.status.busy": "2023-01-24T16:23:00.874914Z", - "iopub.status.idle": "2023-01-24T16:23:00.879406Z", - "shell.execute_reply": "2023-01-24T16:23:00.878863Z" + "iopub.execute_input": "2023-01-25T18:27:28.532725Z", + "iopub.status.busy": "2023-01-25T18:27:28.531687Z", + "iopub.status.idle": "2023-01-25T18:27:28.538286Z", + "shell.execute_reply": "2023-01-25T18:27:28.537349Z" }, "papermill": { - "duration": 0.076716, - "end_time": "2023-01-24T16:23:00.880775", + "duration": 0.109595, + "end_time": "2023-01-25T18:27:28.540847", "exception": false, - "start_time": "2023-01-24T16:23:00.804059", + "start_time": "2023-01-25T18:27:28.431252", "status": "completed" }, "tags": [] @@ -7252,10 +7252,10 @@ "id": "4b5272f7", "metadata": { "papermill": { - "duration": 0.069251, - "end_time": "2023-01-24T16:23:01.019997", + "duration": 0.099738, + "end_time": "2023-01-25T18:27:28.734844", "exception": false, - "start_time": "2023-01-24T16:23:00.950746", + "start_time": "2023-01-25T18:27:28.635106", "status": "completed" }, "tags": [] @@ -7270,16 +7270,16 @@ "id": "85244312", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:23:01.161401Z", - "iopub.status.busy": "2023-01-24T16:23:01.160831Z", - "iopub.status.idle": "2023-01-24T16:23:01.508221Z", - "shell.execute_reply": "2023-01-24T16:23:01.507463Z" + "iopub.execute_input": "2023-01-25T18:27:28.926281Z", + "iopub.status.busy": "2023-01-25T18:27:28.925667Z", + "iopub.status.idle": "2023-01-25T18:27:29.242165Z", + "shell.execute_reply": "2023-01-25T18:27:29.241134Z" }, "papermill": { - "duration": 0.420192, - "end_time": "2023-01-24T16:23:01.510010", + "duration": 0.414553, + "end_time": "2023-01-25T18:27:29.244142", "exception": false, - "start_time": "2023-01-24T16:23:01.089818", + "start_time": "2023-01-25T18:27:28.829589", "status": "completed" }, "tags": [] @@ -7309,10 +7309,10 @@ "id": "e84eb564", "metadata": { "papermill": { - "duration": 0.072441, - "end_time": "2023-01-24T16:23:01.656359", + "duration": 0.10203, + "end_time": "2023-01-25T18:27:29.446967", "exception": false, - "start_time": "2023-01-24T16:23:01.583918", + "start_time": "2023-01-25T18:27:29.344937", "status": "completed" }, "tags": [] @@ -7327,16 +7327,16 @@ "id": "864c2ee4", "metadata": { "execution": { - "iopub.execute_input": "2023-01-24T16:23:01.801806Z", - "iopub.status.busy": "2023-01-24T16:23:01.801232Z", - "iopub.status.idle": "2023-01-24T16:23:01.957517Z", - "shell.execute_reply": "2023-01-24T16:23:01.956878Z" + "iopub.execute_input": "2023-01-25T18:27:29.702163Z", + "iopub.status.busy": "2023-01-25T18:27:29.701764Z", + "iopub.status.idle": "2023-01-25T18:27:30.714064Z", + "shell.execute_reply": "2023-01-25T18:27:30.713031Z" }, "papermill": { - "duration": 0.230693, - "end_time": "2023-01-24T16:23:01.959149", + "duration": 1.16828, + "end_time": "2023-01-25T18:27:30.716086", "exception": false, - "start_time": "2023-01-24T16:23:01.728456", + "start_time": "2023-01-25T18:27:29.547806", "status": "completed" }, "tags": [] @@ -7392,17 +7392,17 @@ }, "papermill": { "default_parameters": {}, - "duration": 168.598814, - "end_time": "2023-01-24T16:23:02.552387", + "duration": 237.28742, + "end_time": "2023-01-25T18:27:31.635999", "environment_variables": {}, "exception": null, "input_path": "doc_template/examples_root/examples/nb/visual_behavior_ophys_dataset_manifest.ipynb", - "output_path": "/tmp/tmp_fq2z8ma/scratch_nb.ipynb", + "output_path": "/tmp/tmp2eslfx52/scratch_nb.ipynb", "parameters": { - "output_dir": "/tmp/tmp_fq2z8ma", + "output_dir": "/tmp/tmp2eslfx52", "resources_dir": "/home/runner/work/AllenSDK/AllenSDK/allensdk/internal/notebooks/resources" }, - "start_time": "2023-01-24T16:20:13.953573", + "start_time": "2023-01-25T18:23:34.348579", "version": "2.4.0" } }, diff --git a/doc_template/visual_behavior_neuropixels.rst b/doc_template/visual_behavior_neuropixels.rst index 5787a6163..28400c51c 100644 --- a/doc_template/visual_behavior_neuropixels.rst +++ b/doc_template/visual_behavior_neuropixels.rst @@ -38,14 +38,20 @@ DATA FILE CHANGELOG **v0.4.0** -Added Local Field Potential data associated with individual ecephys session probes. -Added 3424 behavior only sessions. -stimulus_presentations/trials tables changes +New Data: + +- Added Local Field Potential (LFP) data associated with individual ecephys session probes. +- Added 3424 behavior only sessions. + +Stimulus_presentations/trials tables changes: + - Add trials_id column in stimulus_presentations table. - stop_time -> end_time - Various data type fixes. -Metadata changes -- New channels metadata table + +Metadata changes: + +- New channels metadata table. - Various data type fixes.