update module docs and sphinx config

This commit is contained in:
2026-03-07 19:46:00 -08:00
parent e867bc0e7f
commit c2e4294c8c
11 changed files with 241 additions and 238 deletions

View File

@@ -1,5 +1,6 @@
# Overview
Package summary goes here, ideally with a diagram
Minimal framework for ML modeling, supporting advanced dataset operations and
streamlined training workflows.
# Install
The `trainlib` package can be installed from PyPI:
@@ -85,7 +86,7 @@ pip install trainlib
class SequenceDataset[I, **P](HomogenousDataset[int, I, I, P]):
...
class TupleDataset[I](SequenceDataset[tuple[I, ...], ??]):
class TupleDataset[I](SequenceDataset[tuple[I, ...], "?"]):
...
```