neptune_get_structure {neptune} | R Documentation |
Returns a run's metadata structure in form of a named list.
Description
Returns a run's metadata structure in form of a named list. This method can be used to traverse the run's metadata structure programmatically when using Neptune in automated workflows.
Usage
neptune_get_structure(run)
Arguments
run |
Neptune run object. |
Value
Named list containing all metadata stored for run
Author(s)
Authors:
Mateusz Dominiak
Maintainer: Neptune DevTeam Devbackend@neptune.ai
See Also
Useful links:
Documentation https://docs.neptune.ai/
Report bugs at https://github.com/neptune-ai/neptune-r/issues
Examples
## Not run:
# We are using api token for an anonymous user neptuner. For your projects use your private token.
run <- neptune_init(api_token = 'ANONYMOUS',
project = "common-r/quickstarts")
str <- neptune_get_structure(run)
## End(Not run)
[Package neptune version 0.2.3 Index]