Browse Source

151-fix-error-on-second-learning

pull/1/head
rozetko 6 years ago
parent
commit
c08cd4b521
  1. 2
      analytics/data_preprocessor.py

2
analytics/data_preprocessor.py

@ -66,7 +66,7 @@ class data_preprocessor:
augmented = self.__get_data(start_frame, stop_frame)
if len(anomalies) > 0:
anomalies_indexes = self.transform_anomalies(anomalies)
augmented = augmented.drop(anomalies_indexes)
augmented = augmented.drop(anomalies_indexes[:-1])
return augmented

Loading…
Cancel
Save