Remove the parameters for the Wuerstchen layer-norm. (#879)

* Remove the parameters for the Wuerstchen layer-norm.

* Fixes.

* More fixes (including conv-transpose2d.

* More fixes.

* Again more fixes.
This commit is contained in:
Laurent Mazare
2023-09-17 15:59:27 +01:00
committed by GitHub
parent 5f83c13f17
commit 06cc329e71
5 changed files with 45 additions and 45 deletions

View File

@ -302,7 +302,7 @@ pub fn conv_transpose2d_no_bias(
up: bound,
};
let ws = vb.get_with_hints(
(out_channels, in_channels, kernel_size, kernel_size),
(in_channels, out_channels, kernel_size, kernel_size),
"weight",
init,
)?;