diff --git a/burn-core/src/nn/rnn/lstm.rs b/burn-core/src/nn/rnn/lstm.rs index 75766e6cf..bbf410a69 100644 --- a/burn-core/src/nn/rnn/lstm.rs +++ b/burn-core/src/nn/rnn/lstm.rs @@ -224,9 +224,9 @@ impl Lstm { mod tests { use super::*; use crate::{ - module::Param, nn::LinearRecord, record::Record, TestAutodiffBackend, TestBackend, + module::Param, nn::LinearRecord, TestAutodiffBackend, TestBackend, }; - use burn_tensor::{ops::BoolTensor, Bool, Data, Distribution, Shape}; + use burn_tensor::{Data, Distribution, Shape}; #[test] fn test_with_uniform_initializer() {