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