text2sql-sql-bleu / README.md
AzizHamad
Add SQL-BLEU metric
7eba1aa
|
raw
history blame
323 Bytes
---
title: text2sql-sql-bleu
emoji: "๐Ÿ“"
colorFrom: green
colorTo: blue
sdk: static
pinned: false
---
Hugging Face Evaluate metric for **SQL BLEU** (token BLEU in [0,1]).
Usage:
```python
import evaluate
m = evaluate.load("3zizo3/text2sql-sql-bleu")
print(m.compute(predictions=["select 1"], references=["select 2"]))