From cf7059aab8c6b096e7569d4902868633a1993054 Mon Sep 17 00:00:00 2001 From: louisfd Date: Thu, 25 Jan 2024 10:07:00 -0500 Subject: [PATCH] clippy --- burn-core/src/nn/rnn/lstm.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() {