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
merged = Concatenate()(conv_layers)
dropout = Dropout(0.5)(merged)
flattened = Flatten()(dropout)
outputs = Dense(output_length, activation="sigmoid")(flattened)
model = Model(inputs=inputs, outputs=outputs)
model.compile(
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
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: philipperemy/deep-speaker
Commit Name: 09c2b39acc76f3561e21a0bcb65d40e9d0883fc3
Time: 2020-04-02
Author: premy.enseirb@gmail.com
File Name: v4/train_cli.py
Class Name:
Method Name: triplet_softmax_model
Project Name: NTMC-Community/MatchZoo
Commit Name: 478d2f388dc65736b5d67f3560328904210ef1a1
Time: 2018-12-01
Author: i@uduse.com
File Name: matchzoo/models/arci_model.py
Class Name: ArcIModel
Method Name: build