How to manipulate recurrent CNN model on sentence classification?Implementing the Dependency Sensitive CNN (DSCNN ) in KerasAttention using Context Vector: Hierarchical Attention Networks for Document ClassificationText understanding and mappingRight Way to Input Text Data in Keras Auto EncoderHow to compute document similarities in case of source codes?How to do give input to CNN when doing a text processing?Value of loss and accuracy does not change over EpochsSkip-thought models applied to phrases instead of sentencesArchitecture for linear regression with variable input where each input is n-sized one-hot encodedApplying CNN for cross sectional data
Is it possible to deploy Apex code which uses Person Accounts to an org which doesn't have Person Accounts enabled?
Box half filled color
How to understand 「僕は誰より彼女が好きなんだ。」
Determine voltage drop over 10G resistors with cheap multimeter
What is the tangent at a sharp point on a curve?
What is it called when someone votes for an option that's not their first choice?
Air travel with refrigerated insulin
Print a physical multiplication table
Writing in a Christian voice
Should a narrator ever describe things based on a characters view instead of fact?
Does fire aspect on a sword, destroy mob drops?
How to balance a monster modification (zombie)?
categorizing a variable turns it from insignificant to significant
Exit shell with shortcut (not typing exit) that closes session properly
Is this Pascal's Matrix?
Animal R'aim of the midrash
Does the Shadow Magic sorcerer's Eyes of the Dark feature work on all Darkness spells or just his/her own?
Was World War I a war of liberals against authoritarians?
How to determine the greatest d orbital splitting?
Asserting that Atheism and Theism are both faith based positions
Pre-Employment Background Check With Consent For Future Checks
Are hand made posters acceptable in Academia?
"Marked down as someone wanting to sell shares." What does that mean?
Which partition to make active?
How to manipulate recurrent CNN model on sentence classification?
Implementing the Dependency Sensitive CNN (DSCNN ) in KerasAttention using Context Vector: Hierarchical Attention Networks for Document ClassificationText understanding and mappingRight Way to Input Text Data in Keras Auto EncoderHow to compute document similarities in case of source codes?How to do give input to CNN when doing a text processing?Value of loss and accuracy does not change over EpochsSkip-thought models applied to phrases instead of sentencesArchitecture for linear regression with variable input where each input is n-sized one-hot encodedApplying CNN for cross sectional data
$begingroup$
I learned how to build recurrent cnn
model for text classification and sketched out my initial implementation. However, I am wondering how to transform recurrent cnn
model for sentence classification. I am curious how can I come up better implementation of recurrent cnn
model for sentence classification task. Here is part of keras solution that I used:
import gensim
import numpy as np
import string
import gensim
from gensim.models import Word2Vec
from gensim.utils import simple_preprocess
from gensim.models.keyedvectors import KeyedVectors
word2vec = KeyedVectors.load_word2vec_format('GoogleNews-vectors-negative300.bin', limit= 500000,binary=True)
embeddings = np.zeros((word2vec.syn0.shape[0] + 1, word2vec.syn0.shape[1]), dtype = "float32")
embeddings[:word2vec.syn0.shape[0]] = word2vec.syn0
MAX_TOKENS = word2vec.syn0.shape[0]
embedding_dim = word2vec.syn0.shape[1]
hidden_dim_1 = 200
hidden_dim_2 = 100
NUM_CLASSES = 10
problem
I want to learn sentence classification task by using recurrent cnn
(RCNN) model. The fact that some people used RCNN
for object recognition problem. And it is not very intuitive for me how to transform same idea to list of short sentences.
Here is the code that I want to make them work for sentence classification task:
document = Input(shape = (None, ), dtype = "int32")
left_context = Input(shape = (None, ), dtype = "int32")
right_context = Input(shape = (None, ), dtype = "int32")
embedder = Embedding(MAX_TOKENS + 1, embedding_dim, weights = [embeddings], trainable = False)
doc_embedding = embedder(document)
l_embedding = embedder(left_context)
r_embedding = embedder(right_context)
continuation of my code
I am struggling to make above code in problem section for sentence classification problem. Can anyone give me possible idea how to make it work for sentences classification?
If there is efficient transformation on above code, I'd like to continue my pipeline as follow to build RCNN model for sentence classification.
forward = LSTM(hidden_dim_1, return_sequences = True)(l_embedding)
backward = LSTM(hidden_dim_1, return_sequences = True, go_backwards = True)(r_embedding)
backward = Lambda(lambda x: K.reverse(x, axes = 1))(backward)
together = concatenate([forward, doc_embedding, backward], axis = 2)
semantic = Conv1D(hidden_dim_2, kernel_size = 1, activation = "tanh")(together)
pool_rnn = Lambda(lambda x: K.max(x, axis = 1), output_shape = (hidden_dim_2, ))(semantic)
model_output = Dense(NUM_CLASSES, input_dim = hidden_dim_2, activation = "softmax")(pool_rnn)
model_RCNN = Model(inputs = [document, left_context, right_context], outputs = model_output)
maybe I need to tokenize all sentences and create array for right/left context for each sentences, but I didn't get solid idea on that. Any more thoughts?
question
how can I realistically create input
matrix for sentences list, right/left context of each sentence? Any workaround to get this done? Any efficient sketch solution to use recurrent cnn
model for sentence classification? Thanks in advance!
deep-learning nlp cnn recurrent-neural-net
$endgroup$
add a comment |
$begingroup$
I learned how to build recurrent cnn
model for text classification and sketched out my initial implementation. However, I am wondering how to transform recurrent cnn
model for sentence classification. I am curious how can I come up better implementation of recurrent cnn
model for sentence classification task. Here is part of keras solution that I used:
import gensim
import numpy as np
import string
import gensim
from gensim.models import Word2Vec
from gensim.utils import simple_preprocess
from gensim.models.keyedvectors import KeyedVectors
word2vec = KeyedVectors.load_word2vec_format('GoogleNews-vectors-negative300.bin', limit= 500000,binary=True)
embeddings = np.zeros((word2vec.syn0.shape[0] + 1, word2vec.syn0.shape[1]), dtype = "float32")
embeddings[:word2vec.syn0.shape[0]] = word2vec.syn0
MAX_TOKENS = word2vec.syn0.shape[0]
embedding_dim = word2vec.syn0.shape[1]
hidden_dim_1 = 200
hidden_dim_2 = 100
NUM_CLASSES = 10
problem
I want to learn sentence classification task by using recurrent cnn
(RCNN) model. The fact that some people used RCNN
for object recognition problem. And it is not very intuitive for me how to transform same idea to list of short sentences.
Here is the code that I want to make them work for sentence classification task:
document = Input(shape = (None, ), dtype = "int32")
left_context = Input(shape = (None, ), dtype = "int32")
right_context = Input(shape = (None, ), dtype = "int32")
embedder = Embedding(MAX_TOKENS + 1, embedding_dim, weights = [embeddings], trainable = False)
doc_embedding = embedder(document)
l_embedding = embedder(left_context)
r_embedding = embedder(right_context)
continuation of my code
I am struggling to make above code in problem section for sentence classification problem. Can anyone give me possible idea how to make it work for sentences classification?
If there is efficient transformation on above code, I'd like to continue my pipeline as follow to build RCNN model for sentence classification.
forward = LSTM(hidden_dim_1, return_sequences = True)(l_embedding)
backward = LSTM(hidden_dim_1, return_sequences = True, go_backwards = True)(r_embedding)
backward = Lambda(lambda x: K.reverse(x, axes = 1))(backward)
together = concatenate([forward, doc_embedding, backward], axis = 2)
semantic = Conv1D(hidden_dim_2, kernel_size = 1, activation = "tanh")(together)
pool_rnn = Lambda(lambda x: K.max(x, axis = 1), output_shape = (hidden_dim_2, ))(semantic)
model_output = Dense(NUM_CLASSES, input_dim = hidden_dim_2, activation = "softmax")(pool_rnn)
model_RCNN = Model(inputs = [document, left_context, right_context], outputs = model_output)
maybe I need to tokenize all sentences and create array for right/left context for each sentences, but I didn't get solid idea on that. Any more thoughts?
question
how can I realistically create input
matrix for sentences list, right/left context of each sentence? Any workaround to get this done? Any efficient sketch solution to use recurrent cnn
model for sentence classification? Thanks in advance!
deep-learning nlp cnn recurrent-neural-net
$endgroup$
add a comment |
$begingroup$
I learned how to build recurrent cnn
model for text classification and sketched out my initial implementation. However, I am wondering how to transform recurrent cnn
model for sentence classification. I am curious how can I come up better implementation of recurrent cnn
model for sentence classification task. Here is part of keras solution that I used:
import gensim
import numpy as np
import string
import gensim
from gensim.models import Word2Vec
from gensim.utils import simple_preprocess
from gensim.models.keyedvectors import KeyedVectors
word2vec = KeyedVectors.load_word2vec_format('GoogleNews-vectors-negative300.bin', limit= 500000,binary=True)
embeddings = np.zeros((word2vec.syn0.shape[0] + 1, word2vec.syn0.shape[1]), dtype = "float32")
embeddings[:word2vec.syn0.shape[0]] = word2vec.syn0
MAX_TOKENS = word2vec.syn0.shape[0]
embedding_dim = word2vec.syn0.shape[1]
hidden_dim_1 = 200
hidden_dim_2 = 100
NUM_CLASSES = 10
problem
I want to learn sentence classification task by using recurrent cnn
(RCNN) model. The fact that some people used RCNN
for object recognition problem. And it is not very intuitive for me how to transform same idea to list of short sentences.
Here is the code that I want to make them work for sentence classification task:
document = Input(shape = (None, ), dtype = "int32")
left_context = Input(shape = (None, ), dtype = "int32")
right_context = Input(shape = (None, ), dtype = "int32")
embedder = Embedding(MAX_TOKENS + 1, embedding_dim, weights = [embeddings], trainable = False)
doc_embedding = embedder(document)
l_embedding = embedder(left_context)
r_embedding = embedder(right_context)
continuation of my code
I am struggling to make above code in problem section for sentence classification problem. Can anyone give me possible idea how to make it work for sentences classification?
If there is efficient transformation on above code, I'd like to continue my pipeline as follow to build RCNN model for sentence classification.
forward = LSTM(hidden_dim_1, return_sequences = True)(l_embedding)
backward = LSTM(hidden_dim_1, return_sequences = True, go_backwards = True)(r_embedding)
backward = Lambda(lambda x: K.reverse(x, axes = 1))(backward)
together = concatenate([forward, doc_embedding, backward], axis = 2)
semantic = Conv1D(hidden_dim_2, kernel_size = 1, activation = "tanh")(together)
pool_rnn = Lambda(lambda x: K.max(x, axis = 1), output_shape = (hidden_dim_2, ))(semantic)
model_output = Dense(NUM_CLASSES, input_dim = hidden_dim_2, activation = "softmax")(pool_rnn)
model_RCNN = Model(inputs = [document, left_context, right_context], outputs = model_output)
maybe I need to tokenize all sentences and create array for right/left context for each sentences, but I didn't get solid idea on that. Any more thoughts?
question
how can I realistically create input
matrix for sentences list, right/left context of each sentence? Any workaround to get this done? Any efficient sketch solution to use recurrent cnn
model for sentence classification? Thanks in advance!
deep-learning nlp cnn recurrent-neural-net
$endgroup$
I learned how to build recurrent cnn
model for text classification and sketched out my initial implementation. However, I am wondering how to transform recurrent cnn
model for sentence classification. I am curious how can I come up better implementation of recurrent cnn
model for sentence classification task. Here is part of keras solution that I used:
import gensim
import numpy as np
import string
import gensim
from gensim.models import Word2Vec
from gensim.utils import simple_preprocess
from gensim.models.keyedvectors import KeyedVectors
word2vec = KeyedVectors.load_word2vec_format('GoogleNews-vectors-negative300.bin', limit= 500000,binary=True)
embeddings = np.zeros((word2vec.syn0.shape[0] + 1, word2vec.syn0.shape[1]), dtype = "float32")
embeddings[:word2vec.syn0.shape[0]] = word2vec.syn0
MAX_TOKENS = word2vec.syn0.shape[0]
embedding_dim = word2vec.syn0.shape[1]
hidden_dim_1 = 200
hidden_dim_2 = 100
NUM_CLASSES = 10
problem
I want to learn sentence classification task by using recurrent cnn
(RCNN) model. The fact that some people used RCNN
for object recognition problem. And it is not very intuitive for me how to transform same idea to list of short sentences.
Here is the code that I want to make them work for sentence classification task:
document = Input(shape = (None, ), dtype = "int32")
left_context = Input(shape = (None, ), dtype = "int32")
right_context = Input(shape = (None, ), dtype = "int32")
embedder = Embedding(MAX_TOKENS + 1, embedding_dim, weights = [embeddings], trainable = False)
doc_embedding = embedder(document)
l_embedding = embedder(left_context)
r_embedding = embedder(right_context)
continuation of my code
I am struggling to make above code in problem section for sentence classification problem. Can anyone give me possible idea how to make it work for sentences classification?
If there is efficient transformation on above code, I'd like to continue my pipeline as follow to build RCNN model for sentence classification.
forward = LSTM(hidden_dim_1, return_sequences = True)(l_embedding)
backward = LSTM(hidden_dim_1, return_sequences = True, go_backwards = True)(r_embedding)
backward = Lambda(lambda x: K.reverse(x, axes = 1))(backward)
together = concatenate([forward, doc_embedding, backward], axis = 2)
semantic = Conv1D(hidden_dim_2, kernel_size = 1, activation = "tanh")(together)
pool_rnn = Lambda(lambda x: K.max(x, axis = 1), output_shape = (hidden_dim_2, ))(semantic)
model_output = Dense(NUM_CLASSES, input_dim = hidden_dim_2, activation = "softmax")(pool_rnn)
model_RCNN = Model(inputs = [document, left_context, right_context], outputs = model_output)
maybe I need to tokenize all sentences and create array for right/left context for each sentences, but I didn't get solid idea on that. Any more thoughts?
question
how can I realistically create input
matrix for sentences list, right/left context of each sentence? Any workaround to get this done? Any efficient sketch solution to use recurrent cnn
model for sentence classification? Thanks in advance!
deep-learning nlp cnn recurrent-neural-net
deep-learning nlp cnn recurrent-neural-net
edited 14 hours ago
Dan
asked yesterday
DanDan
12
12
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
return StackExchange.using("mathjaxEditing", function ()
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
);
);
, "mathjax-editing");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "557"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f47490%2fhow-to-manipulate-recurrent-cnn-model-on-sentence-classification%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Data Science Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdatascience.stackexchange.com%2fquestions%2f47490%2fhow-to-manipulate-recurrent-cnn-model-on-sentence-classification%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown