diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 00000000..40510102 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,71 @@ +defaults: &defaults + working_directory: ~/markovmodel/PyEMMA + docker: + - image: continuumio/miniconda3 + +inst_conda_bld: &inst_conda_bld + - run: conda config --add channels conda-forge + - run: conda config --set always_yes true + - run: conda config --set quiet true + - run: conda install conda-build + +version: 2 + +jobs: + build: + <<: *defaults + parallelism: 1 + steps: + - checkout + - run: git fetch --unshallow || true + - run: apt-get update + - run: sh reduced_cell_install.sh + #- run: apt-get install -y gcc + #- run: apt-get install -y libx11-6 python-dev git build-essential + #- run: apt-get install -y autoconf automake gcc g++ make gfortran + #- run: apt-get install -y python-tables + #- run: apt-get install -y libhdf5-serial-dev + + #- run: conda config --add channels conda-forge + #- run: conda config --set always_yes true + #- run: conda config --set quiet true + #- run: conda install conda-build + #- run: conda install scipy; + #- run: conda install numpy; + #- run: conda install numba; + #- run: conda install dask; + - run: pip install tables + - run: pip install pip --upgrade; pip install -r requirements.txt; + - run: pip install -e .[extra] + - run: pip install jithub==0.1.0 + - run: pip install git+https://github.com/russelljjarvis/jit_hub.git@neuronunit + - run: git clone -b neuronunit https://github.com/russelljjarvis/jit_hub.git + - run: cd jit_hub; pip install -e .; cd ..; + - run: git clone -b optimization https://github.com/russelljjarvis/neuronunit + - run: cd neuronunit; pip install -e .; cd ..; + - run: pip install neuronunitopt==0.19 + - run: git clone https://github.com/russelljjarvis/eFEL + - run: cd eFEL; pip install -e .; cd ..; + - run: pip install cython + - run: pip install streamlit; + - run: pip install seaborn; + - run: pip install sklearn + - run: pip install allensdk==0.16.3 + - run: pip install frozendict + - run: pip install nose + - run: pip install pynwb + #- run: rm -rf /opt/conda/lib/python3.8/site-packages/sciunit + - run: git clone -b dev https://github.com/russelljjarvis/sciunit.git + - run: cd sciunit; pip install -e .; cd ..; + - run: cd bluepyopt/tests; nosetests test_numba_models.py + - run: cd bluepyopt/tests; nosetests test_evaluators.py + - run: cd bluepyopt/tests; nosetests test_rheobase_model.py + - run: pip install --no-binary=h5py h5py + - run: pip install allensdk==0.16.3 + - run: pip install tox && tox + - run: cd bluepyopt/tests; nosetests test_adexp_opt.py + - run: cd bluepyopt/tests; nosetests test_scores_unit.py + #- run: cd bluepyopt/tests; nosetests test_izhi_opt.py + + # causes time out + #- run: cd bluepyopt/tests; python izhi_opt.py diff --git a/.circleci/config.yml.orig b/.circleci/config.yml.orig new file mode 100644 index 00000000..4a79f456 --- /dev/null +++ b/.circleci/config.yml.orig @@ -0,0 +1,69 @@ +defaults: &defaults + working_directory: ~/markovmodel/PyEMMA + docker: + - image: continuumio/miniconda3 + +inst_conda_bld: &inst_conda_bld + - run: conda config --add channels conda-forge + - run: conda config --set always_yes true + - run: conda config --set quiet true + - run: conda install conda-build + +version: 2 + +jobs: + build: + <<: *defaults + parallelism: 1 + steps: + - checkout + - run: git fetch --unshallow || true + - run: apt-get install -y cpp gcc + - run: apt-get install -y libx11-6 python-dev git build-essential + - run: apt-get install -y autoconf automake gcc g++ make gfortran + - run: apt-get install -y python-tables + - run: apt-get install -y libhdf5-serial-dev + + - run: conda config --add channels conda-forge + - run: conda config --set always_yes true + - run: conda config --set quiet true + - run: conda install conda-build + - run: conda install scipy; + - run: conda install numpy; + - run: conda install numba; + - run: conda install dask; + - run: pip install tables + - run: pip install pip --upgrade; pip install -r requirements.txt; + - run: pip install -e . + - run: git clone -b neuronunit https://github.com/russelljjarvis/jit_hub.git + + - run: cd jit_hub; pip install -e .; cd ..; + - run: git clone -b optimization https://github.com/russelljjarvis/neuronunit +<<<<<<< HEAD + - run: cd neuronunit; pip install -e .; cd ..; + + #- run: pip install ipfx + - run: pip install efel + #- run: git clone https://github.com/russelljjarvis/eFEL + #- run: cd eFEL; python + +======= + - run: cd jit_hub; pip install -e .; cd ..; + - run: pip install efel +>>>>>>> 938c5c225d1efef3357ef78b0071a29ea77a0f3c + - run: pip install cython + - run: pip install streamlit; + - run: pip install seaborn; + - run: pip install sklearn + - run: pip install allensdk==0.16.3 + - run: pip install frozendict + - run: pip install nose + - run: rm -rf /opt/conda/lib/python3.8/site-packages/sciunit + - run: git clone -b dev https://github.com/russelljjarvis/sciunit.git + - run: cd sciunit; pip install -e .; cd ..; + - run: cd bluepyopt/tests; python rheobase_dtc_test.py + - run: cd bluepyopt/tests; python adexp_opt.py + - run: cd bluepyopt/tests; python test_evaluators.py + + # causes time out + #- run: cd bluepyopt/tests; python izhi_opt.py diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2d2f6fcc..3eb98f47 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,7 +6,7 @@ on: - cron: '0 3 * * SUN' push: branches: - - master + - neuronunit_reduced_cells tags: - '[0-9]+.[0-9]+.[0-9]+' pull_request: @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [2.7, 3.6, 3.7, 3.8, 3.9] + python-version: [3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 00000000..77ea544e --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,16 @@ +# .readthedocs.yml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +sphinx: + configuration: docs/source/conf.py + fail_on_warning: true + +python: + install: + - method: pip + path: . + - requirements: requirements_docs.txt diff --git a/README.rst b/README.rst new file mode 100644 index 00000000..99bf65a2 --- /dev/null +++ b/README.rst @@ -0,0 +1,273 @@ +<<<<<<< HEAD:README.rst +|banner| + +BluePyOpt +========= + +.. raw:: html + +
Latest Release | +
+
+ |
+
Documentation | +
+
+ |
+
License | +
+
+ |
+
Build Status | +
+
+ |
+
Coverage | +
+
+ |
+
Gitter | +
+
+ |
+
Latest Release | +
+
+ |
+
Documentation | +
+
+ |
+
License | +
+
+ |
+
Build Status | +
+
+ |
+
Coverage | +
+
+ |
+
Gitter | +
+
+ |
+
\n", + " | C | \n", + "k | \n", + "vr | \n", + "vt | \n", + "vPeak | \n", + "a | \n", + "b | \n", + "c | \n", + "d | \n", + "celltype | \n", + "
---|---|---|---|---|---|---|---|---|---|---|
0 | \n", + "135.04 | \n", + "1.48 | \n", + "-71.84 | \n", + "-44.93 | \n", + "40.25 | \n", + "0.01 | \n", + "14.73 | \n", + "-59.69 | \n", + "-12.19 | \n", + "7 | \n", + "
\n", + " | EFEL_feature_NU_test_Name | \n", + "prediction | \n", + "observation | \n", + "neuronunit_score | \n", + "
---|---|---|---|---|
0 | \n", + "ISI_log_slope | \n", + "0.485704 | \n", + "0.486931 | \n", + "Relative Difference = 0.00 | \n", + "
1 | \n", + "mean_frequency | \n", + "10.086294 | \n", + "10.087424 | \n", + "Relative Difference = 0.00 | \n", + "
2 | \n", + "adaptation_index2 | \n", + "0.091943 | \n", + "0.086453 | \n", + "Relative Difference = 0.01 | \n", + "
3 | \n", + "ISI_CV | \n", + "0.476055 | \n", + "0.389111 | \n", + "Relative Difference = 0.09 | \n", + "
4 | \n", + "Spikecount | \n", + "9.000000 | \n", + "9.000000 | \n", + "Relative Difference = 0.00 | \n", + "
5 | \n", + "all_ISI_values | \n", + "102.212500 | \n", + "102.187500 | \n", + "Relative Difference = 0.02 | \n", + "
6 | \n", + "ISI_values | \n", + "108.400000 | \n", + "108.385714 | \n", + "Relative Difference = 0.01 | \n", + "
7 | \n", + "time_to_first_spike | \n", + "74.600000 | \n", + "74.700000 | \n", + "Relative Difference = 0.10 | \n", + "
8 | \n", + "time_to_last_spike | \n", + "892.300000 | \n", + "892.200000 | \n", + "Relative Difference = 0.10 | \n", + "
9 | \n", + "time_to_second_spike | \n", + "133.500000 | \n", + "133.500000 | \n", + "Relative Difference = 0.00 | \n", + "
10 | \n", + "spike_0 | \n", + "1.074385 | \n", + "1.074250 | \n", + "Relative Difference = 0.00 | \n", + "
11 | \n", + "spike_1 | \n", + "1.133280 | \n", + "1.133000 | \n", + "Relative Difference = 0.00 | \n", + "
12 | \n", + "spike_2 | \n", + "1.203080 | \n", + "1.198500 | \n", + "Relative Difference = 0.00 | \n", + "
13 | \n", + "spike_3 | \n", + "1.274420 | \n", + "1.273250 | \n", + "Relative Difference = 0.00 | \n", + "
14 | \n", + "spike_4 | \n", + "1.350750 | \n", + "1.358000 | \n", + "Relative Difference = 0.01 | \n", + "
15 | \n", + "spike_5 | \n", + "1.440345 | \n", + "1.453500 | \n", + "Relative Difference = 0.01 | \n", + "
16 | \n", + "spike_6 | \n", + "1.541740 | \n", + "1.566000 | \n", + "Relative Difference = 0.02 | \n", + "
17 | \n", + "spike_7 | \n", + "1.679645 | \n", + "1.706250 | \n", + "Relative Difference = 0.03 | \n", + "
18 | \n", + "spike_8 | \n", + "1.891995 | \n", + "1.891750 | \n", + "Relative Difference = 0.00 | \n", + "
\n", + " | C | \n", + "k | \n", + "vr | \n", + "vt | \n", + "vPeak | \n", + "a | \n", + "b | \n", + "c | \n", + "d | \n", + "celltype | \n", + "
---|---|---|---|---|---|---|---|---|---|---|
0 | \n", + "110.0 | \n", + "0.92 | \n", + "-65.0 | \n", + "-45.0 | \n", + "25.0 | \n", + "0.11 | \n", + "6.5 | \n", + "-50.0 | \n", + "47.5 | \n", + "5 | \n", + "
\n", + " | cm | \n", + "v_spike | \n", + "v_reset | \n", + "v_rest | \n", + "tau_m | \n", + "a | \n", + "b | \n", + "delta_T | \n", + "tau_w | \n", + "v_thresh | \n", + "spike_delta | \n", + "
---|---|---|---|---|---|---|---|---|---|---|---|
0 | \n", + "660.38 | \n", + "-30.67 | \n", + "-60.92 | \n", + "-78.42 | \n", + "31.22 | \n", + "17.17 | \n", + "2.45 | \n", + "6.29 | \n", + "321.08 | \n", + "-33.47 | \n", + "62.12 | \n", + "
\n", + " | EFEL_feature_NU_test_Name | \n", + "prediction | \n", + "observation | \n", + "neuronunit_score | \n", + "
---|---|---|---|---|
0 | \n", + "mean_frequency | \n", + "10.086294 | \n", + "10.129432 | \n", + "Relative Difference = 0.04 | \n", + "
1 | \n", + "ISI_log_slope | \n", + "0.485704 | \n", + "0.463778 | \n", + "Relative Difference = 0.02 | \n", + "
2 | \n", + "adaptation_index2 | \n", + "0.091943 | \n", + "0.093395 | \n", + "Relative Difference = 0.00 | \n", + "
3 | \n", + "ISI_CV | \n", + "0.476055 | \n", + "0.470615 | \n", + "Relative Difference = 0.01 | \n", + "
4 | \n", + "Spikecount | \n", + "9.000000 | \n", + "9.000000 | \n", + "Relative Difference = 0.00 | \n", + "
5 | \n", + "all_ISI_values | \n", + "102.212500 | \n", + "101.650000 | \n", + "Relative Difference = 0.56 | \n", + "
6 | \n", + "ISI_values | \n", + "108.400000 | \n", + "106.985714 | \n", + "Relative Difference = 1.41 | \n", + "
7 | \n", + "time_to_first_spike | \n", + "74.600000 | \n", + "75.300000 | \n", + "Relative Difference = 0.70 | \n", + "
8 | \n", + "time_to_last_spike | \n", + "892.300000 | \n", + "888.500000 | \n", + "Relative Difference = 3.80 | \n", + "
9 | \n", + "time_to_second_spike | \n", + "133.500000 | \n", + "139.600000 | \n", + "Relative Difference = 6.10 | \n", + "
10 | \n", + "AHP1_depth_from_peak | \n", + "88.656250 | \n", + "122.950624 | \n", + "Relative Difference = 34.29 | \n", + "
11 | \n", + "AHP2_depth_from_peak | \n", + "89.250002 | \n", + "122.952742 | \n", + "Relative Difference = 33.70 | \n", + "
12 | \n", + "AHP_depth | \n", + "24.579199 | \n", + "17.603728 | \n", + "Relative Difference = 6.98 | \n", + "
13 | \n", + "AHP_depth_abs | \n", + "-55.208334 | \n", + "-60.838927 | \n", + "Relative Difference = 5.63 | \n", + "
14 | \n", + "AHP_depth_abs_slow | \n", + "-56.625001 | \n", + "-57.028899 | \n", + "Relative Difference = 0.40 | \n", + "
15 | \n", + "AHP_depth_diff | \n", + "-0.101563 | \n", + "-0.002945 | \n", + "Relative Difference = 0.10 | \n", + "
16 | \n", + "AHP_depth_from_peak | \n", + "88.236113 | \n", + "122.960586 | \n", + "Relative Difference = 34.72 | \n", + "
17 | \n", + "AHP_slow_time | \n", + "0.186597 | \n", + "0.054344 | \n", + "Relative Difference = 0.13 | \n", + "
18 | \n", + "AHP_time_from_peak | \n", + "10.955556 | \n", + "0.100000 | \n", + "Relative Difference = 10.86 | \n", + "
19 | \n", + "spike_0 | \n", + "1.074385 | \n", + "1.075300 | \n", + "Relative Difference = 0.00 | \n", + "
20 | \n", + "spike_1 | \n", + "1.133280 | \n", + "1.139600 | \n", + "Relative Difference = 0.01 | \n", + "
21 | \n", + "spike_2 | \n", + "1.203080 | \n", + "1.208100 | \n", + "Relative Difference = 0.01 | \n", + "
22 | \n", + "spike_3 | \n", + "1.274420 | \n", + "1.281700 | \n", + "Relative Difference = 0.01 | \n", + "
23 | \n", + "spike_4 | \n", + "1.350750 | \n", + "1.361800 | \n", + "Relative Difference = 0.01 | \n", + "
24 | \n", + "spike_5 | \n", + "1.440345 | \n", + "1.450600 | \n", + "Relative Difference = 0.01 | \n", + "
25 | \n", + "spike_6 | \n", + "1.541740 | \n", + "1.552000 | \n", + "Relative Difference = 0.01 | \n", + "
26 | \n", + "spike_7 | \n", + "1.679645 | \n", + "1.675400 | \n", + "Relative Difference = 0.00 | \n", + "
27 | \n", + "spike_8 | \n", + "1.891995 | \n", + "1.888500 | \n", + "Relative Difference = 0.00 | \n", + "
\n", + " | cm | \n", + "v_spike | \n", + "v_reset | \n", + "v_rest | \n", + "tau_m | \n", + "a | \n", + "b | \n", + "delta_T | \n", + "tau_w | \n", + "v_thresh | \n", + "spike_delta | \n", + "
---|---|---|---|---|---|---|---|---|---|---|---|
0 | \n", + "660.38 | \n", + "-30.67 | \n", + "-60.92 | \n", + "-78.42 | \n", + "31.22 | \n", + "17.17 | \n", + "2.45 | \n", + "6.29 | \n", + "321.08 | \n", + "-33.47 | \n", + "62.12 | \n", + "
\n", + " | TimeConstantTest | \n", + "name | \n", + "RestingPotentialTest | \n", + "InputResistanceTest | \n", + "RheobaseTest | \n", + "
---|---|---|---|---|---|
623960880 | \n", + "23.8 ms | \n", + "623960880 | \n", + "-65.1 mV | \n", + "241.0 megaohm | \n", + "70.0 pA | \n", + "
623893177 | \n", + "27.8 ms | \n", + "623893177 | \n", + "-77.0 mV | \n", + "136.0 megaohm | \n", + "190.0 pA | \n", + "
471819401 | \n", + "13.8 ms | \n", + "471819401 | \n", + "-77.5 mV | \n", + "132.0 megaohm | \n", + "190.0 pA | \n", + "
482493761 | \n", + "24.4 ms | \n", + "482493761 | \n", + "-71.6 mV | \n", + "132.0 megaohm | \n", + "70.0 pA | \n", + "
\n", + " | TimeConstantTest | \n", + "name | \n", + "RestingPotentialTest | \n", + "InputResistanceTest | \n", + "RheobaseTest | \n", + "
---|---|---|---|---|---|
623960880 | \n", + "23.8 ms | \n", + "623960880 | \n", + "-65.1 mV | \n", + "241.0 megaohm | \n", + "70.0 pA | \n", + "
623893177 | \n", + "27.8 ms | \n", + "623893177 | \n", + "-77.0 mV | \n", + "136.0 megaohm | \n", + "190.0 pA | \n", + "
471819401 | \n", + "13.8 ms | \n", + "471819401 | \n", + "-77.5 mV | \n", + "132.0 megaohm | \n", + "190.0 pA | \n", + "
482493761 | \n", + "24.4 ms | \n", + "482493761 | \n", + "-71.6 mV | \n", + "132.0 megaohm | \n", + "70.0 pA | \n", + "
\n", + " | C | \n", + "k | \n", + "vr | \n", + "vt | \n", + "vPeak | \n", + "a | \n", + "b | \n", + "c | \n", + "d | \n", + "celltype | \n", + "
---|---|---|---|---|---|---|---|---|---|---|
0 | \n", + "129.21 | \n", + "1.47 | \n", + "-68.07 | \n", + "-45.04 | \n", + "4.98 | \n", + "0.01 | \n", + "0.47 | \n", + "-57.78 | \n", + "-10.96 | \n", + "7 | \n", + "
\n", + " | EFEL_feature_NU_test_Name | \n", + "prediction | \n", + "observation | \n", + "neuronunit_score | \n", + "
---|---|---|---|---|
0 | \n", + "ISI_log_slope | \n", + "0.485704 | \n", + "0.485422 | \n", + "Relative Difference = 0.00 | \n", + "
1 | \n", + "mean_frequency | \n", + "10.086294 | \n", + "10.084034 | \n", + "Relative Difference = 0.00 | \n", + "
2 | \n", + "adaptation_index2 | \n", + "0.091943 | \n", + "0.088318 | \n", + "Relative Difference = 0.00 | \n", + "
3 | \n", + "ISI_CV | \n", + "0.476055 | \n", + "0.397611 | \n", + "Relative Difference = 0.08 | \n", + "
4 | \n", + "Spikecount | \n", + "9.000000 | \n", + "9.000000 | \n", + "Relative Difference = 0.00 | \n", + "
5 | \n", + "all_ISI_values | \n", + "102.212500 | \n", + "102.250000 | \n", + "Relative Difference = 0.04 | \n", + "
6 | \n", + "ISI_values | \n", + "108.400000 | \n", + "108.471429 | \n", + "Relative Difference = 0.07 | \n", + "
7 | \n", + "time_to_first_spike | \n", + "74.600000 | \n", + "74.500000 | \n", + "Relative Difference = 0.10 | \n", + "
8 | \n", + "time_to_last_spike | \n", + "892.300000 | \n", + "892.500000 | \n", + "Relative Difference = 0.20 | \n", + "
9 | \n", + "time_to_second_spike | \n", + "133.500000 | \n", + "133.200000 | \n", + "Relative Difference = 0.30 | \n", + "
10 | \n", + "spike_0 | \n", + "1.074385 | \n", + "1.074500 | \n", + "Relative Difference = 0.00 | \n", + "
11 | \n", + "spike_1 | \n", + "1.133280 | \n", + "1.133250 | \n", + "Relative Difference = 0.00 | \n", + "
12 | \n", + "spike_2 | \n", + "1.203080 | \n", + "1.199000 | \n", + "Relative Difference = 0.00 | \n", + "
13 | \n", + "spike_3 | \n", + "1.274420 | \n", + "1.273250 | \n", + "Relative Difference = 0.00 | \n", + "
14 | \n", + "spike_4 | \n", + "1.350750 | \n", + "1.358250 | \n", + "Relative Difference = 0.01 | \n", + "
15 | \n", + "spike_5 | \n", + "1.440345 | \n", + "1.455000 | \n", + "Relative Difference = 0.01 | \n", + "
16 | \n", + "spike_6 | \n", + "1.541740 | \n", + "1.567000 | \n", + "Relative Difference = 0.03 | \n", + "
17 | \n", + "spike_7 | \n", + "1.679645 | \n", + "1.701750 | \n", + "Relative Difference = 0.02 | \n", + "
18 | \n", + "spike_8 | \n", + "1.891995 | \n", + "1.892500 | \n", + "Relative Difference = 0.00 | \n", + "
\n", + " | EFEL_feature_NU_test_Name | \n", + "prediction | \n", + "observation | \n", + "neuronunit_score | \n", + "
---|---|---|---|---|
0 | \n", + "ISI_log_slope | \n", + "0.485704 | \n", + "0.504552 | \n", + "Relative Difference = 0.02 | \n", + "
1 | \n", + "mean_frequency | \n", + "10.086294 | \n", + "10.172940 | \n", + "Relative Difference = 0.09 | \n", + "
2 | \n", + "adaptation_index2 | \n", + "0.091943 | \n", + "0.093495 | \n", + "Relative Difference = 0.00 | \n", + "
3 | \n", + "ISI_CV | \n", + "0.476055 | \n", + "0.443410 | \n", + "Relative Difference = 0.03 | \n", + "
4 | \n", + "Spikecount | \n", + "9.000000 | \n", + "9.000000 | \n", + "Relative Difference = 0.00 | \n", + "
5 | \n", + "all_ISI_values | \n", + "102.212500 | \n", + "101.337500 | \n", + "Relative Difference = 0.87 | \n", + "
6 | \n", + "ISI_values | \n", + "108.400000 | \n", + "107.314286 | \n", + "Relative Difference = 1.09 | \n", + "
7 | \n", + "time_to_first_spike | \n", + "74.600000 | \n", + "74.000000 | \n", + "Relative Difference = 0.60 | \n", + "
8 | \n", + "time_to_last_spike | \n", + "892.300000 | \n", + "884.700000 | \n", + "Relative Difference = 7.60 | \n", + "
9 | \n", + "time_to_second_spike | \n", + "133.500000 | \n", + "133.500000 | \n", + "Relative Difference = 0.00 | \n", + "
10 | \n", + "peak_voltage | \n", + "33.027779 | \n", + "36.848803 | \n", + "Relative Difference = 3.82 | \n", + "
11 | \n", + "AHP_depth | \n", + "24.579199 | \n", + "24.499313 | \n", + "Relative Difference = 0.08 | \n", + "
12 | \n", + "AHP_depth_abs | \n", + "-55.208334 | \n", + "-54.865782 | \n", + "Relative Difference = 0.34 | \n", + "
13 | \n", + "spike_0 | \n", + "1.074385 | \n", + "1.074000 | \n", + "Relative Difference = 0.00 | \n", + "
14 | \n", + "spike_1 | \n", + "1.133280 | \n", + "1.133500 | \n", + "Relative Difference = 0.00 | \n", + "
15 | \n", + "spike_2 | \n", + "1.203080 | \n", + "1.198500 | \n", + "Relative Difference = 0.00 | \n", + "
16 | \n", + "spike_3 | \n", + "1.274420 | \n", + "1.270000 | \n", + "Relative Difference = 0.00 | \n", + "
17 | \n", + "spike_4 | \n", + "1.350750 | \n", + "1.350000 | \n", + "Relative Difference = 0.00 | \n", + "
18 | \n", + "spike_5 | \n", + "1.440345 | \n", + "1.441500 | \n", + "Relative Difference = 0.00 | \n", + "
19 | \n", + "spike_6 | \n", + "1.541740 | \n", + "1.549250 | \n", + "Relative Difference = 0.01 | \n", + "
20 | \n", + "spike_7 | \n", + "1.679645 | \n", + "1.683750 | \n", + "Relative Difference = 0.00 | \n", + "
21 | \n", + "spike_8 | \n", + "1.891995 | \n", + "1.884750 | \n", + "Relative Difference = 0.01 | \n", + "
\n", + " | cm | \n", + "v_spike | \n", + "v_reset | \n", + "v_rest | \n", + "tau_m | \n", + "a | \n", + "b | \n", + "delta_T | \n", + "tau_w | \n", + "v_thresh | \n", + "spike_delta | \n", + "
---|---|---|---|---|---|---|---|---|---|---|---|
0 | \n", + "911.98 | \n", + "-34.31 | \n", + "-55.09 | \n", + "-79.35 | \n", + "42.58 | \n", + "10.61 | \n", + "19.9 | \n", + "6.84 | \n", + "352.52 | \n", + "-22.6 | \n", + "41.15 | \n", + "