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

[Croissant] Update data field in new splits recordset #3087

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update croissant_crumbs.py
  • Loading branch information
ccl-core authored Oct 22, 2024
commit 49294746b3916b2d70033179a6d3d0bb0226940f
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def get_croissant_crumbs_from_dataset_infos(
"name": split_record_set_name,
"description": f"Splits for the {record_set_name} config.",
"field": [split_field],
"data": [{"split_name": split_name} for split_name in splits],
"data": [{f"{split_record_set_name}/split_name": split_name} for split_name in splits],
}
)
)
Expand Down
Loading