Mainak Jas
Mainak Jas
Not exactly sure if it's intended behavior. If you do: ```py with MPIBackend(n_procs=3): dpls = simulate_dipole(net, n_trials=1) ``` and `mpi4py` is not installed, it should throw an `ImportError` rather than...
Many of us have been aware for a long time but there are many hard-coded values in the postprocessing steps. For example, here: https://github.com/jonescompneurolab/hnn-core/blob/bc8e4f24a97413cdf168e2d1ee35e38197671254/hnn_core/dipole.py#L249-L260 This introduces a kink in the...
Sometimes, the correct key may not be used because of a typo. The params object should check and not allow any key.
cross posting from the forum: https://mne.discourse.group/t/including-bad-channels-in-autoreject/7369/4 ```py # set parameters for autoreject n_interpolates = np.array((1, 2, 3, 5, 7, 9)) consensus_percs = np.linspace(0.2, 0.7, 11) # init autoreject object, picks...
closes #10447 It begins to get a little hairy when one gets into the details, particularly preloaded vs not ... and how to handle concatenated raws
As discussed in the group meeting, we should show all neurons, not just the neurons that spike.
Do: ```py $ pip install hnn_core[gui] ``` on M2 mac (maybe with zsh?). Then try: ```py from hnn_core.network_builder import load_custom_mechanisms load_custom_mechanisms() ```
if we install `hnn_core` without `gui` option, you still have the `hnn-gui` command added and then it throws the error: ```sh Traceback (most recent call last): File "/Users/mainak/anaconda3/envs/hnn/bin/hnn-gui", line 5,...