
0 Follower
0 Following
daoyu_wang
Badges
0
0
0
Activity
Jul
Aug
Sep
Oct
Nov
Dec
Jan
Feb
Mar
Apr
May
Jun
Jul
Mon
Wed
Fri
Challenge Categories
Loading...
Challenges Entered
Improve RAG with Real-World Benchmarks | KDD Cup 2025
Latest submissions
Improve RAG with Real-World Benchmarks
Latest submissions
Participant | Rating |
---|
Participant | Rating |
---|
Meta Comprehensive RAG Benchmark: KDD Cup 2-9d1937
daoyu_wang has not provided any information yet.
Bug in mockapi
About 1 year agoWhen using an function music_grammy_get_award_date_by_artist(artist_name) in mockapi, it doesn’t return award date but award count like another function music_grammy_get_award_count_by_artist(artist_name).
I checked the source code in apiwrapper/pycragapi.py and found that both api use “url = self.server + ‘/music/grammy_get_award_count_by_song’”. However, although I modify it to “url = self.server + ‘/music/grammy_get_award_date_by_song’”, it doesn’t work.
After checking the output log from server, I found that the server doesn’t have a log of searching “/music/grammy_get_award_date_by_song’”. so I guess the database(or kg) lacks grammy_get_award_date_by_song.
2024/5/4 19.07: Sorry, now I modify “url = self.server + ‘/music/grammy_get_award_count_by_song’” to “url = self.server + ‘/music/grammy_get_award_date_by_song’”, it works!
But I hope the official commitee can modify it in source code!