Conversation
This fix changes the way signal differentiation has been done until now
Included pseudocode and a more specific description of the algorithm. Update dis/advantages and references
Due to updates made to the algo, testing the type behaviour of the variable factor can be skipped since the cast to float is done inside the algo function
Fix TBR encoding
fix timestep error to avoid generating spikes at t=0, update threshold types and handle threshold properly
Refactor code and docs for latency encoding algorithms
Refactor code and docs for Global Referenced algorithms
… method documentation
Refactor FilterBank
… enhance filter section
…d `encoders` BREAKING CHANGE: import paths have changed. - `spikify.filtering` → `spikify.filters` - `spikify.encoding` → `spikify.encoders`
Tecnical description for algorithms and filters
refactor!: rename `filtering` and `encoding` packages to `filters` an…
Update changelog
Bump version: 0.3.0 → 1.0.0
Codecov Report❌ Patch coverage is @@ Coverage Diff @@
## main #44 +/- ##
==========================================
+ Coverage 97.75% 99.76% +2.00%
==========================================
Files 21 21
Lines 401 418 +17
Branches 112 103 -9
==========================================
+ Hits 392 417 +25
+ Misses 4 0 -4
+ Partials 5 1 -4
Flags with carried forward coverage won't be shown. Click here to find out more.
🚀 New features to boost your workflow:
|
| # Adjust levels to avoid out-of-range values | ||
| levels = np.clip(levels, 0, 2**num_bits - 1) | ||
|
|
||
| spikes = np.zeros((T, F), dtype=np.uint8) |
| spike = np.zeros_like(signal, dtype=np.int8) | ||
|
|
||
| # base signal initialized at the start of the signal | ||
| base = signal[0, :] |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.