Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
93818ad
new tests
MilesHolland Nov 15, 2024
09ca1bf
remove gleu
MilesHolland Nov 15, 2024
a4d8a87
run black
MilesHolland Nov 15, 2024
f1aefa9
skip
MilesHolland Nov 18, 2024
10dd5be
test ci: restore multimodal test
MilesHolland Nov 19, 2024
e04ec36
test ci: restore conversation test
MilesHolland Nov 19, 2024
9dcbc3c
change skip type
MilesHolland Nov 19, 2024
c195f88
remove skips because they don't work
MilesHolland Nov 19, 2024
85ba13b
test only convo in CI
MilesHolland Nov 19, 2024
4a75aad
only skip convo test
MilesHolland Nov 19, 2024
33cfa7d
just run multi
MilesHolland Nov 19, 2024
a4b7c5a
2 tests
MilesHolland Nov 19, 2024
eec0914
fix param placement
MilesHolland Nov 19, 2024
2c6db6c
skip multi
MilesHolland Nov 19, 2024
772fe9e
just singlton
MilesHolland Nov 20, 2024
7a46b5b
remove cs from first test
MilesHolland Nov 20, 2024
4e5828f
remove rai evals
MilesHolland Nov 20, 2024
d560c2d
remove prompty evals
MilesHolland Nov 20, 2024
9c1934f
all but 1 eval
MilesHolland Nov 20, 2024
253adcf
Merge branch 'main' into eval/testing/grouped-eval-testing
MilesHolland Nov 20, 2024
358a1b4
update recordings
MilesHolland Nov 20, 2024
18476fc
2 evals
MilesHolland Nov 20, 2024
a8ae272
just cs
MilesHolland Nov 20, 2024
8b6b782
2 rai service
MilesHolland Nov 20, 2024
3772ccd
prompty only
MilesHolland Nov 21, 2024
ad58f38
disable pf proxy
MilesHolland Nov 21, 2024
a330920
delay
MilesHolland Nov 21, 2024
d6c88b5
more fixture tweaks
MilesHolland Nov 22, 2024
6f5f277
more os setting
MilesHolland Nov 22, 2024
7a683c8
skip windows in CI
MilesHolland Nov 22, 2024
5ba8fef
re-enabled all tests
MilesHolland Nov 22, 2024
e1511cd
remove env setting
MilesHolland Nov 22, 2024
c769134
re-reacord
MilesHolland Nov 22, 2024
e5ea0d6
disable 1 test
MilesHolland Dec 2, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdk/evaluation/azure-ai-evaluation/assets.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "python",
"TagPrefix": "python/evaluation/azure-ai-evaluation",
"Tag": "python/evaluation/azure-ai-evaluation_a63b4a27cf"
"Tag": "python/evaluation/azure-ai-evaluation_d414254496"
}
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ async def __call__(self, *, query: str, response: str, ground_truth: str, **kwar

class SimilarityEvaluator:
"""
Evaluates similarity score for a given query, response, and ground truth or a multi-turn conversation.
Evaluates similarity score for a given query, response, and ground truth.

The similarity measure evaluates the likeness between a ground truth sentence (or document) and the
AI model's generated prediction. This calculation involves creating sentence-level embeddings for both
Expand Down
1 change: 1 addition & 0 deletions sdk/evaluation/azure-ai-evaluation/tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from .__openai_patcher import TestProxyConfig, TestProxyHttpxClientBase # isort: split
from . import __pf_service_isolation # isort: split # noqa: F401

import os
import json
import multiprocessing
import time
Expand Down
Loading
Loading