Skip to content

Commit 7362833

Browse files
author
Ubuntu
committed
wandb scores logging
1 parent 0794615 commit 7362833

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cortext/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020

2121
# version must stay on line 22
22-
__version__ = "3.2.4"
22+
__version__ = "3.2.5"
2323
version_split = __version__.split(".")
2424
__spec_version__ = (
2525
(1000 * int(version_split[0]))

validators/text_validator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ async def score_responses(
168168
if scored_response is not None:
169169
scores[uid] = scored_response
170170
uid_scores_dict[uid] = scored_response
171-
self.wandb_data["scores"][uid] = score
171+
self.wandb_data["scores"][uid] = scored_response
172172
else:
173173
scores[uid] = 0
174174
uid_scores_dict[uid] = 0

0 commit comments

Comments
 (0)