summaryrefslogtreecommitdiff
path: root/candle-nn
diff options
context:
space:
mode:
Diffstat (limited to 'candle-nn')
-rw-r--r--candle-nn/src/conv.rs16
1 files changed, 13 insertions, 3 deletions
diff --git a/candle-nn/src/conv.rs b/candle-nn/src/conv.rs
index cc9273ca..03b69bbd 100644
--- a/candle-nn/src/conv.rs
+++ b/candle-nn/src/conv.rs
@@ -76,7 +76,7 @@ pub struct ConvTranspose1dConfig {
pub output_padding: usize,
pub stride: usize,
pub dilation: usize,
- // TODO: support groups.
+ pub groups: usize,
}
impl Default for ConvTranspose1dConfig {
@@ -86,6 +86,7 @@ impl Default for ConvTranspose1dConfig {
output_padding: 0,
stride: 1,
dilation: 1,
+ groups: 1,
}
}
}
@@ -127,6 +128,7 @@ impl crate::Module for ConvTranspose1d {
self.config.output_padding,
self.config.stride,
self.config.dilation,
+ self.config.groups,
)?;
match &self.bias {
None => Ok(x),
@@ -346,7 +348,11 @@ pub fn conv_transpose1d(
lo: -bound,
up: bound,
};
- let ws = vb.get_with_hints((in_channels, out_channels, kernel_size), "weight", init)?;
+ let ws = vb.get_with_hints(
+ (in_channels, out_channels / cfg.groups, kernel_size),
+ "weight",
+ init,
+ )?;
let bs = vb.get_with_hints(out_channels, "bias", init)?;
Ok(ConvTranspose1d::new(ws, Some(bs), cfg))
}
@@ -363,7 +369,11 @@ pub fn conv_transpose1d_no_bias(
lo: -bound,
up: bound,
};
- let ws = vb.get_with_hints((in_channels, out_channels, kernel_size), "weight", init)?;
+ let ws = vb.get_with_hints(
+ (in_channels, out_channels / cfg.groups, kernel_size),
+ "weight",
+ init,
+ )?;
Ok(ConvTranspose1d::new(ws, None, cfg))
}