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