[NEW SUBMISSION] Confidence-Calibrated Delta scoring function#100
Open
EmmettBicker wants to merge 1 commit intoOATML-Markslab:mainfrom
Open
[NEW SUBMISSION] Confidence-Calibrated Delta scoring function#100EmmettBicker wants to merge 1 commit intoOATML-Markslab:mainfrom
EmmettBicker wants to merge 1 commit intoOATML-Markslab:mainfrom
Conversation
Author
|
Hey @pascalnotin -- When you have time, would really appreciate a review of this |
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.
This PR adds in a new scoring method called Confidence-Calibrated Delta for ProSTT (K=2048) which raises the avg spearman on DMS_zero_shot from 0.507 to 0.523.
The intuitive change is going from
score = mutant score − wildtype scoreto
score = mutant score − background penalty − uncertainty penalty + wildtype confidence bonusOr more mathematically,
to
where
l(a) = log p(a)and where background_weight and wildtype_confidence_weight are hyperparameters set to 0.35 and 0.2 respectively.Here were my results:
0.5230.7730.7850.4080.237Selected Spearman breakdowns:
0.5070.4550.5420.4510.6590.5120.5170.590Takes ~3 minutes to run
I also independently validated average spearkman of K=1024 and K=4096
But, I'm only interested in submitting 2048.