Evaluating Base and Finetuned LLMs¶
In this tutorial, we will evaluate the performance of a base LLM while comparing it to the performance of OpenAI. For this example, the base Llama3.8B model will be used. .. In this tutorial, we will evaluate the performance of a base and finetuned LLM while comparing it to the performance of OpenAI. For this example, the base Llama2-7B and finetuned Llama2-7B models will be used.
Prerequisites¶
You need to ingest your data corpus and create a dataset from it. You can refer to the Data ingestion and creating dataset tutorial for more information on how to do this.
The dataset name used in this tutorial is
contracts
.
You need to deploy the base Llama3-8B model on DKubeX. To learn how to deploy a LLM on DKubeX, refer to the Deploying LLMs in DKubeX tutorial.
The names of the base Llama3-8B deployment used in this tutorial ia
llama38bbase
.
Create a SecureLLM application key with the LLM deployment which will be used in the evaluation process. The steps are provided below.
From the DKubeX UI, open and log into the SecureLLM application. Once open, click on the Admin Login button and log in using the admin credentials provided during installation.
Hint
In case you do not have the credentials for logging in to SecureLLM, please contact your administrator.
On the left sidebar, click on the Keys menu and go to the Application Keys tab on that page.
To create a new key for your application, use the following steps:
On the API key name field, provide a unique name for the key to be created.
From the LLM Keys dropdown list, select DKUBEX.
From the Models dropdown list, select your deployed base model.
Click on the Generate Key button.
A pop-up window will show up on your screen containing the application key for your new application. Alternatively, you can also access your application key from the list of keys in the Application Key tab.
Copy this application key for further use, as it will be required to create the chatbot application. Also make sure that you are copying the entire key including the sk- part.
Export the following variables to your workspace by running the following commands on your DKubeX Terminal.
Replace the
<username>
part with your DKubeX workspace name.export NAMESPACE="<username>" export HOMEDIR=/home/${NAMESPACE}
A few .yaml files are required to be used in the evaluation process.
On the Terminal application in DKubeX UI, run the following commands:
git clone -b v0.8.5.3 https://github.com/dkubeio/dkubex-examples.git cd && cp dkubex-examples/rag/query/query.yaml ${HOMEDIR}/query.yaml && cp dkubex-examples/rag/evaluation/eval.yaml ${HOMEDIR}/eval.yaml && cd
Evaluating LLM Models¶
To evaluate the base Llama3-8B model against OpenAI, follow the steps provided below:
On the
dataset
field, provide the name of the dataset you created earlier, i.e.contracts
.On the
embedding
field, provide the type of the embedding model used for ingestion, i.e.huggingface
.In the
synthesizer
section, provide the following details:On the
llm
field, make suredkubex
is selected.On the
llm_url
field, provide the endpoint URL of the deployed model to be used. The endpoint URL can be found on the Deployments page of DKubeX UI.On the
llm_key
field, provide the serving token for the deployed model to be used. To find the serving token, go to the Deployments page of DKubeX UI and click on the deployed model name. The serving token will be available on the model details page.
Under the
Embedding Model config
section, uncomment the entirehuggingface
section. Here the name of the embedding model to be used is provided.In the
securellm
section, provide the following details:On the
appkey
field, provide the application key that you created earlier on the SecureLLM application.On the
dkubex_url
field, provide the URL to access DKubeX.
Provide the appropriate details on the
eval.yaml
file which will be used during the evaluation process. Runvim eval.yaml
and provide the following details:On the
dataset
field, provide the name of the dataset you created earlier, i.e.contracts
.Under the
questions_generator
section, provide the following details:On the
llm
field, provideopenai
.On the
llm_url
field, keep it blank.On the
llm_key
field, provide the OpenAI API key.
On the
rag_configuration
field, provide the absolute path to the RAG config (query.yaml) file. In this case it will be/home/<username>/query.yaml
, where<username>
is the name of your DKubeX workspace.Under the
correctness_evaluator
section, provide the following details:On the
llm
field, providedkubex
.On the
llm_key
field, provide the serving token for the deployed model to be used. To find the serving token, go to the Deployments page of DKubeX UI and click on the deployed model name. The serving token will be available on the model details page.On the
llm_url
field, provide the endpoint URL of the deployed model to be used. The endpoint URL can be found on the Deployments page of DKubeX UI.
On the
answer_relevancy_evaluator
section, provide the following details:On the
llm
field, providedkubex
.On the
llm_key
field, provide the serving token for the deployed model to be used. To find the serving token, go to the Deployments page of DKubeX UI and click on the deployed model name. The serving token will be available on the model details page.On the
llm_url
field, provide the endpoint URL of the deployed model to be used. The endpoint URL can be found on the Deployments page of DKubeX UI.
On the
retrieval_evaluator
section, provide the following details:On the
embedding_provider
field, providehuggingface
.On the
embedding_model
field, provide the name of the embedding model used to create the dataset, i.e.BAAI/bge-large-en-v1.5
.
Once done, run the following command to start the evaluation process of the base Llama3-8B model. Replace the
<dataset name>
part with the name of the dataset created during ingestion (for this example,contracts
).d3x dataset evaluate -d <dataset name> --config ${HOMEDIR}/eval.yaml
d3x dataset evaluate -d contracts --config ${HOMEDIR}/eval.yaml