Learn R Programming

neptune (version 0.1.2)

get_neptune: Get 'Neptune' experiment object

Description

It gets 'Neptune' experiment object so that it can be used directly. 'Neptune' is a lightweight experiment tracking tool, for more information see <https://neptune.ai/>.

Usage

get_neptune()

Arguments

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')

# Fetch Neptune logger object
npt = get_neptune()

# Create experiment
npt$create_experiment(name = 'my first experiment')

# Start logging
npt$log_metric('auc', 0.45)

# Stop logging
npt$stop()
# 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