I'm trying to read a csv with cudf. It work nicely but when I try to get the content of the columns, it seems that cudf is not recognizing them at all. It's a very odd behavior :
Here is the code :
And here is the error :
any help please?
thanks
I'm trying to read a csv with cudf. It work nicely but when I try to get the content of the columns, it seems that cudf is not recognizing them at all. It's a very odd behavior :
Here is the code :
And here is the error :
any help please?
thanks
Resolved ! the issue was in the csv file. The format wasn't appropriate (because I created it in Excel with UTF-08 csv...) apparently cudf.read_csv doesnt recognize it. But anyways, it worked. Thanks –