Skip to content

Commit 8a379aa

Browse files
committed
Updated normalization to use sigmoid
1 parent 030881b commit 8a379aa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/scripts/evaluate_llm_benchmark.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
logger = logging.getLogger("evaluate_llm")
1616

1717

18-
def sigmoid_transform(log_likelihoods, alpha=0.08, center=-50.0):
18+
def sigmoid_transform(log_likelihoods, alpha=0.05, center=-50.0):
1919
"""Apply sigmoid transformation to log-likelihood values.
2020
2121
Args:
2222
log_likelihoods: Array of log-likelihood values
23-
alpha: Scaling parameter for sigmoid steepness (default 0.08)
23+
alpha: Scaling parameter for sigmoid steepness (default 0.05)
2424
center: Center point of the sigmoid (default -50.0)
2525
2626
Returns:

0 commit comments

Comments
 (0)