diff --git a/src/seb/cache/sentence-transformers__all-MiniLM-L6-v2/LCC.json b/src/seb/cache/sentence-transformers__all-MiniLM-L6-v2/LCC.json index 73c133b2..e4cee1e7 100644 --- a/src/seb/cache/sentence-transformers__all-MiniLM-L6-v2/LCC.json +++ b/src/seb/cache/sentence-transformers__all-MiniLM-L6-v2/LCC.json @@ -1 +1 @@ -{"task_name":"LCC","task_description":"The leipzig corpora collection, annotated for sentiment","task_version":"1.1.1","time_of_run":"2024-02-15T10:59:42.112636","scores":{"da":{"accuracy":0.3846666666666666,"f1":0.3650136884557438,"accuracy_stderr":0.03664241622309678,"f1_stderr":0.03540233062350939,"main_score":0.3846666666666666}},"main_score":"accuracy"} \ No newline at end of file +{"task_name":"LCC","task_description":"The leipzig corpora collection, annotated for sentiment","task_version":"1.1.1","time_of_run":"2024-02-17T13:29:21.544827","scores":{"da":{"accuracy":0.3846666666666666,"f1":0.3650136884557438,"accuracy_stderr":0.03664241622309678,"f1_stderr":0.03540233062350939,"main_score":0.3846666666666666}},"main_score":"accuracy"} \ No newline at end of file diff --git a/tests/test_integration.py b/tests/test_integration.py index 4ffb31eb..a02323de 100644 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -33,6 +33,9 @@ def evaluate(self, model: seb.Encoder) -> seb.TaskResult: def get_descriptive_stats(self) -> dict: return {} + def get_documents(self) -> list[str]: + return [] + return DummyTask() @@ -40,7 +43,6 @@ def get_descriptive_stats(self) -> dict: "model", [ "intfloat/e5-small", - "translate-e5-small", ], ) def test_integration_dummy(model: str):