From 052d09780bf7aee31419a7349e6e732e8c0f5005 Mon Sep 17 00:00:00 2001 From: rasbt Date: Wed, 3 Apr 2024 16:00:35 +0000 Subject: [PATCH] cleanup evaluation docs --- tutorials/evaluation.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/tutorials/evaluation.md b/tutorials/evaluation.md index 083a38d76d..9a88183590 100644 --- a/tutorials/evaluation.md +++ b/tutorials/evaluation.md @@ -33,18 +33,6 @@ litgpt evaluate \ --repo_id microsoft/phi-2 ``` -Please note that the `litgpt eval` command run an internal model conversion. -This is only necessary the first time you want to evaluate a model. To skip the conversion, -when you want to evaluate a model a second time, you can pass the `--skip_conversion true` argument: - -``` -litgpt evaluate \ - --checkpoint_dir checkpoints/microsoft/phi-2/ \ - --out_dir evaluate_model/ \ - --repo_id microsoft/phi-2 \ - --skip_conversion true -``` -   > [!TIP]