neptune_sync {neptune} | R Documentation |
Synchronizes the run with with Neptune servers.
Description
Synchronizes the run with Neptune servers.
Usage
neptune_sync(run, wait=TRUE)
Arguments
run |
Neptune run object. |
wait |
logical - If TRUE the client will first wait to send all tracked metadata to the server. This makes the call synchronous, see Connection modes guide. |
Value
None
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")
run['lr'] <- 0.001
neptune_sync(run)
## End(Not run)
[Package neptune version 0.2.3 Index]