Simon Wong
Simon Wong

My use case was reading CSV files with empty arrays using pandas -- pandas will read arrays as numpy arrays and two empty numpy arrays cannot be equal
In my case it wasn't always empty. Another option could be to convert them to Python lists instead of `np.ndarray`
Yeah, on non-empty arrays it'll do a normal element wise comparison, but empty `np.array`s will never be equal
Hmm, it's possible that Facebook changed the data format for their exports. I haven't tried using this in a while. I will take a look
better in what way?