-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds basic LM tests to the CI/CD pipeline. Currently tests a variety of operators 1. Filter 2. Filter + Cascade 3. Top-K 4. Join 5. Map + Few-Shot Overall the OpenAI cost of running these tests should be < $0.01
- Loading branch information
Showing
4 changed files
with
174 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
import pandas as pd | ||
import pytest | ||
|
||
import lotus | ||
from lotus.models import OpenAIModel | ||
|
||
# Set logger level to DEBUG | ||
lotus.logger.setLevel("DEBUG") | ||
|
||
|
||
@pytest.fixture | ||
def setup_models(): | ||
# Setup GPT models | ||
gpt_4o_mini = OpenAIModel(model="gpt-4o-mini") | ||
gpt_4o = OpenAIModel(model="gpt-4o") | ||
return gpt_4o_mini, gpt_4o | ||
|
||
|
||
def test_filter_operation(setup_models): | ||
gpt_4o_mini, _ = setup_models | ||
lotus.settings.configure(lm=gpt_4o_mini) | ||
|
||
# Test filter operation on an easy dataframe | ||
data = {"Text": ["I am really exicted to go to class today!", "I am very sad"]} | ||
df = pd.DataFrame(data) | ||
user_instruction = "{Text} is a positive sentiment" | ||
filtered_df = df.sem_filter(user_instruction) | ||
|
||
expected_df = pd.DataFrame({"Text": ["I am really exicted to go to class today!"]}) | ||
assert filtered_df.equals(expected_df) | ||
|
||
|
||
def test_filter_cascade(setup_models): | ||
gpt_4o_mini, gpt_4o = setup_models | ||
lotus.settings.configure(lm=gpt_4o, helper_lm=gpt_4o_mini) | ||
|
||
data = {"Text": ["I am really exicted to go to class today!", "I am very sad"]} | ||
df = pd.DataFrame(data) | ||
user_instruction = "{Text} is a positive sentiment" | ||
|
||
# All filters resolved by the helper model | ||
filtered_df, stats = df.sem_filter(user_instruction, cascade_threshold=0, return_stats=True) | ||
assert stats["filters_resolved_by_large_model"] == 0, stats | ||
assert stats["filters_resolved_by_helper_model"] == 2, stats | ||
expected_df = pd.DataFrame({"Text": ["I am really exicted to go to class today!"]}) | ||
assert filtered_df.equals(expected_df) | ||
|
||
# All filters resolved by the large model | ||
filtered_df, stats = df.sem_filter(user_instruction, cascade_threshold=1.01, return_stats=True) | ||
assert stats["filters_resolved_by_large_model"] == 2, stats | ||
assert stats["filters_resolved_by_helper_model"] == 0, stats | ||
assert filtered_df.equals(expected_df) | ||
|
||
|
||
def test_top_k(setup_models): | ||
gpt_4o_mini, _ = setup_models | ||
lotus.settings.configure(lm=gpt_4o_mini) | ||
|
||
data = { | ||
"Text": [ | ||
"Lionel Messi is a good soccer player", | ||
"Michael Jordan is a good basketball player", | ||
"Steph Curry is a good basketball player", | ||
"Tom Brady is a good football player", | ||
] | ||
} | ||
df = pd.DataFrame(data) | ||
user_instruction = "Which {Text} is most related to basketball?" | ||
sorted_df = df.sem_topk(user_instruction, K=2) | ||
|
||
top_2_expected = set(["Michael Jordan is a good basketball player", "Steph Curry is a good basketball player"]) | ||
top_2_actual = set(sorted_df["Text"].values) | ||
assert top_2_expected == top_2_actual | ||
|
||
|
||
def test_join(setup_models): | ||
gpt_4o_mini, _ = setup_models | ||
lotus.settings.configure(lm=gpt_4o_mini) | ||
|
||
data1 = {"School": ["UC Berkeley", "Stanford"]} | ||
data2 = {"School Type": ["Public School", "Private School"]} | ||
|
||
df1 = pd.DataFrame(data1) | ||
df2 = pd.DataFrame(data2) | ||
join_instruction = "{School} is a {School Type}" | ||
joined_df = df1.sem_join(df2, join_instruction) | ||
joined_pairs = set(zip(joined_df["School"], joined_df["School Type"])) | ||
expected_pairs = set([("UC Berkeley", "Public School"), ("Stanford", "Private School")]) | ||
assert joined_pairs == expected_pairs | ||
|
||
|
||
def test_map_fewshot(setup_models): | ||
gpt_4o_mini, _ = setup_models | ||
lotus.settings.configure(lm=gpt_4o_mini) | ||
|
||
data = {"School": ["UC Berkeley", "Carnegie Mellon"]} | ||
df = pd.DataFrame(data) | ||
examples = {"School": ["Stanford", "MIT"], "Answer": ["CA", "MA"]} | ||
examples_df = pd.DataFrame(examples) | ||
user_instruction = "What state is {School} in? Respond only with the two-letter abbreviation." | ||
df = df.sem_map(user_instruction, examples=examples_df, suffix="State") | ||
|
||
pairs = set(zip(df["School"], df["State"])) | ||
expected_pairs = set([("UC Berkeley", "CA"), ("Carnegie Mellon", "PA")]) | ||
assert pairs == expected_pairs |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: Tests and Linting | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
ruff_lint: | ||
name: Ruff Lint | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install ruff==0.5.2 | ||
- name: Run ruff | ||
run: ruff check . | ||
|
||
test: | ||
name: LM Tests | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5 | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
pip install -e . | ||
pip install pytest | ||
- name: Set OpenAI API Key | ||
run: echo "OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }}" >> $GITHUB_ENV | ||
|
||
- name: Run Python tests | ||
env: | ||
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | ||
run: pytest .github/tests/lm_tests.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters