From 951cd00ed8102744a4c9c3baff262d627b9a3edb Mon Sep 17 00:00:00 2001 From: Eason <30045503+Eason0729@users.noreply.github.com> Date: Thu, 13 Jun 2024 00:15:13 +0800 Subject: [PATCH] swap max min --- tank-rust/src/dqn/collect.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tank-rust/src/dqn/collect.rs b/tank-rust/src/dqn/collect.rs index e1074b3..43aa721 100644 --- a/tank-rust/src/dqn/collect.rs +++ b/tank-rust/src/dqn/collect.rs @@ -16,6 +16,7 @@ pub struct App<'a> { last_state_action: Option<(Info<'a>, Action)>, #[cfg(feature = "train")] outlet: BufWriter, + #[cfg(feature = "train")] explore_rate: f32, }