'invalid value encountered in double_scalars' warning, possibly numpy

前端 未结 7 1241
一向
一向 2020-12-03 09:34

As I run my code I get these warnings, always in groups of four, sporadically. I have tried to locate the source by placing debug messages before and after certain statement

7条回答
  •  独厮守ぢ
    2020-12-03 10:01

    Sometimes NaNs or null values in data will generate this error with Numpy. If you are ingesting data from say, a CSV file or something like that, and then operating on the data using numpy arrays, the problem could have originated with your data ingest. You could try feeding your code a small set of data with known values, and see if you get the same result.

提交回复
热议问题