aprender 0.29.3

Next-generation ML framework in pure Rust — `cargo install aprender` for the `apr` CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Create Test Transformer APR

Generates a test APR v2 file with full transformer metadata for inference testing.
Creates a minimal decoder-only LLM with proper tensor structure, suitable for
verifying the APR format pipeline end-to-end.

## Run

```bash
cargo run --example create_test_transformer_apr
```

## Source

```rust,ignore
{{#include ../../../examples/create_test_transformer_apr.rs}}
```