Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes in acoustic_indices.py #68

Merged
merged 19 commits into from
Aug 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
a527e80
refactor: started to change some functions in acoustic_indices.py by …
SimLrt32 Aug 1, 2023
54862a3
fix: added the package scikit-maad in the packages needed in poetry, …
SimLrt32 Aug 1, 2023
3d80875
fix: removed numba decorator which was not compatible with the functi…
SimLrt32 Aug 2, 2023
ddcb297
refactor: changed one more function in acoustic_indices using maad
SimLrt32 Aug 2, 2023
36ac932
refactor: changed the last functions in acoustic_indices using maad
SimLrt32 Aug 2, 2023
989d68f
fix: changed the type of the arguments anthrophony and biophony in co…
SimLrt32 Aug 2, 2023
53c24c4
fix: changed sampling frequency in the arguments of the function comp…
SimLrt32 Aug 2, 2023
f43a165
test: added a new file with tests for the functions from acoustic_ind…
SimLrt32 Aug 2, 2023
8463946
refactor: changed the function compute_zcr_avg, now it's using comput…
SimLrt32 Aug 2, 2023
91529a9
test: added a test for the function compute_zcr_avg
SimLrt32 Aug 2, 2023
3de1bd3
doc: added in the documentation that the spectrograms have to be in l…
SimLrt32 Aug 3, 2023
619a0fb
doc: corrected types of paramaters in the doc of compute_ndsi
SimLrt32 Aug 3, 2023
1d09667
fix: changed some parameters in the methods from the Signal class in …
SimLrt32 Aug 3, 2023
e955283
fix: fixed the value returned in the function compute_ndsi in acousti…
SimLrt32 Aug 3, 2023
746df2d
test: added assertions in the tests to check if the values are consis…
SimLrt32 Aug 3, 2023
50da3c7
fix: changed the lower limit value of band_list from None to 0 in the…
SimLrt32 Aug 4, 2023
e34f696
fix: added default value for the nfft parameter in the method aci fro…
SimLrt32 Aug 4, 2023
4217d89
test: added a new test for the methods which compute acoustic indices…
SimLrt32 Aug 4, 2023
ffd013a
test: added some assertions in test_features to check if the values a…
SimLrt32 Aug 4, 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
199 changes: 198 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pypam/acoustic_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ def _apply_multiple(self, method_list, binsize=None, band_list=None, bin_overlap

# Bands selected to study
if band_list is None:
band_list = [[None, self.fs / 2]]
band_list = [[0, self.fs / 2]]

# Sort bands to diminish downsampling efforts!
sorted_bands = []
Expand Down
Loading