Trait candle_lora::Conv2dLayerLike
source · pub trait Conv2dLayerLike: Module + Debug + Saveable + Send + Sync {
// Required methods
fn weight(&self) -> &Tensor;
fn bias(&self) -> Option<&Tensor>;
fn config(&self) -> &Conv2dConfig;
}
Expand description
Any layer that is conv2d-like.