From 26604135554f59482e576656cd7d7a9a11105e47 Mon Sep 17 00:00:00 2001 From: Falguni Ghosh <falguni.ghosh@fau.de> Date: Sun, 15 Oct 2023 21:11:43 +0000 Subject: [PATCH] Upload New File --- 3_RNN/Base.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 3_RNN/Base.py diff --git a/3_RNN/Base.py b/3_RNN/Base.py new file mode 100644 index 0000000..af2c217 --- /dev/null +++ b/3_RNN/Base.py @@ -0,0 +1,11 @@ +import numpy as np + + +class BaseLayer: + #weights = None + def __init__(self): + self.trainable = False + self.conv = False + self.testing_phase = False + + -- GitLab