Skip to content

Commit

Permalink
chore: update gpt-3.5-turbo results
Browse files Browse the repository at this point in the history
Signed-off-by: zenodflow <zenodflow@gmail.com>
  • Loading branch information
zenodflow committed Jul 19, 2024
1 parent 6c27109 commit 8e28e7b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
11 changes: 11 additions & 0 deletions benchmark/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,18 @@ python -m benchmark.run --name <benchmark-name> --num-pairs -1
| itunes-amazon | 100 | 46.15 | 63.16 | 0.004256 | 34 |
| walmart-amazon | 96.3 | 67.36 | 79.27 | 0.03037 | 82 |

### GPT-3.5-turbo

| Dataset | Precision | Recall | F1 | Cost ($) | Throughput (pps) |
| :------------: | :-------: | :----: | :---: | :------: | :--------------: |
| abt-buy | 100 | 15.05 | 26.16 | 0.3649 | 22 |
| amazon-google | 68.6 | 35.62 | 46.89 | 0.2209 | 160 |
| beer | 100 | 35.71 | 52.63 | 0.02057 | 78 |
| dblp-acm | 99.38 | 64 | 77.86 | 0.3106 | 140 |
| dblp-scholar | 92.41 | 29.2 | 44.38 | 0.2834 | 150 |
| fodors-zagats | 100 | 40.91 | 58.06 | 0.04857 | 54 |
| itunes-amazon | 100 | 19.23 | 32.26 | 0.04254 | 87 |
| walmart-amazon | 94.44 | 35.23 | 51.32 | 0.3007 | 150 |

### Prompt-level batching

Expand Down
4 changes: 3 additions & 1 deletion libem/parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

model = Parameter(
default="gpt-4o",
options=["gpt-4o-mini", "gpt-4", "gpt-4-turbo", "gpt-3.5-turbo"]
options=["gpt-4o-mini", "gpt-4",
"gpt-4-turbo", "gpt-3.5-turbo",
"llama3"]
)
temperature = Parameter(
default=0,
Expand Down

0 comments on commit 8e28e7b

Please sign in to comment.