Open LxYuan-Handshakes opened 2 years ago
Hi. The reason for missing 'gold_ind' in test set is that this is a private test set and you can only submit your results on leaderboard to get a result. Check FinQA code for more information. There is a solution for handling of private data, and that works for ConvFinQA.
Hi,
Currently I stuck at the retriever inference part. Got some errors because it looks for the
gold_ind
key in the test_turn.json data file but there is nogold_ind
in the test data right?The following is the error message:
Additional information
Also, i had to commented out the part that loads the test data in the
Main.py
training script so I could start training it.The reason is that, in
code/finqanet_retriever/finqa_utils.py
, it looks for thegold_ind
key in the given data file but the test json file doesnt have the key.