DeepFashion2 Challenge 2020 - Track 1 Clothes Landmark Estimation Forum

Go back to competition Back to thread list Post in this thread

> Submission Problem, Help, pleasse!

I' ve tried to submit the results of test_keypoints with the zipped format for several times, but it shows "failed" and without any error description, would you give me a favor? I will very appreciate it, thank you.

Posted by: MengRongye @ March 17, 2020, 1:39 a.m.

During test in phase 2, if you can submit your results but can not get the score due to the large number of detected items, please convert your result json file to test_keypoints.txt and then submit the zipped file. You can use the following script:

resFile = '/.../test_keypoints.json'
res = json.load(open(resFile))
file = open('/.../test_keypoints.txt', 'a')
for ann in res:
file.write(json.dumps(ann))
file.write('\n')
file.close()

Please note that both .json and .txt can be evaluated in the server during test in phase 2now.

Posted by: geyuying @ March 17, 2020, 6:05 a.m.
Post in this thread