Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support converters in CsvBuilder #5057

Merged
merged 1 commit into from Oct 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/datasets/packaged_modules/csv/csv.py
@@ -1,6 +1,6 @@
import itertools
from dataclasses import dataclass
from typing import List, Optional, Union
from typing import Any, Callable, Dict, List, Optional, Union

import pandas as pd
import pyarrow as pa
Expand Down Expand Up @@ -33,6 +33,7 @@ class CsvConfig(datasets.BuilderConfig):
prefix: Optional[str] = None
mangle_dupe_cols: bool = True
engine: Optional[str] = None
converters: Dict[Union[int, str], Callable[[Any], Any]] = None
true_values: Optional[list] = None
false_values: Optional[list] = None
skipinitialspace: bool = False
Expand Down Expand Up @@ -80,6 +81,7 @@ def read_csv_kwargs(self):
prefix=self.prefix,
mangle_dupe_cols=self.mangle_dupe_cols,
engine=self.engine,
converters=self.converters,
true_values=self.true_values,
false_values=self.false_values,
skipinitialspace=self.skipinitialspace,
Expand Down
26 changes: 25 additions & 1 deletion tests/packaged_modules/test_csv.py
Expand Up @@ -70,6 +70,22 @@ def csv_file_with_label(tmp_path):
return str(filename)


@pytest.fixture
def csv_file_with_int_list(tmp_path):
filename = tmp_path / "csv_with_int_list.csv"
data = textwrap.dedent(
"""\
int_list
1 2 3
4 5 6
7 8 9
"""
)
with open(filename, "w") as f:
f.write(data)
return str(filename)


def test_csv_generate_tables_raises_error_with_malformed_csv(csv_file, malformed_csv_file, caplog):
csv = Csv()
generator = csv._generate_tables([[csv_file, malformed_csv_file]])
Expand All @@ -96,7 +112,6 @@ def test_csv_cast_image(csv_file_with_image):
assert generated_content == [{"path": image_file, "bytes": None}]


@require_pil
def test_csv_cast_label(csv_file_with_label):
with open(csv_file_with_label, encoding="utf-8") as f:
labels = f.read().splitlines()[1:]
Expand All @@ -106,3 +121,12 @@ def test_csv_cast_label(csv_file_with_label):
assert pa_table.schema.field("label").type == ClassLabel(names=["good", "bad"])()
generated_content = pa_table.to_pydict()["label"]
assert generated_content == [ClassLabel(names=["good", "bad"]).str2int(label) for label in labels]


def test_csv_convert_int_list(csv_file_with_int_list):
csv = Csv(encoding="utf-8", sep=",", converters={"int_list": lambda x: [int(i) for i in x.split()]})
generator = csv._generate_tables([[csv_file_with_int_list]])
pa_table = pa.concat_tables([table for _, table in generator])
assert pa.types.is_list(pa_table.schema.field("int_list").type)
generated_content = pa_table.to_pydict()["int_list"]
assert generated_content == [[1, 2, 3], [4, 5, 6], [7, 8, 9]]