-
Notifications
You must be signed in to change notification settings - Fork 5.3k
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
Update Action Graph Solver Version 0.1 #1428
Conversation
Codecov ReportAttention: Patch coverage is
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## action_graph #1428 +/- ##
=================================================
- Coverage 62.34% 35.57% -26.78%
=================================================
Files 283 284 +1
Lines 17371 17518 +147
=================================================
- Hits 10830 6232 -4598
- Misses 6541 11286 +4745 ☔ View full report in Codecov by Sentry. |
@@ -0,0 +1,1319 @@ | |||
{"question":"Janet\u2019s ducks lay 16 eggs per day. She eats three for breakfast every morning and bakes muffins for her friends every day with four. She sells the remainder at the farmers' market daily for $2 per fresh duck egg. How much in dollars does she make every day at the farmers' market?","answer":"Janet sells 16 - 3 - 4 = <<16-3-4=9>>9 duck eggs a day.\nShe makes 9 * 2 = $<<9*2=18>>18 every day at the farmer\u2019s market.\n#### 18"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why not load hf dataset directly
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
有关HotPotQA与GSM8k数据集评测的内容之后@issacjinyu来再做一次提交
examples/ags/w_action_node/utils.py
Outdated
|
||
return test_cases | ||
|
||
async def llm_extract_test_case(id, problem_description: str, file_path:str="public_test.jsonl"): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
put test_case in your ut files?
Features