Skip to content

Commit

Permalink
rescale_with_baseline default value changed
Browse files Browse the repository at this point in the history
  • Loading branch information
ilkersigirci committed Aug 9, 2024
1 parent 90d0fff commit 234c677
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ make -s profile PROFILE_FILE_PATH=<PATH_TO_FILE>

```bash

curl -X POST "http://127.0.0.1:8888/bert-score/" \
curl -X POST "http://127.0.0.1:8888/score_calculation/all" \
-H "Content-Type: application/json" \
-d '{
"candidate": ["The quick brown fox jumps over the lazy dog"],
Expand Down
2 changes: 1 addition & 1 deletion src/bert_score_api/deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


def get_bert_scorer(
language: str = "tr", rescale_with_baseline: bool = False
language: str = "tr", rescale_with_baseline: bool = True
) -> BERTScorer:
model_map = {
"tr": "dbmdz/bert-base-turkish-cased",
Expand Down

0 comments on commit 234c677

Please sign in to comment.