lazyscribe-yaml is a lightweight package that adds the following artifact handlers for lazyscribe:
yaml
Python 3.10 or above is required. Use pip to install:
$ python -m pip install lazyscribe-yamlTo use this library, simply log an artifact to a lazyscribe experiment or repository with handler="yaml".
from lazyscribe import Project
project = Project("project.json", mode="w")
with project.log("My experiment") as exp:
exp.log_artifact(name="feature-names", value=["a", "b", "c"], handler="yaml")
project.save()