add voxcpm with some bug
This commit is contained in:
@@ -1 +1,279 @@
|
||||
use anyhow::{Result, anyhow};
|
||||
use candle_core::{D, DType, Device, Tensor};
|
||||
use candle_nn::{conv1d_no_bias, Conv1d, Conv1dConfig, Module};
|
||||
use hound::{SampleFormat, WavReader};
|
||||
use rocket::futures::future::ok;
|
||||
use rubato::{
|
||||
Resampler, SincFixedIn, SincInterpolationParameters, SincInterpolationType, WindowFunction,
|
||||
};
|
||||
use std::f64::consts::PI;
|
||||
use std::path::Path;
|
||||
|
||||
// 重采样方法枚举
|
||||
#[derive(Debug, Clone, Copy)]
|
||||
pub enum ResamplingMethod {
|
||||
SincInterpHann,
|
||||
SincInterpKaiser,
|
||||
}
|
||||
|
||||
// 计算最大公约数
|
||||
fn gcd(a: i64, b: i64) -> i64 {
|
||||
if b == 0 { a } else { gcd(b, a % b) }
|
||||
}
|
||||
|
||||
// 零阶修正贝塞尔函数 I0
|
||||
fn i0(x: f32) -> f32 {
|
||||
let mut result = 1.0;
|
||||
let mut term = 1.0;
|
||||
let half_x_sq = x * x / 4.0;
|
||||
|
||||
for k in 1..50 {
|
||||
term = term * half_x_sq / (k * k) as f32;
|
||||
result += term;
|
||||
|
||||
if term < 1e-12 {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
result
|
||||
}
|
||||
|
||||
// 获取sinc重采样核
|
||||
pub fn get_sinc_resample_kernel(
|
||||
orig_freq: i64,
|
||||
new_freq: i64,
|
||||
gcd_val: i64,
|
||||
lowpass_filter_width: i64,
|
||||
rolloff: f64,
|
||||
resampling_method: ResamplingMethod,
|
||||
beta: Option<f32>,
|
||||
device: &Device,
|
||||
) -> Result<(Tensor, i64)> {
|
||||
if orig_freq <= 0 || new_freq <= 0 {
|
||||
return Err(anyhow!("Frequencies must be positive".to_string()));
|
||||
}
|
||||
|
||||
if lowpass_filter_width <= 0 {
|
||||
return Err(anyhow!(
|
||||
"Low pass filter width should be positive".to_string()
|
||||
));
|
||||
}
|
||||
|
||||
let orig_freq = orig_freq / gcd_val;
|
||||
let new_freq = new_freq / gcd_val;
|
||||
|
||||
let base_freq = (orig_freq.min(new_freq) as f64) * rolloff;
|
||||
|
||||
let width_f = (lowpass_filter_width as f64) * (orig_freq as f64) / base_freq;
|
||||
let width = width_f.ceil() as i64;
|
||||
// 创建索引数组 [1, 1, 2*width + orig_freq_reduced]
|
||||
let idx = Tensor::arange(-width as f32, (width + orig_freq) as f32, device)?
|
||||
.affine(1.0 / orig_freq as f64, 0.0)?
|
||||
.unsqueeze(0)?
|
||||
.unsqueeze(0)?;
|
||||
// 创建时间数组 t [new_freq_reduced, 1, idx_len]
|
||||
let t = Tensor::arange_step(0.0, -new_freq as f32, -1.0, device)?
|
||||
.affine(1.0 / new_freq as f64, 0.0)?
|
||||
.unsqueeze(D::Minus1)?
|
||||
.unsqueeze(D::Minus1)?
|
||||
.broadcast_add(&idx)?
|
||||
.affine(base_freq, 0.0)?;
|
||||
let t = t.clamp(-lowpass_filter_width as f32, lowpass_filter_width as f32)?;
|
||||
// 计算窗口函数
|
||||
let window = match resampling_method {
|
||||
ResamplingMethod::SincInterpHann => {
|
||||
let window_arg = t.affine(PI / (lowpass_filter_width as f64) / 2.0, 0.0)?;
|
||||
window_arg.cos()?.sqr()?
|
||||
}
|
||||
ResamplingMethod::SincInterpKaiser => {
|
||||
let beta_val = beta.unwrap_or(14.769656459379492);
|
||||
let i0_beta = i0(beta_val);
|
||||
|
||||
let normalized_t = t.affine(1.0 / lowpass_filter_width as f64, 0.0)?;
|
||||
let arg = (1.0 - normalized_t.sqr()?)?;
|
||||
// 处理arg为负数的情况
|
||||
let sqrt_arg = arg.relu()?.sqrt()?;
|
||||
let sqrt_dims = sqrt_arg.dims();
|
||||
let sqrt_arg_vec = sqrt_arg.flatten_all()?.to_vec1::<f32>()?;
|
||||
|
||||
let window_val:Vec<f32> = sqrt_arg_vec.iter().map(|x| i0(beta_val * x) / i0_beta).collect();
|
||||
let window = Tensor::new(window_val, device)?.reshape(sqrt_dims)?;
|
||||
window
|
||||
}
|
||||
};
|
||||
|
||||
// 计算sinc核
|
||||
let scale = base_freq / (orig_freq as f64);
|
||||
let t_scaled = t.affine(PI, 0.0)?;
|
||||
|
||||
let t_zeros = Tensor::zeros_like(&t_scaled)?;
|
||||
let t_ones = Tensor::ones_like(&t_scaled)?;
|
||||
let mask = t_scaled.eq(&t_zeros)?;
|
||||
let sinc = mask.where_cond(&t_ones, &t_scaled.sin()?.div(&t_scaled)?)?;
|
||||
let kernels = sinc.mul(&window)?.affine(scale, 0.0)?;
|
||||
|
||||
Ok((kernels, width))
|
||||
}
|
||||
|
||||
// 应用sinc重采样核
|
||||
pub fn apply_sinc_resample_kernel(
|
||||
waveform: &Tensor,
|
||||
orig_freq: i64,
|
||||
new_freq: i64,
|
||||
gcd_val: i64,
|
||||
kernel: &Tensor,
|
||||
width: i64,
|
||||
) -> Result<Tensor> {
|
||||
let orig_freq = orig_freq / gcd_val;
|
||||
let new_freq = new_freq / gcd_val;
|
||||
|
||||
// 获取波形形状
|
||||
let dims = waveform.dims();
|
||||
let waveform_flat = waveform.reshape(((), dims[dims.len()-1]))?;
|
||||
|
||||
let (num_wavs, length) = waveform_flat.dims2()?;
|
||||
let padded_waveform = waveform.pad_with_zeros(D::Minus1, width as usize, (width+orig_freq) as usize)?;
|
||||
|
||||
// 添加通道维度 [batch_size, 1, padded_length]
|
||||
let waveform_3d = padded_waveform.unsqueeze(1)?;
|
||||
let config = Conv1dConfig {
|
||||
padding: 0,
|
||||
stride: orig_freq as usize,
|
||||
dilation: 1,
|
||||
groups: 1,
|
||||
cudnn_fwd_algo: None,
|
||||
};
|
||||
|
||||
let conv1d = Conv1d::new(kernel.clone(), None, config);
|
||||
// 执行卷积
|
||||
// kernel形状: [new_freq_reduced, 1, kernel_len]
|
||||
// 输出形状: [batch_size, new_freq_reduced, output_length]
|
||||
let conv_output = conv1d.forward(&waveform_3d)?;
|
||||
|
||||
// 转置并重塑 [batch_size, output_length * new_freq_reduced]
|
||||
let conv_transposed = conv_output.transpose(1, 2)?.reshape((num_wavs, ()))?;
|
||||
|
||||
// 计算目标长度
|
||||
let target_length =
|
||||
((new_freq as f64 * length as f64) / orig_freq as f64).ceil() as usize;
|
||||
|
||||
// 截取目标长度
|
||||
let resampled_flat =
|
||||
conv_transposed.narrow(1, 0, target_length.min(conv_transposed.dim(1)?))?;
|
||||
let mut new_dims = dims.to_vec();
|
||||
let last_dim = new_dims.len()-1;
|
||||
new_dims[last_dim] = resampled_flat.dim(1)?;
|
||||
// 恢复原始批次形状
|
||||
|
||||
let resampled = resampled_flat.reshape(new_dims)?;
|
||||
|
||||
Ok(resampled)
|
||||
}
|
||||
|
||||
// 主要的重采样函数
|
||||
pub fn resample(
|
||||
waveform: &Tensor,
|
||||
orig_freq: i64,
|
||||
new_freq: i64,
|
||||
lowpass_filter_width: i64,
|
||||
rolloff: f64,
|
||||
resampling_method: ResamplingMethod,
|
||||
beta: Option<f32>,
|
||||
) -> Result<Tensor> {
|
||||
if orig_freq <= 0 || new_freq <= 0 {
|
||||
return Err(anyhow!(
|
||||
"Frequencies must be positive".to_string(),
|
||||
));
|
||||
}
|
||||
|
||||
if orig_freq == new_freq {
|
||||
return Ok(waveform.clone());
|
||||
}
|
||||
|
||||
let gcd_val = gcd(orig_freq, new_freq);
|
||||
let device = waveform.device();
|
||||
|
||||
let (kernel, width) = get_sinc_resample_kernel(
|
||||
orig_freq,
|
||||
new_freq,
|
||||
gcd_val,
|
||||
lowpass_filter_width,
|
||||
rolloff,
|
||||
resampling_method,
|
||||
beta,
|
||||
&device,
|
||||
)?;
|
||||
let t = apply_sinc_resample_kernel(waveform, orig_freq, new_freq, gcd_val, &kernel, width)?;
|
||||
Ok(t)
|
||||
}
|
||||
|
||||
// 为方便使用提供的简化版本
|
||||
pub fn resample_simple(waveform: &Tensor, orig_freq: i64, new_freq: i64) -> Result<Tensor> {
|
||||
resample(
|
||||
waveform,
|
||||
orig_freq,
|
||||
new_freq,
|
||||
6,
|
||||
0.99,
|
||||
ResamplingMethod::SincInterpHann,
|
||||
None,
|
||||
)
|
||||
}
|
||||
|
||||
pub fn load_audio<P: AsRef<Path>>(path: P, device: Device) -> Result<(Tensor, usize)> {
|
||||
let mut reader = WavReader::open(path)?;
|
||||
let spec = reader.spec();
|
||||
let samples: Vec<f32> = match spec.sample_format {
|
||||
SampleFormat::Int => {
|
||||
// 将整数样本转换为浮点数 [-1.0, 1.0]
|
||||
let max_value = match spec.bits_per_sample {
|
||||
8 => i8::MAX as f32,
|
||||
16 => i16::MAX as f32,
|
||||
24 => 8388607.0,
|
||||
_ => {
|
||||
return Err(anyhow::anyhow!(
|
||||
"Unsupported bit depth: {}",
|
||||
spec.bits_per_sample
|
||||
));
|
||||
}
|
||||
};
|
||||
reader
|
||||
.samples::<i16>()
|
||||
.map(|s| s.map(|sample| sample as f32 / max_value))
|
||||
.collect::<Result<Vec<_>, _>>()?
|
||||
}
|
||||
SampleFormat::Float => {
|
||||
// 直接读取浮点数样本
|
||||
reader.samples::<f32>().collect::<Result<Vec<_>, _>>()?
|
||||
}
|
||||
};
|
||||
let sample_rate = spec.sample_rate;
|
||||
let mut audio_tensor = Tensor::from_slice(
|
||||
&samples,
|
||||
(
|
||||
samples.len() / spec.channels as usize,
|
||||
spec.channels as usize,
|
||||
),
|
||||
&device,
|
||||
)?
|
||||
.t()?;
|
||||
if spec.channels > 1 {
|
||||
// 对channel通道求平均, channel维度变为1
|
||||
audio_tensor = audio_tensor.mean_keepdim(0)?;
|
||||
}
|
||||
Ok((audio_tensor, sample_rate as usize))
|
||||
}
|
||||
|
||||
pub fn load_audio_with_resample<P: AsRef<Path>>(
|
||||
path: P,
|
||||
device: Device,
|
||||
target_sample_rate: Option<usize>,
|
||||
) -> Result<Tensor> {
|
||||
let (mut audio, sr) = load_audio(path, device)?;
|
||||
if target_sample_rate.is_some() && target_sample_rate.unwrap() as usize != sr {
|
||||
let target_sample_rate = target_sample_rate.unwrap();
|
||||
audio = resample_simple(&audio, sr as i64, target_sample_rate as i64)?;
|
||||
}
|
||||
Ok(audio)
|
||||
}
|
||||
|
||||
@@ -2,3 +2,4 @@ pub mod img_utils;
|
||||
pub mod tensor_utils;
|
||||
pub mod utils;
|
||||
pub mod video_utils;
|
||||
pub mod audio_utils;
|
||||
@@ -1,4 +1,4 @@
|
||||
use anyhow::{Result, anyhow};
|
||||
use anyhow::{anyhow, Ok, Result};
|
||||
use candle_core::{D, DType, Device, IndexOp, Tensor, shape::Dim};
|
||||
|
||||
pub fn prepare_causal_attention_mask(
|
||||
@@ -249,3 +249,18 @@ pub fn get_vision_next_indices(input_ids: &Tensor, token_id: u32) -> Result<Tens
|
||||
let indices = indices.broadcast_add(&Tensor::new(vec![1u32], input_ids.device())?)?;
|
||||
Ok(indices)
|
||||
}
|
||||
|
||||
pub fn linspace(start: f32, end: f32, steps: usize, device: &Device) -> Result<Tensor> {
|
||||
assert!(steps > 0, "steps must be > 0");
|
||||
if steps == 1 {
|
||||
let t = Tensor::from_slice(&[start], 1, device)?;
|
||||
return Ok(t);
|
||||
}
|
||||
let step_size = (end - start) / (steps-1) as f32;
|
||||
let data: Vec<f32> = (0..steps)
|
||||
.map(|i| start + i as f32 * step_size)
|
||||
.collect();
|
||||
|
||||
let t = Tensor::from_slice(&data, steps, device)?;
|
||||
Ok(t)
|
||||
}
|
||||
+3
-2
@@ -61,7 +61,7 @@ pub fn string_to_static_str(s: String) -> &'static str {
|
||||
Box::leak(s.into_boxed_str())
|
||||
}
|
||||
|
||||
pub fn find_safetensors_files(path: &str) -> Result<Vec<String>> {
|
||||
pub fn find_type_files(path: &str, extension_type: &str) -> Result<Vec<String>> {
|
||||
let mut files = Vec::new();
|
||||
|
||||
for entry in std::fs::read_dir(path)? {
|
||||
@@ -70,7 +70,7 @@ pub fn find_safetensors_files(path: &str) -> Result<Vec<String>> {
|
||||
|
||||
if file_path.is_file() {
|
||||
if let Some(extension) = file_path.extension() {
|
||||
if extension == "safetensors" {
|
||||
if extension == extension_type {
|
||||
files.push(file_path.to_string_lossy().to_string());
|
||||
}
|
||||
}
|
||||
@@ -80,6 +80,7 @@ pub fn find_safetensors_files(path: &str) -> Result<Vec<String>> {
|
||||
Ok(files)
|
||||
}
|
||||
|
||||
|
||||
pub fn round_by_factor(num: u32, factor: u32) -> u32 {
|
||||
let round = (num as f32 / factor as f32).round() as u32;
|
||||
round * factor
|
||||
|
||||
Reference in New Issue
Block a user