axonml-tensor
N-dimensional tensor operations for the Axonml ML framework.
Overview
axonml-tensor provides efficient tensor operations including:
- N-dimensional Arrays - Arbitrary shapes and strides
- Broadcasting - NumPy-compatible broadcasting rules
- Arithmetic - Add, subtract, multiply, divide, matmul
- Reductions - Sum, mean, max, min along dimensions
- Activations - ReLU, Sigmoid, Tanh, Softmax, GELU
Usage
use ;
// Create tensors
let a = ;
let b = ;
let c = ;
// Operations
let d = a.add.unwrap;
let e = c.matmul.unwrap;
let f = e.relu;
Part of Axonml
This crate is part of the Axonml ML framework.
License
MIT OR Apache-2.0