log_files()
Python package: neptune-scale
Appends a file value and uploads the file contents at a particular step.
Pass the data as a dictionary {key: value}
with:
key
: path to the attribute where the series is stored in the run.value
: a file value to append to the series.
The files are uploaded to the Neptune object storage and the attributes are set to point to the uploaded files.
Parameters
Example
from neptune_scale import Run
run = Run(...)
# for step in training loop
run.log_files(
files={"predictions/train": "output/train/predictions.png"},
step=1,
)