We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65815ac commit 43d1e2eCopy full SHA for 43d1e2e
onnx_diagnostic/helpers/_log_helper.py
@@ -260,17 +260,17 @@ def open_dataframe(
260
if isinstance(data, pandas.DataFrame):
261
return data
262
if isinstance(data, str):
263
- df = pandas.read_csv(data)
+ df = pandas.read_csv(data, low_memory=False)
264
df["RAWFILENAME"] = data
265
return df
266
if isinstance(data, tuple):
267
if not data[-1]:
268
- df = pandas.read_csv(data[2])
+ df = pandas.read_csv(data[2], low_memory=False)
269
df["RAWFILENAME"] = data[2]
270
271
zf = zipfile.ZipFile(data[-1])
272
with zf.open(data[2]) as f:
273
- df = pandas.read_csv(f)
+ df = pandas.read_csv(f, low_memory=False)
274
df["RAWFILENAME"] = f"{data[-1]}/{data[2]}"
275
zf.close()
276
0 commit comments