Skip to content

Commit

Permalink
Add inheritance to CompletionFn and CompletionResult subclasses (open…
Browse files Browse the repository at this point in the history
…ai#635)

# Thank you for contributing an eval! ♥️

🚨 Please make sure your PR follows these guidelines, __failure to follow
the guidelines below will result in the PR being closed automatically__.
Note that even if the criteria are met, that does not guarantee the PR
will be merged nor GPT-4 access granted. 🚨

__PLEASE READ THIS__:

In order for a PR to be merged, it must fail on GPT-4. We are aware that
right now, users do not have access, so you will not be able to tell if
the eval fails or not. Please run your eval with GPT-3.5-Turbo, but keep
in mind as we run the eval, if GPT-4 gets higher than 90% on the eval,
we will likely reject since GPT-4 is already capable of completing the
task.

We plan to roll out a way for users submitting evals to see the eval
performance on GPT-4 soon. Stay tuned! Until then, you will not be able
to see the eval performance on GPT-4. **Starting April 10, the minimum
eval count is 15 samples, we hope this makes it easier to create and
contribute evals.**

## Eval details 📑
### Eval name
[Insert Eval name here]

### Eval description

[Insert a short description of what your eval does here]

### What makes this a useful eval?

[Insert why this eval is worth including and any additional context]

## Criteria for a good eval ✅

Below are some of the criteria we look for in a good eval. In general,
we are seeking cases where the model does not do a good job despite
being capable of generating a good response (note that there are some
things large language models cannot do, so those would not make good
evals).

Your eval should be:

- [ ] Thematically consistent: The eval should be thematically
consistent. We'd like to see a number of prompts all demonstrating some
particular failure mode. For example, we can create an eval on cases
where the model fails to reason about the physical world.
- [ ] Contains failures where a human can do the task, but either GPT-4
or GPT-3.5-Turbo could not.
- [ ] Includes good signal around what is the right behavior. This means
either a correct answer for `Basic` evals or the `Fact` Model-graded
eval, or an exhaustive rubric for evaluating answers for the `Criteria`
Model-graded eval.
- [ ] **Include at least 15 high quality examples.**

If there is anything else that makes your eval worth including, please
document it below.

### Unique eval value

> Insert what makes your eval high quality that was not mentioned above.
(Not required)

## Eval structure 🏗️

Your eval should
- [ ] Check that your data is in `evals/registry/data/{name}`
- [ ] Check that your yaml is registered at
`evals/registry/evals/{name}.yaml`
- [ ] Ensure you have the right to use the data you submit via this eval

(For now, we will only be approving evals that use one of the existing
eval classes. You may still write custom eval classes for your own
cases, and we may consider merging them in the future.)

## Final checklist 👀

### Submission agreement

By contributing to Evals, you are agreeing to make your evaluation logic
and data under the same MIT license as this repository. You must have
adequate rights to upload any data used in an Eval. OpenAI reserves the
right to use this data in future service improvements to our product.
Contributions to OpenAI Evals will be subject to our usual Usage
Policies (https://platform.openai.com/docs/usage-policies).

- [ ] I agree that my submission will be made available under an MIT
license and complies with OpenAI's usage policies.

### Email address validation

If your submission is accepted, we will be granting GPT-4 access to a
limited number of contributors. Access will be given to the email
address associated with the merged pull request.

- [ ] I acknowledge that GPT-4 access will only be granted, if
applicable, to the email address used for my merged pull request.

### Limited availability acknowledgement

We know that you might be excited to contribute to OpenAI's mission,
help improve our models, and gain access to GPT-4. However, due to the
requirements mentioned above and high volume of submissions, we will not
be able to accept all submissions and thus not grant everyone who opens
a PR GPT-4 access. We know this is disappointing, but we hope to set the
right expectation before you open this PR.

- [ ] I understand that opening a PR, even if it meets the requirements
above, does not guarantee the PR will be merged nor GPT-4 access
granted.

### Submit eval

- [ ] I have filled out all required fields in the evals PR form
- [ ] (Ignore if not submitting code) I have run `pip install
pre-commit; pre-commit install` and have verified that `black`, `isort`,
and `autoflake` are running when I commit and push

Failure to fill out all required fields will result in the PR being
closed.

### Eval JSON data 

Since we are using Git LFS, we are asking eval submitters to add in as
many Eval Samples (at least 5) from their contribution here:

<details>
  <summary>View evals in JSON</summary>

  ### Eval
  ```jsonl
  INSERT_EVAL_HERE
  ```
</details>
  • Loading branch information
jwang47 committed Apr 11, 2023
1 parent e4a3ac0 commit a757dc2
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
5 changes: 3 additions & 2 deletions evals/completion_fns/cot.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Extending Completion Functions with Chain-of-Thought
"""
from evals.api import CompletionFn, CompletionResult
from evals.prompt.base import ChatCompletionPrompt
from evals.record import record_sampling
from evals.registry import Registry
Expand All @@ -11,15 +12,15 @@
)


class ChainOfThoughtCompletionResult:
class ChainOfThoughtCompletionResult(CompletionResult):
def __init__(self, response) -> None:
self.response = response

def get_completions(self) -> list[str]:
return [self.response.strip()]


class ChainOfThoughtCompletionFn:
class ChainOfThoughtCompletionFn(CompletionFn):
def __init__(
self,
cot_template: str = DEFAULT_COT_TEMPLATE,
Expand Down
5 changes: 3 additions & 2 deletions evals/completion_fns/langchain_llm.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
import importlib
from typing import Optional
from evals.api import CompletionFn, CompletionResult

from langchain.llms import BaseLLM

from evals.prompt.base import CompletionPrompt
from evals.record import record_sampling


class LangChainLLMCompletionResult:
class LangChainLLMCompletionResult(CompletionResult):
def __init__(self, response) -> None:
self.response = response

def get_completions(self) -> list[str]:
return [self.response.strip()]


class LangChainLLMCompletionFn:
class LangChainLLMCompletionFn(CompletionFn):
def __init__(self, llm: str, llm_kwargs: Optional[dict] = {}, **kwargs) -> None:
# Import and resolve self.llm to an instance of llm argument here, assuming it's always a subclass of BaseLLM
module = importlib.import_module("langchain.llms")
Expand Down
9 changes: 6 additions & 3 deletions evals/completion_fns/langchain_math.py
Original file line number Diff line number Diff line change
@@ -1,27 +1,30 @@
import importlib
from typing import Optional

from openai import Completion
from evals.api import CompletionResult

from langchain import OpenAI, LLMMathChain

from evals.prompt.base import CompletionPrompt
from evals.record import record_sampling


class LangChainCompletionResult:
class LangChainCompletionResult(CompletionResult):
def __init__(self, response) -> None:
self.response = response

def get_completions(self) -> list[str]:
return [self.response.strip()]


class LangChainMathChainCompletionFn:
class LangChainMathChainCompletionFn(Completion):
def __init__(self, **kwargs) -> None:
llm = OpenAI(temperature=0)
self.llm_math = LLMMathChain(llm=llm)

def __call__(self, prompt, **kwargs) -> LangChainCompletionResult:

prompt = CompletionPrompt(prompt).to_formatted_prompt()
response = self.llm_math.run(prompt)
# The LangChain response comes with `Answer: ` ahead of this, let's strip it out
Expand Down
8 changes: 5 additions & 3 deletions evals/completion_fns/openai.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
from typing import Any, Optional, Union
from evals.api import CompletionFn, CompletionResult
from evals.base import CompletionFnSpec

from evals.prompt.base import (
ChatCompletionPrompt,
Expand All @@ -14,7 +16,7 @@
)


class OpenAIBaseCompletionResult:
class OpenAIBaseCompletionResult(CompletionResult):
def __init__(self, raw_data: Any, prompt: Any):
self.raw_data = raw_data
self.prompt = prompt
Expand Down Expand Up @@ -43,7 +45,7 @@ def get_completions(self) -> list[str]:
return completions


class OpenAICompletionFn:
class OpenAICompletionFn(CompletionFn):
def __init__(
self,
model: Optional[str] = None,
Expand Down Expand Up @@ -90,7 +92,7 @@ def __call__(
return result


class OpenAIChatCompletionFn:
class OpenAIChatCompletionFn(CompletionFnSpec):
def __init__(
self,
model: Optional[str] = None,
Expand Down

0 comments on commit a757dc2

Please sign in to comment.