diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 278ea27..549ac90 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -47,7 +47,7 @@
-
+
@@ -56,7 +56,7 @@
-
+
@@ -84,20 +84,20 @@
-
+
-
-
+
+
-
+
-
+
@@ -168,8 +168,8 @@
-
+
@@ -212,7 +212,7 @@
-
+
@@ -253,12 +253,12 @@
1588152877746
-
+
-
+
@@ -361,17 +361,6 @@
-
-
-
-
-
-
-
-
-
-
-
@@ -382,6 +371,17 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/serve.py b/serve.py
index b2025d6..3cc1953 100644
--- a/serve.py
+++ b/serve.py
@@ -77,7 +77,7 @@ class Data:
self.train_num = int(self.data_num * self.config.train_data_rate)
self.mean = np.mean(self.data, axis=0)
- self.std = np.std(self.data, axis=0)
+ self.std = np.std(self.data + 0.0001, axis=0)
self.norm_data = (self.data - self.mean) / self.std
self.start_num_in_test = 0