Merge pull request #1239 from dedeswim/parser-fix

Add support for different TFDS `BuilderConfig`s
pull/1414/head
Ross Wightman 2 years ago committed by GitHub
commit 9c321be330
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -11,7 +11,7 @@ def create_parser(name, root, split='train', **kwargs):
prefix = ''
if len(name) > 1:
prefix = name[0]
name = name[-1]
name = "/".join(name[1:])
# FIXME improve the selection right now just tfds prefix or fallback path, will need options to
# explicitly select other options shortly

Loading…
Cancel
Save