Learn R Programming

neptune (version 0.2.3)

neptune_assign: 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

See Also

Useful links:

Examples

Run this code
# 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))
# }

Run the code above in your browser using DataLab