Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

Impedance ("Z score") feature is added #165

Merged
merged 37 commits into from
Oct 5, 2023
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
e845b3f
Impedence (Z score) feaure is added
mariarv Mar 24, 2020
e9b6499
update of pyfeatures.py
mariarv Apr 28, 2020
2a402bd
update of pyfeatures.py
mariarv Apr 28, 2020
560054a
undo last change on _version.py
anilbey Apr 30, 2020
cf4967f
Merge pull request #2 from anilbey/impedance-feature
mariarv Apr 30, 2020
24a149c
test_getFeatureNames check if sets of features are equal
anilbey May 1, 2020
05d0466
remove duplicated method
anilbey May 1, 2020
d0b1b91
added impedance to featurenames.json
anilbey May 1, 2020
37a7208
exclude impedance from allfeature_values tests
anilbey May 1, 2020
c093770
style fix
anilbey May 1, 2020
e7e04f9
added impedance test
anilbey May 1, 2020
9d865b5
Merge branch 'master' into maria_m
anilbey May 4, 2020
85b059c
converted the timetrace to ms
anilbey May 4, 2020
4c12e13
added empty lines for codestyle consistency
anilbey May 4, 2020
d359809
refactor: rename variables
anilbey May 5, 2020
0d397ed
refactor: reusing current & voltage features
anilbey May 5, 2020
d8c026f
use the voltage_base cpp feature
anilbey May 5, 2020
6c40b92
rename: current_hold->current_base for consistency
anilbey May 5, 2020
c3297c5
remove unused variable
anilbey May 5, 2020
3ed5f29
remove unnecessary brackets
anilbey May 5, 2020
bc6dc26
remove extra brackets
anilbey May 5, 2020
ba23cef
Update of impedacne
mariarv May 14, 2020
ade39ff
removed .so and checkpoint files
anilbey May 15, 2020
4117769
featurenames remove duplicates & sort
anilbey May 15, 2020
45f85fd
merge master into impedance branch to resolve conflicts
anilbey May 15, 2020
9a798c6
Merge branch 'master' into master
wvangeit May 28, 2020
ee1be7f
merge master into impedance
anilbey Jun 4, 2020
4a87552
Merge branch 'master' into master
wvangeit Dec 7, 2020
2aa2d0f
Merge branch 'master' into master
wvangeit May 12, 2022
d7c578f
Merge branch 'master' of https://github.com/BlueBrain/eFEL into maria…
Sep 28, 2023
e46977e
use interp_step seeting in fftfreq
Sep 28, 2023
3317f63
add impedance_max_freq setting
Oct 2, 2023
5253ed5
add docs for impedance
Oct 2, 2023
bcb60c3
test fix
Oct 4, 2023
7321c4a
Merge branch 'master' into master
AurelienJaquier Oct 4, 2023
689aefe
improve impedance feature
Oct 5, 2023
cdaec47
Merge branch 'master' of https://github.com/mariarv/eFEL into maria-m…
Oct 5, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion efel/tests/test_allfeatures.py
Original file line number Diff line number Diff line change
@@ -119,7 +119,7 @@ def get_allfeature_values():
for feature_name in db_featurenames:
soma_featurenames.remove(feature_name)

soma_featurenames = [x for x in soma_featurenames if x != 'current']
soma_featurenames = [x for x in soma_featurenames if x not in ['current', 'impedance']]

import warnings
with warnings.catch_warnings():