Skip to content

Commit 9d03e76

Browse files
committed
minor formatting
1 parent 0718812 commit 9d03e76

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

articles/ai-studio/how-to/develop/evaluate-sdk.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ result = evaluate(
430430
},
431431
# Optionally provide your Azure AI project information to track your evaluation results in your Azure AI project
432432
azure_ai_project = azure_ai_project,
433-
# Optionally provide an output path to dump a json of metric summary, row level data and metric and studio URL
433+
# Optionally provide an output path to dump a json of metric summary, row level data and metric and Azure AI project URL
434434
output_path="./myevalresults.json"
435435
)
436436
```
@@ -769,7 +769,10 @@ evaluation = Evaluation(
769769
description="Evaluation of dataset",
770770
data=Dataset(id=data_id),
771771
evaluators={
772-
# Note the evaluator configuration key must follow a naming convention: it must start with a letter and contain only alphanumeric characters and underscores. Take "f1_score" as example: "f1score" or "f1_evaluator" will also be acceptable, but "f1-score-eval" or "1score" will result in errors.
772+
# Note the evaluator configuration key must follow a naming convention
773+
# the string must start with a letter with only alphanumeric characters
774+
# and underscores. Take "f1_score" as example: "f1score" or "f1_evaluator"
775+
# will also be acceptable, but "f1-score-eval" or "1score" will result in errors.
773776
"f1_score": EvaluatorConfiguration(
774777
id=F1ScoreEvaluator.id,
775778
),

0 commit comments

Comments
 (0)