Skip to content

Commit

Permalink
Update LADR_0001_lightweight_detections.md
Browse files Browse the repository at this point in the history
student teacher filter model
  • Loading branch information
pmhalvor authored Sep 16, 2024
1 parent cc1378b commit edd423e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions docs/ladr/LADR_0001_lightweight_detections.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,31 @@ This is a 2D representation of the audio signal, where the x-axis is time, y-axi
- not lightweight
- more difficult to work with (2D data)

### Distilled Student-Teacher model
We could set up a lightweight NN classifier
that is trained from classifications.

True positives would be time-frames that the
Google humpback model finds classifications in.
False positives are then detections time-frames with
low scoring pooled model confidence outputs.
False negatives are when the model found whales,
but the detection filter didn't.
True negatives are when both methods don't find
any whale prescence, i.e. most of the time.

#### Pros
- can be calibrated
- window size
- margin size
- confidence threshold
- etc
- student may find the most obvious signs of whale

#### Negative
- requires training
- requires parallel classifications of same audio -> "expensive"
- many variables/ hyperparameters to tune

### Humpback Whale Model
Final option is to just directly use the model on the data surronding a encounter.
Expand Down

0 comments on commit edd423e

Please sign in to comment.