Skip to content

Commit 9c321be

Browse files
authored
Merge pull request #1239 from dedeswim/parser-fix
Add support for different TFDS `BuilderConfig`s
2 parents 754e114 + c76d772 commit 9c321be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

timm/data/parsers/parser_factory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def create_parser(name, root, split='train', **kwargs):
1111
prefix = ''
1212
if len(name) > 1:
1313
prefix = name[0]
14-
name = name[-1]
14+
name = "/".join(name[1:])
1515

1616
# FIXME improve the selection right now just tfds prefix or fallback path, will need options to
1717
# explicitly select other options shortly

0 commit comments

Comments
 (0)