!pip install neptune-client==0.4.123
import neptune
# The init() function called this way assumes that
# NEPTUNE_API_TOKEN environment variable is defined by the integration.
neptune.init('<NEPTUNE_PROJECT_NAME>')
neptune.create_experiment(name='minimal_example')
# log some metrics
for i in range(100):
neptune.log_metric('loss', 0.95**i)
neptune.log_metric('AUC', 0.96)