reminisce commented on issue #9997: Flaky test: test_sparse_embedding
URL: 
https://github.com/apache/incubator-mxnet/issues/9997#issuecomment-371739006
 
 
   The `atol` cannot be zero here. When comparing two values, the following 
inequality is checked:
   `|a-b| < atol + b * rtol`.
   In this case, `a` and `b` are very close to zero, and `atol=0` makes the 
inequality unsatisfied.
   Suggest set `atol=1e-4` or `1e-3`.

----------------------------------------------------------------
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:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to