From 4ba9d120d5a637b9c49fe948e5c8b5df925db338 Mon Sep 17 00:00:00 2001 From: Newnius Date: Thu, 30 Apr 2020 00:27:07 +0800 Subject: [PATCH] add files --- serve.py | 1 + 1 file changed, 1 insertion(+) diff --git a/serve.py b/serve.py index a6b577b..65f272f 100644 --- a/serve.py +++ b/serve.py @@ -74,6 +74,7 @@ class Data: self.mean = np.mean(self.data, axis=0) print(1) + print(self.data) self.std = np.std(self.data, axis=0) self.norm_data = (self.data - self.mean) / self.std print(2)