-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add pre-commit-config file * Black reformatting with line-length 120 --------- Co-authored-by: Heberto Mayorquin <[email protected]>
- Loading branch information
1 parent
1c78add
commit 7c6d356
Showing
456 changed files
with
19,328 additions
and
15,806 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,43 @@ | ||
from .comparisontools import (count_matching_events, compute_agreement_score, count_match_spikes, | ||
make_agreement_scores, make_possible_match, make_best_match, make_hungarian_match, | ||
do_score_labels, compare_spike_trains, do_confusion_matrix, do_count_score, | ||
compute_performance, | ||
do_count_event, make_match_count_matrix) | ||
from .paircomparisons import (compare_two_sorters, SymmetricSortingComparison, | ||
compare_sorter_to_ground_truth, GroundTruthComparison, | ||
compare_templates, TemplateComparison) | ||
from .multicomparisons import (compare_multiple_sorters, MultiSortingComparison, | ||
compare_multiple_templates, MultiTemplateComparison) | ||
from .comparisontools import ( | ||
count_matching_events, | ||
compute_agreement_score, | ||
count_match_spikes, | ||
make_agreement_scores, | ||
make_possible_match, | ||
make_best_match, | ||
make_hungarian_match, | ||
do_score_labels, | ||
compare_spike_trains, | ||
do_confusion_matrix, | ||
do_count_score, | ||
compute_performance, | ||
do_count_event, | ||
make_match_count_matrix, | ||
) | ||
from .paircomparisons import ( | ||
compare_two_sorters, | ||
SymmetricSortingComparison, | ||
compare_sorter_to_ground_truth, | ||
GroundTruthComparison, | ||
compare_templates, | ||
TemplateComparison, | ||
) | ||
from .multicomparisons import ( | ||
compare_multiple_sorters, | ||
MultiSortingComparison, | ||
compare_multiple_templates, | ||
MultiTemplateComparison, | ||
) | ||
from .collisioncomparison import CollisionGTComparison | ||
from .correlogramcomparison import CorrelogramGTComparison | ||
from .groundtruthstudy import GroundTruthStudy | ||
from .collisionstudy import CollisionGTStudy | ||
from .correlogramstudy import CorrelogramGTStudy | ||
from .studytools import aggregate_performances_table | ||
from .hybrid import (HybridSpikesRecording, HybridUnitsRecording, generate_injected_sorting, | ||
create_hybrid_units_recording, create_hybrid_spikes_recording) | ||
from .hybrid import ( | ||
HybridSpikesRecording, | ||
HybridUnitsRecording, | ||
generate_injected_sorting, | ||
create_hybrid_units_recording, | ||
create_hybrid_spikes_recording, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.