28b8b9d39f53d8327dbf658048a81b7046ae398f,magpie/nn/models.py,,cnn,#Any#Any#,19
Before Change
NB_FILTER = 256
NGRAM_LENGTHS = [1, 2, 3, 4, 5]
conv_layers = []
for ngram_length in NGRAM_LENGTHS:
ngram_layer = Sequential()
ngram_layer.add(Convolution1D(
NB_FILTER,
After Change
conv_layers, inputs = [], []
for ngram_length in NGRAM_LENGTHS:
current_input = Input(shape=(SAMPLE_LENGTH, embedding_size))
inputs.append(current_input)
convolution = Conv1D(
NB_FILTER,
ngram_length,
kernel_initializer="lecun_uniform",
activation="tanh",
)(current_input)
pool_size = SAMPLE_LENGTH - ngram_length + 1
pooling = MaxPooling1D(pool_size=pool_size)(convolution)
conv_layers.append(pooling)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
Project Name: inspirehep/magpie
Commit Name: 28b8b9d39f53d8327dbf658048a81b7046ae398f
Time: 2017-10-08
Author: stypka@spotify.com
File Name: magpie/nn/models.py
Class Name:
Method Name: cnn
Project Name: nl8590687/ASRT_SpeechRecognition
Commit Name: 69c3f3310173aa9e6acea7b37449b6d873538134
Time: 2018-04-09
Author: 3210346136@qq.com
File Name: SpeechModel5.py
Class Name: ModelSpeech
Method Name: CreateModel
Project Name: deepchem/deepchem
Commit Name: b68db1aaf6abe4d2cea8321cc6f1564228dd60f5
Time: 2019-05-31
Author: peastman@stanford.edu
File Name: deepchem/models/tensorgraph/models/seqtoseq.py
Class Name: AspuruGuzikAutoEncoder
Method Name: _create_encoder