Skip to content

Commit

Permalink
Small changes to config files
Browse files Browse the repository at this point in the history
Issue #370 Changes to accomodate change in calculation of the neighbourhood acoustic activity.
  • Loading branch information
towsey authored and atruskie committed Oct 14, 2020
1 parent c0e2082 commit b8c4d5b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ SyllableSequence:
SyllableHertzGap: 35
FilterSyllableSequence: true
SyllableMaxCount: 6
ExpectedPeriod: 1.0
ExpectedPeriod: 2.0

# 3: Remove events whose bandwidth lies outside 3 SDs of an expected value.
ExpectedBandwidth: 100
Expand All @@ -47,7 +47,7 @@ BandwidthStandardDeviation: 15
# 4: Filter the events for excess activity in their upper and lower buffer zones
NeighbourhoodLowerHertzBuffer: 150
NeighbourhoodUpperHertzBuffer: 400
NeighbourhoodDbThreshold: 6.0
NeighbourhoodDecibelBuffer: 0.0

# C: Options to save results files
# 4: Available options for saving spectrograms (case-sensitive): [False/Never | True/Always | WhenEventsDetected]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ BandwidthStandardDeviation: 40
# 4: Filter the events for excess activity in their upper and lower buffer zones
NeighbourhoodLowerHertzBuffer: 150
NeighbourhoodUpperHertzBuffer: 400
NeighbourhoodDbThreshold: 9.0
NeighbourhoodDecibelBuffer: 3.0

# C: Options to save results files
# 4: Available options for saving spectrograms (case-sensitive): [False/Never | True/Always | WhenEventsDetected]
Expand Down
2 changes: 1 addition & 1 deletion src/AnalysisPrograms/Recognizers/GenericRecognizer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ public class GenericRecognizerConfig : RecognizerConfig, INamedProfiles<object>
public int NeighbourhoodLowerHertzBuffer { get; set; }

/// <summary>
/// Gets or sets a value indicating the decibel gap/difference between acoustic activity in the event and in the upper/lower buffer zones.
/// Gets or sets a value indicating the decibel gap/difference between acoustic activity in the event and in the upper and lower buffer zones.
/// BufferAcousticActivity must be LessThan (EventAcousticActivity - NeighbourhoodDecibelBuffer)
/// This value is used only if NeighbourhoodLowerHertzBuffer > 0 OR NeighbourhoodUpperHertzBuffer > 0.
/// </summary>
Expand Down

0 comments on commit b8c4d5b

Please sign in to comment.