Recent content by ManYu

  1. M

    Real-Time Video Super-Resolution Challenge

    We won't apply any post-processing on your output_tflite nor output_submit. We simply read your submit.png to numpy array and expect the value to be the same as your tflite output, which means the pixel value of your output_submit is in a range of 0-255, then the direct tflite output (the actual...
  2. M

    Real-Time Video Super-Resolution Challenge

    Instead of saving the tflite output to images(cv2.imwrite), we will load your provided result images and check the consistency directly on the tflite model output. It is expected that the returned submission status is failed because the reconstructed frames and README are not included. And you...
  3. M

    Real-Time Video Super-Resolution Challenge

    (1) The rule is applied in the test set (2) You should clamp the values in your tflite model.
  4. M

    Real-Time Video Super-Resolution Challenge

    Yes, that is correct.
  5. M

    Real-Time Video Super-Resolution Challenge

    (1) (2) To be marked as valid submission, your score should meet the following rule: - The hard constraint of PSNR and latency: PSNR [dB]: must be larger than 27dB; otherwise, the result would not be graded. Latency per frame [ms]: must be lower than 33ms; otherwise, the result would not be...
  6. M

    Real-Time Video Super-Resolution Challenge

    Please find the submission guideline at “Participate” and follow the instructions. You have a maximum of three submission in the test phase, and we will grade your last one. Thank you for the notice, we have fixed the typo. Q1. Yes, that is correct. Q2. You can specified all implementation for...
  7. M

    Real-Time Video Super-Resolution Challenge

    Yes, power is weighted for this challenge. As the real video SR use case is expected to be minutes+. This puts power consumption the first priority for the task. In this challenge, we try to set the PSNR/latency as the hard constraint for the task (minimum requirements for the user experience)...
  8. M

    Real-Time Video Super-Resolution Challenge

    Sorry for the previous mistake. We will grade your submissions based on the scoring policy for the final ranking of the competition. And to be eligible for prizes (not disqualified!), your total score should be higher than the baseline. That is, your total score should be higher than 71.399. The...
  9. M

    Real-Time Video Super-Resolution Challenge

    1. Sorry for the mistake. We will grade your submissions based on the scoring policy for the final ranking of the competition. And to be eligible for prizes (not disqualified!), your total score should be higher than the baseline. That is, your total score should be higher than 71.399. 2. Due...
  10. M

    Real-Time Video Super-Resolution Challenge

    Yes, that is correct.
  11. M

    Real-Time Video Super-Resolution Challenge

    1. There might be some measurement error in the automatic evaluation pipeline. We will manually measure all submissions in the final phase. 2. There are no restrictions to the data type and data range of your model. However, the input data range for inference is [0, 255]. You need to...
  12. M

    Real-Time Video Super-Resolution Challenge

    Please check your “readme.txt” in your submission and make sure you follow the submission guideline.
  13. M

    Real-Time Video Super-Resolution Challenge

    Thank you for the notice. We have fixed the calculation error on the webpage.
  14. M

    Real-Time Video Super-Resolution Challenge

    Your model is not fully quantized, therefore the model is inferenced on CPU. (Filter weight is int8 and bias weight is float32, that is not supported on our platform)
  15. M

    Real-Time Video Super-Resolution Challenge

    We had addressed some technical issues with the evaluation server, we will have a system update soon.
Top