1
0
mirror of https://github.com/newnius/YAO-optimizer.git synced 2025-12-13 00:16:44 +00:00

add files

This commit is contained in:
2020-04-30 00:35:28 +08:00
parent a19c11fc68
commit a332ca27f0
2 changed files with 13 additions and 11 deletions

View File

@@ -77,6 +77,8 @@ class Data:
print(1)
self.std = np.std(self.data, axis=0)
print(self.std)
print(self.mean)
self.norm_data = (self.data - self.mean) / self.std
print(2)