码迷,mamicode.com
首页 > 其他好文 > 详细

keras-anomaly-detection 代码分析——本质上就是SAE、LSTM时间序列预测

时间:2018-10-25 19:41:40      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:regular   filters   vat   filter   时间序列   series   code   com   tput   

keras-anomaly-detection

Anomaly detection implemented in Keras

The source codes of the recurrent, convolutional and feedforward networks auto-encoders for anomaly detection can be found in keras_anomaly_detection/library/convolutional.py and keras_anomaly_detection/library/recurrent.py and keras_anomaly_detection/library/feedforward.py

The the anomaly detection is implemented using auto-encoder with convolutional, feedforward, and recurrent networks and can be applied to:

  • timeseries data to detect timeseries time windows that have anomaly pattern
  • structured data (i.e., tabular data) to detect anomaly in data records
    • Conv1DAutoEncoder in keras_anomaly_detection/library/convolutional.py
    • FeedforwardAutoEncoder in keras_anomaly_detection/library/feedforward.py
       
      看LSTM的模型吧:
          def create_model(time_window_size, metric):
              model = Sequential()
              model.add(LSTM(units=128, input_shape=(time_window_size, 1), return_sequences=False))
      
              model.add(Dense(units=time_window_size, activation=‘linear‘))
      
              model.compile(optimizer=‘adam‘, loss=‘mean_squared_error‘, metrics=[metric])
              print(model.summary())
      return model
      

      再看feedforward的模型:

          def create_model(self, input_dim):
              encoding_dim = 14
              input_layer = Input(shape=(input_dim,))
      
              encoder = Dense(encoding_dim, activation="tanh",
                              activity_regularizer=regularizers.l1(10e-5))(input_layer)
              encoder = Dense(encoding_dim // 2, activation="relu")(encoder)
      
              decoder = Dense(encoding_dim // 2, activation=‘tanh‘)(encoder)
              decoder = Dense(input_dim, activation=‘relu‘)(decoder)
      
              model = Model(inputs=input_layer, outputs=decoder)
              model.compile(optimizer=‘adam‘,
                            loss=‘mean_squared_error‘,
      metrics=[‘accuracy‘])
      

       CNN的:

          def create_model(time_window_size, metric):
              model = Sequential()
              model.add(Conv1D(filters=256, kernel_size=5, padding=‘same‘, activation=‘relu‘,
                               input_shape=(time_window_size, 1)))
              model.add(GlobalMaxPool1D())
      
              model.add(Dense(units=time_window_size, activation=‘linear‘))
      
              model.compile(optimizer=‘adam‘, loss=‘mean_squared_error‘, metrics=[metric])
              print(model.summary())
              return model
      

       都是将输出设置成自己,异常点就是查看偏离那90%的预测error较大的点。

keras-anomaly-detection 代码分析——本质上就是SAE、LSTM时间序列预测

标签:regular   filters   vat   filter   时间序列   series   code   com   tput   

原文地址:https://www.cnblogs.com/bonelee/p/9851727.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!