SoftALL/text2sql-sqam
0
1<!doctype html>2<html>3<head>4 <meta charset="utf-8" />5 <meta name="viewport" content="width=device-width, initial-scale=1" />6 <title>text2sql-sqam</title>7 <style>8 body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial; max-width:900px; margin:40px auto; padding:0 16px; line-height:1.5;}9 pre{background:#f6f8fa; padding:16px; border-radius:10px; overflow:auto;}10 code{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;}11 </style>12</head>13<body>14 <h2>Hugging Face Evaluate metric wrapper for SQAM (SQL).</h2>15 <p><b>Usage:</b></p>16 <pre><code>import evaluate17m = evaluate.load("SoftALL/text2sql-sqam")18print(m.compute(predictions=["select 1"], references=["select 1"]))</code></pre>19</body>20</html>21 