-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set up the Australiasian Pipit recognizer
Issue #321 THis recognizer now works on a single example file used for unit test purposes. Has not been tested on the noise dataset.
- Loading branch information
Showing
5 changed files
with
475 additions
and
1 deletion.
There are no files selected for viewing
73 changes: 73 additions & 0 deletions
73
src/AnalysisConfigFiles/RecognizerConfigFiles/Towsey.AnthusNovaeseelandiae.yml
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 |
---|---|---|
@@ -0,0 +1,73 @@ | ||
--- | ||
|
||
# Australasian Pipit = Towsey.Anthus novaeseelandiae | ||
# Resample rate must be 2 X the desired Nyquist | ||
ResampleRate: 16000 | ||
# SegmentDuration: units=seconds; | ||
SegmentDuration: 60 | ||
# SegmentOverlap: units=seconds; | ||
SegmentOverlap: 0 | ||
|
||
# Each of these profiles will be analyzed | ||
# This profile is required for the species-specific recogniser and must have the current name. | ||
Profiles: | ||
PipitSyllable: !UpwardTrackParameters | ||
ComponentName: Whip | ||
SpeciesName: AnthusNovaeseelandiae | ||
FrameSize: 512 | ||
FrameStep: 256 | ||
WindowFunction: HANNING | ||
#BgNoiseThreshold: 0.0 | ||
# min and max of the freq band to search | ||
MinHertz: 2000 | ||
MaxHertz: 7000 | ||
MinBandwidthHertz: 500 | ||
MaxBandwidthHertz: 5000 | ||
MinDuration: 0.1 | ||
MaxDuration: 0.5 | ||
DecibelThreshold: 6.0 | ||
|
||
#################### POST-PROCESSING of EVENTS ################### | ||
|
||
# A: First post-processing steps are to combine overlapping/proximal/sequential events | ||
# 1: Combine overlapping events | ||
#CombineOverlappingEvents: false | ||
|
||
# 2: Combine each pair of Boobook syllables as one event | ||
# Can also use this to "mop up" events in neighbourhood - these can be removed later. | ||
CombinePossibleSyllableSequence: false | ||
SyllableStartDifference: 3.0 | ||
SyllableHertzGap: 35 | ||
|
||
# B: Filter the events for excess activity in their upper and lower buffer zones | ||
LowerHertzBuffer: 150 | ||
UpperHertzBuffer: 400 | ||
|
||
# C: Options to save results files | ||
# 4: Available options for saving data files (case-sensitive): [False/Never | True/Always | WhenEventsDetected] | ||
SaveIntermediateWavFiles: Never | ||
SaveIntermediateCsvFiles: false | ||
# Available options (case-sensitive): [False/Never | True/Always | WhenEventsDetected] | ||
# "True" is useful when debugging but "WhenEventsDetected" is required for operational use. | ||
|
||
# 5: Available options for saving | ||
SaveSonogramImages: True | ||
#SaveSonogramImages: WhenEventsDetected | ||
# DisplayCsvImage is obsolete - ensure it remains set to: false | ||
DisplayCsvImage: false | ||
## End section for AnalyzeLongRecording | ||
|
||
# Other config files to reference | ||
HighResolutionIndicesConfig: "../Towsey.Acoustic.HiResIndicesForRecognisers.yml" | ||
|
||
################################################################################ | ||
# Common settings | ||
#Standard: &STANDARD | ||
#EventThreshold: 0.2 | ||
#BgNoiseThreshold: 3.0 | ||
|
||
# This notation means the a profile has all of the settings that the Standard profile has, | ||
# however, the DctDuration parameter has been overridden. | ||
# <<: *STANDARD | ||
# DctDuration: 0.3 | ||
... |
Oops, something went wrong.