You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "cat_test.py", line 4, in <module>
df1 = pd.read_csv("categories.json", dtype={"one": "int64", "two": "category"})
File "/localdisk/gashiman/modin/modin/pandas/io.py", line 111, in parser_func
return _read(**kwargs)
File "/localdisk/gashiman/modin/modin/pandas/io.py", line 124, in _read
pd_obj = BaseFactory.read_csv(**kwargs)
File "/localdisk/gashiman/modin/modin/data_management/factories.py", line 69, in read_csv
return cls._determine_engine()._read_csv(**kwargs)
File "/localdisk/gashiman/modin/modin/data_management/factories.py", line 73, in _read_csv
return cls.io_cls.read_csv(**kwargs)
File "/localdisk/gashiman/modin/modin/engines/base/io/file_reader.py", line 29, in read
query_compiler = cls._read(*args, **kwargs)
File "/localdisk/gashiman/modin/modin/engines/base/io/text/csv_reader.py", line 199, in _read
dtypes = cls.get_dtypes(dtypes_ids)
File "/localdisk/gashiman/modin/modin/backends/pandas/parsers.py", line 61, in get_dtypes
pandas.concat(cls.materialize(dtypes_ids), axis=1)
File "/nfs/site/home/gashiman/.local/lib/python3.7/site-packages/pandas/core/reshape/concat.py", line 281, in concat
sort=sort,
File "/nfs/site/home/gashiman/.local/lib/python3.7/site-packages/pandas/core/reshape/concat.py", line 329, in __init__
raise ValueError("No objects to concatenate")
ValueError: No objects to concatenate
Source code / logs
The text was updated successfully, but these errors were encountered:
System information
Ubuntu 19.10
modin.__version__
):0.7.2+66.g272ac5d.dirty
Python 3.7.5
Describe the problem
Pandas apparently is able to load the following file as a CSV :)
while on Modin I get an exception like this:
Source code / logs
The text was updated successfully, but these errors were encountered: