You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
前面比较两个观点的时候代码是:
for i,idea_1 in enumerate(ideas):
for j,idea_2 in enumerate(ideas):
if i != j:
tasks.append(judge_idea(i,j,idea_1,idea_2,topic,self.llm))
会出现某一对代码被比较两次的情况(1,2),(2,1),两次的评分可能不同,最后elo的时候会不会有影响?