allenai / allenai/Lila

How to verify whether the model's output is equal to the ground truth?

Abierto
#2 1 comentario 0 reacciones 0 asignados Ver en GitHub
Lenguaje dominante
TeX
Estrellas
90
Forks
11
Métricas de merge de PR
Sin PR fusionados en 30 d

Descripción

Thanks for releasing the dataset of Lila benchmark.

Now, I want to evalutate the math reasoing ability by Lila benchmark.

I have a question that has been bothering me: how can we compare whether the ground truth and the model output are strictly equal?

It is difficult to compare the execution results with [output_answer]. And, It is not accurate to compare the actual execution results of the [output_program] with the execution results of our model output program.

For example:
```
Problem:
"Problem: Find the norm and argument (phase angle in radians) of $(1+i) \sqrt{10}$."
```
The gt problem is:
```
"import math from sympy import * i = 1j x = (1+i)*math.sqrt(10) norm = math.sqrt(pow(x.real, 2) + pow(x.imag, 2)) arg = math.atan(x.imag/x.real) print('Norm:', norm) print('Arg:', arg) "
```

Our model doesn't know to output the string "Norm", "Arg".

May I ask if you have any plans to release the relevant evaluation code or provide some ideas?

Guía de contribución

No hay ninguna guía de contribución indexada para este repositorio

Evaluación

Este issue todavía no se ha evaluado.

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.