helena 0.1.0

Core types and component interfaces for helena, a latent data-to-waveform generation platform.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::{Error, Tensor};

use super::*;

fn tensor(shape: [usize; 2], data: Vec<f32>) -> Tensor {
    Tensor::new(shape, data).unwrap()
}

mod density;
mod guidance;
mod level;
mod ops;
mod properties;
mod schedule;
mod serialization;