-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bugs in evaluation scripts #44
Comments
Hi! |
Thank you for your updating!
Additionally, for |
Thanks! We have fixed them. For answer types such as sf_local193, where two CSVs share the same format, we use "condition_cols": [0, 1, 2]. The evaluation scripts can then be extended accordingly. ( [0,1,2] -> [[0,1,2],[0,1,2]) |
sf_bq085:
condition_cols
should be [1, 2] rather than [2, 3]. There are only 3 columns in sf_bq085.csv.When invoking the
compare_multi_pandas_table
function, the order ofcsv_files
is the reverse ofcondition_cols
. For example, in sf_bq088, thecsv_files
are arranged as follows:However, the
condition_cols
are ordered as a, b, c. Similar reversals are observed in other cases requiring thecompare_multi_pandas_table
function.sf_bq341: The top two records have the same total value, so the
ignore_order
parameter should be set toTrue
.sf_local199: The
ignore_order
parameter should be set toTrue
.sf_local193: When comparing values containing "%", the comparison is performed as strings rather than as floats.
sf_bq121: The provided result is inconsistent with the result obtained from executing the gold SQL.
sf_bq406: Another sf_bq406b could be included in a column, following the format used in other examples with multiple answers.
sf_bq375: The file type of the answer should be
Java (.java)
as specified in the task description. Alternatively, a less strict approach would be to ignore this column.The text was updated successfully, but these errors were encountered: