log_string_series()
Python package: neptune-scale
Logs the specified series of text values to a Neptune run.
Pass the metadata as a dictionary {key: value}
with:
key
: path to where the metadata should be stored in the run.value
: a string value to append to the series.
In the attribute path, each forward slash /
nests the attribute under a namespace. Use namespaces to structure the metadata into meaningful categories.
Parameters
Example
from neptune_scale import Run
with Run(...) as run:
run.log_string_series(
data={"messages/errors": "Job failed", "messages/info": "Training completed"},
step=1.2,
)