neptune_assign {neptune}R Documentation

Assigns the provided value to the field.

Description

Assigns the provided value to the field.

Usage

neptune_assign(x, value, wait=FALSE)

Arguments

x

Field or run, for which we want to assign the value

value

Value to be stored in a field.

wait

logical - If TRUE the client will wait to send all tracked metadata to the server. This makes the call synchronous.

Value

None

Author(s)

Authors:

See Also

Useful links:

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")
neptune_assign(run['parameters'], list(epochs=100, lr=0.01))

## End(Not run)

[Package neptune version 0.2.3 Index]