Caglar Cakan

Results 11 issues of Caglar Cakan

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

```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

TODO: `Exploration.useRandomICs` not implemented yet

enhancement

WIP, maybe netcdf?

discussion
feature request
enhancement

...

feature request

There should be a way to list all available models. Similar to how TVB handles it would be nice: http://docs.thevirtualbrain.com/_modules/tvb/simulator/models.html

documentation
enhancement

`tqdm` offers a very nice wrapper around for loops for easy progress bars. This could be implemented easily in `Model.integrate_chunkwise()`.

model
feature request