From 68c2830b529a9aefe81cd8b8dc942edfdaf73ff9 Mon Sep 17 00:00:00 2001 From: tnbeats <tnbeatsprod@gmail.com> Date: Sun, 19 Nov 2023 14:34:12 +0100 Subject: [PATCH] 22211572 --- Reinforcement_Learning/Perceptrons.py | 1 - .../{Solution_Testing.py => Solution_Testing_1.py} | 0 2 files changed, 1 deletion(-) rename Reinforcement_Learning/{Solution_Testing.py => Solution_Testing_1.py} (100%) diff --git a/Reinforcement_Learning/Perceptrons.py b/Reinforcement_Learning/Perceptrons.py index d3c37c2..66c47b5 100644 --- a/Reinforcement_Learning/Perceptrons.py +++ b/Reinforcement_Learning/Perceptrons.py @@ -45,7 +45,6 @@ class Perceptron: def test(self): test_data = Training_data.make_testset(TESTDATA) - # print(test_data) res = [0 for _ in range(len(test_data))] for number in range(len(test_data)): for sample in test_data[number]: diff --git a/Reinforcement_Learning/Solution_Testing.py b/Reinforcement_Learning/Solution_Testing_1.py similarity index 100% rename from Reinforcement_Learning/Solution_Testing.py rename to Reinforcement_Learning/Solution_Testing_1.py -- GitLab