Metadata-Version: 2.1
Name: trainlog
Version: 0.1
Summary: A simple logging library, designed for deep learning
Home-page: https://github.com/DouglasOrr/TrainLog
Author: Douglas Orr
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown

# Trainlog

A simple logging library, designed for deep learning.

Trainlog's aim is to make it easy to create a single file containing all
key info about a training run. We prioritize convenience and ease of use
over efficiency.

 - [Documentation](https://douglasorr.github.io/TrainLog/latest/)
 - [Code](https://github.com/DouglasOrr/TrainLog)

## Example

Code to generate the log looks like this:

```python
import trainlog as L

with L.logger.open("log.jsonl", lr=0.01) as logger:
    logger.add("step", loss=10)
    logger.add("step", loss=5)
    logger.add("step", loss=2.5)
```

You can inspect the log using standard tools `gzip -cd log.jsonl.gz | jq -Cc . | less -R`.

Code to analyse the log looks like this:

```python
import trainlog as L
import trainlog.ops as O

log = L.logs.open("log.jsonl.gz")
log = log.apply(O.header("lr"), O.count("step"))
df = log["step"].to_pandas()
print(df)
```

## See also

 - [Design rationale](https://github.com/DouglasOrr/TrainLog/tree/master/doc/design.md)
 - [Developing trainlog yourself](https://github.com/DouglasOrr/TrainLog/tree/master/doc/development.md)


