Skip to content

Commit 0902602

Browse files
authored
remove 0-1 restrction (#361)
1 parent 64ae1f1 commit 0902602

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eval_protocol/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ class MetricResult(BaseModel):
550550
"""
551551

552552
is_score_valid: bool = True
553-
score: float = Field(..., ge=0.0, le=1.0)
553+
score: float = Field(..., description="The score for this metric.")
554554
reason: str
555555
data: Dict[str, Any] = Field(default_factory=dict, description="Optional extra metric data for debugging.")
556556

0 commit comments

Comments
 (0)