Metadata-Version: 2.1
Name: kappabenchmark
Version: 0.0.0
Summary: pytorch dataset wrappers for in-memory caching
Home-page: https://github.com/BenediktAlkin/KappaBenchmark
Project-URL: Source Code, https://github.com/BenediktAlkin/KappaBenchmark
Project-URL: Bug Tracker, https://github.com/BenediktAlkin/KappaBenchmark/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# KappaBenchmark

[![publish](https://github.com/BenediktAlkin/KappaBenchmark/actions/workflows/publish.yaml/badge.svg)](https://github.com/BenediktAlkin/KappaBenchmark/actions/workflows/publish.yaml)

Utilities for benchmarking [pytorch](https://pytorch.org/) applications.
- [Dataloading](https://github.com/BenediktAlkin/KappaBenchmark#dataloading)

## Dataloading


```
import kappabenchmark as kbm
dataloader = ...
result = kbm.benchmark_dataloading(
    dataloader=dataloader,
    num_epochs=...,
)
```
