Skip to content

Commit c76d772

Browse files
committed
Add support for different TFDS BuilderConfigs
1 parent 7eeaf52 commit c76d772

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)