leibniz 0.2.0

The package provides a differentiable vector graphics rasterization loss.
Documentation
1
2
3
4
5
6
7
8
9
//! Tensor aliases.

use ::burn::tensor::Tensor;

/// Grayscale targets with shape `[layouts, height, width]`.
pub type Targets<B> = Tensor<B, 3>;

/// Scalar value with shape `[1]`.
pub type Value<B> = Tensor<B, 1>;