0 Follower
0 Following
daoyu_wang
Badges
0
0
0
Activity
Dec
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
Mon
Wed
Fri
Ratings Progression
Loading...
Challenge Categories
Loading...
Challenges Entered
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
8 months 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!