neurolib icon indicating copy to clipboard operation
neurolib copied to clipboard

Easy whole-brain modeling for computational neuroscientists 🧠💻👩🏿‍🔬

Results 29 neurolib issues
Sort by recently updated
recently updated
newest added

Right now, we have a list of all models to test and have a function for each of them. This is kind of ugly. Therefore, I think we should have...

testing

I got a couple of requests about the speed of MultiModel. It seems that for a larger network it is painfully slow. I suspect a couple of things: - `jitcdde`...

enhancement

I recently worked out the mean-field approximation of the spiking model of the hippocampus, more-or-less successfully. This process can be automated to a large extent. The idea is to allow...

dev-talk
enhancement

```python from neurolib.utils.parameterSpace import ParameterSpace shape = 4 pars = [np.random.rand(shape, shape) for i in range(10)] parameters = ParameterSpace({"p": pars}) parameters.getRandom() ``` Returns ``` --------------------------------------------------------------------------- ValueError Traceback (most recent call...

bug

```python from neurolib.utils.parameterSpace import ParameterSpace shape = 2 n_pars = 2 pars = [np.random.rand(shape, shape) for i in range(n_pars)] parameters = ParameterSpace({"p": pars}) ``` Returns ``` --------------------------------------------------------------------------- ValueError Traceback (most...

bug

Need to do a proper optimization of parameters so the fit value is good. Right now it's... suboptimal. File: example-3-meg-functional-connectivity.ipynb ![image](https://user-images.githubusercontent.com/7763212/124769788-0df21c00-df3a-11eb-81cc-84c7d6f2cf99.png)

examples

by calling ``` for i, val in enumerate(inputs): if i==0: wc.run() else: wc.run(continue_run=True) ``` the following error is returned as i=2: ``` Traceback (most recent call last): File "/mnt/antares_raid/home/ronjastroms/anaconda3/envs/trial/lib/python3.7/multiprocessing/process.py", line...

bug
help wanted

TODO: `Exploration.useRandomICs` not implemented yet

enhancement

WIP, maybe netcdf?

discussion
feature request
enhancement