mirror of
https://github.com/huggingface/candle.git
synced 2025-06-16 10:38:54 +00:00
Fixes for the stable diffusion example. (#342)
* Fixes for the stable diffusion example. * Bugfix. * Another fix. * Fix for group-norm. * More fixes to get SD to work.
This commit is contained in:
@ -30,8 +30,8 @@ use test_utils::to_vec3_round;
|
||||
#[test]
|
||||
fn group_norm() -> Result<()> {
|
||||
let device = &Device::Cpu;
|
||||
let w = Tensor::new(&[1f32], device)?;
|
||||
let b = Tensor::new(&[0f32], device)?;
|
||||
let w = Tensor::from_vec(vec![1f32; 6], 6, device)?;
|
||||
let b = Tensor::from_vec(vec![0f32; 6], 6, device)?;
|
||||
let gn2 = GroupNorm::new(w.clone(), b.clone(), 6, 2, 1e-5)?;
|
||||
let gn3 = GroupNorm::new(w, b, 6, 3, 1e-5)?;
|
||||
|
||||
|
Reference in New Issue
Block a user