Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

"""
todo: We are working on providing the data files that are necessary to run ICPC25 evaluation.
todo: We are working on providing the data files that are necessary to run ICPC evaluation.
"""

# settings that define how evaluation should be done by default (all can be changed from cmdline)
Expand Down
1 change: 1 addition & 0 deletions nemo_skills/evaluation/metrics/icpc_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ def extract_info(self, submission) -> dict:
return {
"score": submission["test_case_results"]["score"],
"sample_score": submission["test_case_results"]["sample_score"],
"tokens": submission["num_generated_tokens"],
"code": extract_final_cpp_block(submission["generation"]),
}

Expand Down