View source on GitHub |
Path to tensorflow_datasets/
root dir.
tfds.core.tfds_path(
*relative_path
) -> tfds.core.Path
The following examples are equivalent:
path = tfds.core.tfds_path() / 'path/to/data.txt'
path = tfds.core.tfds_path('path/to/data.txt')
path = tfds.core.tfds_path('path', 'to', 'data.txt')
Args | |
---|---|
*relative_path
|
Relative path, eventually to concatenate. |
Returns | |
---|---|
path
|
The root TFDS path. |