From 8ca74de5c045d1f389ed9665c38d1896e7eaf69a Mon Sep 17 00:00:00 2001 From: Jack Xia <144161208+jackx111@users.noreply.github.com> Date: Thu, 29 Aug 2024 10:42:31 -0400 Subject: [PATCH] 21424: Adjusts feature attributes for ordinal warning (#38) --- howso_engine_rl_recipes/wafer_thin_mint/agent/basic_agent.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/howso_engine_rl_recipes/wafer_thin_mint/agent/basic_agent.py b/howso_engine_rl_recipes/wafer_thin_mint/agent/basic_agent.py index 4791ff0..4e23f35 100644 --- a/howso_engine_rl_recipes/wafer_thin_mint/agent/basic_agent.py +++ b/howso_engine_rl_recipes/wafer_thin_mint/agent/basic_agent.py @@ -34,8 +34,8 @@ def setup(self) -> None: self.desired_score = 1 self.features = { - 'wafer_count': {'type': 'ordinal'}, - 'score': {'type': 'ordinal'}, + 'wafer_count': {'type': 'ordinal', 'data_type': 'number'}, + 'score': {'type': 'ordinal', 'data_type': 'number'}, 'action': { 'type': 'nominal', 'data_type': 'number',