From 92ff9da010e4c00de76475a57bd52ed4d95b3716 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eloy=20P=C3=A9rez=20Torres?= <99720527+eloy-encord@users.noreply.github.com> Date: Mon, 29 Jul 2024 16:14:36 +0200 Subject: [PATCH] chore: add evaluation save option in readme (#85) Documented the `--save` option of the evaluate command in README after receiving an issue (#83) asking about how to save evaluation results to a CSV. --- README.md | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 1a417df..b361954 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,3 @@ -

- - tti-eval logo banner - -

-
CLI Quickstart In Colab @@ -94,6 +88,10 @@ Alternatively, you can specify known (model, dataset) pairs using the `--model-d tti-eval evaluate --model-dataset clip/Alzheimer-MRI --model-dataset bioclip/Alzheimer-MRI ``` +The evaluation results can be exported to a CSV file using the `--save` option. +They will be saved on a folder at the location specified by the environment variable `TTI_EVAL_OUTPUT_PATH`. +By default, exported evaluation results are stored to the `output/evaluations` folder within the repository. + ### Embeddings Animation To create 2D animations of the embeddings, use the CLI command `tti-eval animate`. @@ -106,12 +104,12 @@ Alternatively, you can specify the models and dataset as arguments. For example: tti-eval animate clip bioclip Alzheimer-MRI ``` -The animations will be saved at the location specified by the environment variable `TTI_EVAL_OUTPUT_PATH`. -By default, this path corresponds to the `output` folder in the repository directory. +The animations will be saved on a folder at the location specified by the environment variable `TTI_EVAL_OUTPUT_PATH`. +By default, animations are stored in the `output/animations` folder within the repository. To interactively explore the animation in a temporary session, use the `--interactive` flag.
- + Transition between embedding plots
> ℹ️ You can also carry out these operations using Python. Explore our Python Quickstart guide for more details.