Code Generation

When To Use Code Generation Eval Template

This Eval checks the correctness and readability of the code from a code generation process. The template variables are:

  • query: The query is the coding question being asked

  • code: The code is the code that was returned.

Code Generation Eval Template

You are a stern but practical senior software engineer who cares a lot about simplicity and
readability of code. Can you review the following code that was written by another engineer?
Focus on readability of the code. Respond with "readable" if you think the code is readable,
or "unreadable" if the code is unreadable or needlessly complex for what it's trying
to accomplish.

ONLY respond with "readable" or "unreadable"

Task Assignment:
```
{query}
```

Implementation to Evaluate:
```
{code}
```

We are continually iterating our templates, view the most up-to-date template on GitHub.

How To Run the Code Generation Eval

from phoenix.evals import (
    CODE_READABILITY_PROMPT_RAILS_MAP,
    CODE_READABILITY_PROMPT_TEMPLATE,
    OpenAIModel,
    download_benchmark_dataset,
    llm_classify,
)

model = OpenAIModel(
    model_name="gpt-4",
    temperature=0.0,
)

#The rails is used to hold the output to specific values based on the template
#It will remove text such as ",,," or "..."
#Will ensure the binary value expected from the template is returned 
rails = list(CODE_READABILITY_PROMPT_RAILS_MAP.values())
readability_classifications = llm_classify(
    dataframe=df,
    template=CODE_READABILITY_PROMPT_TEMPLATE,
    model=model,
    rails=rails,
    provide_explanation=True, #optional to generate explanations for the value produced by the eval LLM
)

The above shows how to use the code readability template.

Benchmark Results

This benchmark was obtained using notebook below. It was run using an OpenAI Human Eval dataset as a ground truth dataset. Each example in the dataset was evaluating using the CODE_READABILITY_PROMPT_TEMPLATE above, then the resulting labels were compared against the ground truth label in the benchmark dataset to generate the confusion matrices below.

GPT-4 Results

GPT-3.5 Results

GPT-4 Turbo

Code Eval
GPT-4 Turbo
GPT-4
Gemini Pro
GPT-3.5
Palm
Llama 7b (soon)

Precision

1.0

0.93

0.79

0.78

0.77

Recall

0.71

0.78

0.81

0.93

0.94

F1

0.83

0.85

0.80

0.85

0.85

Last updated