From 7e408c5b27dc949cc4577fe4397946095a46204d Mon Sep 17 00:00:00 2001 From: Carl Pearson Date: Mon, 20 Feb 2017 05:55:26 -0600 Subject: [PATCH] Add pylintrc file --- network2.py | 2 +- pylintrc | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 pylintrc diff --git a/network2.py b/network2.py index 844b9a0..e40af7c 100644 --- a/network2.py +++ b/network2.py @@ -114,7 +114,7 @@ class Model(object): def dLdb2(self, x, y): return self.dLdf(x, y) * self.dfdb2(x) - def dz2dw2(self, x): # how z2 changes with a row of w2 + def dz2dw2(self, x): # how z2 changes with a row of w2 return np.sum(self.a1(x)) def da2dw2(self, x): diff --git a/pylintrc b/pylintrc new file mode 100644 index 0000000..587a38b --- /dev/null +++ b/pylintrc @@ -0,0 +1,3 @@ +[TYPECHECK] + +ignored-modules = numpy \ No newline at end of file