You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by GitBox <gi...@apache.org> on 2019/02/14 19:19:51 UTC

[GitHub] Ishitori commented on issue #14074: How get mean.bin (from captcha recognition)?

Ishitori commented on issue #14074: How get mean.bin (from captcha recognition)?
URL: https://github.com/apache/incubator-mxnet/issues/14074#issuecomment-463756336
 
 
   It seems the file is lost, but you can recreate it. Basically, mean.bin is a mean image: every pixel of this image is a mean value of pixels on that position of all training images. That mean image is used to normalize every image during training and prediction.
   
   You can recreate this file by:
   - Take all training images tensors and sum them up
   - Divide resulting tensor to number of training images 
   - Resulting tensor is a mean image - save it to file with mean.bin file name.
   
   Also, if you do all of this and it will work, please contribute back to S3!

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services