Commit 971c395c by libei

add rerank.py to recover the index of input data

parent 4d03d505
import sys
fr= open(sys.argv[1],'r',encoding="utf-8")
fw = open(sys.argv[2],'w',encoding="utf-8")
dict = {}
count = 0
for line in fr.readlines():
line = line.strip().replace('\n','').split('\t')
dict[int(line[0])]=line[1]
count+=1
#print(count)
sorted_list = sorted(dict.items(),key=lambda x:x[0])
for item in sorted_list:
fw.write(item[1]+'\n')
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论