text2sql-sql-bleu / README.md
AzizHamad
Add SQL-BLEU metric
7eba1aa
|
raw
history blame
323 Bytes
metadata
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:

import evaluate
m = evaluate.load("3zizo3/text2sql-sql-bleu")
print(m.compute(predictions=["select 1"], references=["select 2"]))