Skip to content

software maestro 2018 backend - image retrieval contest evaluation server

License

Notifications You must be signed in to change notification settings

justinbuzzni/swmaestro_image_retrieval_evaluator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

swmaestro_image_retrieval_evaluator

software maestro 2018 backend - image retrieval contest evaluation server

system_result_dict = {}
for each in glob("/home/maestro_2018/test/img/query/*"):
  fname = each.split("/")[-1]
  score_dict = {}
  for other in glob("/home/maestro_2018/test/img/compare/*"):
      fname2 = other.split("/")[-1]
      dist = cosine(img_feature_dict[fname], img_feature_dict[fname2])
      score_dict[fname2] = dist
  sorted_list = sorted(score_dict.items(), key=lambda (k,v):(v,k), reverse=False)
  qid = fname.split("_")[-1].split(".")[0]
  system_result_dict[qid] = map(lambda i : i[0], sorted_list[:20])
        
name = 'buzzni-200'
nickname = 'buzzni-200'
r = requests.post('http://eval.buzzni.net:31000', json={"pred_result": system_result_dict,'name':name, 'nickname':nickname})
print r.json()
  • 버즈니에서 개발자 채용을 하고 있습니다 관심 있는 분들은 recruit@buzzni.com 로 연락 주세요. 전문연구요원, 보충역 가능합니다.

About

software maestro 2018 backend - image retrieval contest evaluation server

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages