Learn R Programming

neptune (version 0.1.2)

set_property: Set a property to 'Neptune' experiment

Description

It logs a property:value pair to 'Neptune' Experiment. 'Neptune' is a lightweight experiment tracking tool, for more information see <https://neptune.ai/>.

Usage

set_property(property, value)

Arguments

property

string, a name of the property that you want to log to Neptune

value

string, a value of the property that you want to log to Neptune

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.
init_neptune(api_token = 'ANONYMOUS',
             project_name = 'shared/r-integration')

# Start logging
create_experiment(name = 'my first experiment')
set_property(property = 'data-version', value = 'asd19210u1asd')
log_metric('accuracy', 0.92)

# Stop logging
stop_experiment()
# See an example experiment here https://ui.neptune.ai/o/shared/org/r-integration/e/RIN-56/logs
# }

Run the code above in your browser using DataLab