added some argparse arguments to main
This commit is contained in:
@@ -45,8 +45,8 @@ def get_top_cnn(cnn, numFeatures, maxLen, windowSize, domainFeatures, filters, k
|
||||
maxPool = GlobalMaxPooling1D()(cnn)
|
||||
cnnDropout = Dropout(cnnDropout)(maxPool)
|
||||
cnnDense = Dense(cnnHiddenDims, activation='relu')(cnnDropout)
|
||||
cnnOutput1 = Dense(2, activation='softmax')(cnnDense)
|
||||
cnnOutput2 = Dense(2, activation='softmax')(cnnDense)
|
||||
cnnOutput1 = Dense(2, activation='softmax', name="client")(cnnDense)
|
||||
cnnOutput2 = Dense(2, activation='softmax', name="server")(cnnDense)
|
||||
|
||||
# We define a trainable model linking the
|
||||
# tweet inputs to the predictions
|
||||
|
Reference in New Issue
Block a user