multi tasking for text classification with deep learning











up vote
-2
down vote

favorite












i am new in deep learning and i want a help for my thesis!
I want todo supervised deep learning for text. it is a classification issue. I have a trainset of author for gender and the same trainset for sexual preference. I want to build a rnn model to predict if an author is female or male and gay or lesbian.
I have to do this with multi tasking techique. This is my code:



   left_branch = Sequential()
left_branch.add(LSTM(32, input_dim=100))



right_branch = Sequential()
right_branch.add(LSTM(32, input_dim=100))

f=add([left_branch.output, right_branch.output])

final_model = Sequential()

final_model.add(Dense(2,activation='sigmoid'))
model_output = final_model(f)
model = Model([left_branch.input, right_branch.input], model_output)
final_model.compile(loss='categorical_crossentropy',
optimizer='adam',
metrics=['accuracy'])

history = final_model.fit([x_train,x_train2],[y_train,y_train2],
batch_size=batch_size,
epochs=30,
verbose=2
)


results=final_model.evaluate([x_test,x_test2],[y_test,y_test2],verbose=2)
print(results)


but with this code i have the following error:



str(data)[:200] + '...')
ValueError: Error when checking model input: the list of Numpy arrays that you are passing to your model is not the size the model expected. Expected to see 1 array(s), but instead got the following list of 2 arrays: [array([[0. , 0. , 0. , ..., 0.00045344, 0.00211607,
0.00634821],
[0. , 0. , 0. , ..., 0.00049548, 0.0094142 ,










share|improve this question


























    up vote
    -2
    down vote

    favorite












    i am new in deep learning and i want a help for my thesis!
    I want todo supervised deep learning for text. it is a classification issue. I have a trainset of author for gender and the same trainset for sexual preference. I want to build a rnn model to predict if an author is female or male and gay or lesbian.
    I have to do this with multi tasking techique. This is my code:



       left_branch = Sequential()
    left_branch.add(LSTM(32, input_dim=100))



    right_branch = Sequential()
    right_branch.add(LSTM(32, input_dim=100))

    f=add([left_branch.output, right_branch.output])

    final_model = Sequential()

    final_model.add(Dense(2,activation='sigmoid'))
    model_output = final_model(f)
    model = Model([left_branch.input, right_branch.input], model_output)
    final_model.compile(loss='categorical_crossentropy',
    optimizer='adam',
    metrics=['accuracy'])

    history = final_model.fit([x_train,x_train2],[y_train,y_train2],
    batch_size=batch_size,
    epochs=30,
    verbose=2
    )


    results=final_model.evaluate([x_test,x_test2],[y_test,y_test2],verbose=2)
    print(results)


    but with this code i have the following error:



    str(data)[:200] + '...')
    ValueError: Error when checking model input: the list of Numpy arrays that you are passing to your model is not the size the model expected. Expected to see 1 array(s), but instead got the following list of 2 arrays: [array([[0. , 0. , 0. , ..., 0.00045344, 0.00211607,
    0.00634821],
    [0. , 0. , 0. , ..., 0.00049548, 0.0094142 ,










    share|improve this question
























      up vote
      -2
      down vote

      favorite









      up vote
      -2
      down vote

      favorite











      i am new in deep learning and i want a help for my thesis!
      I want todo supervised deep learning for text. it is a classification issue. I have a trainset of author for gender and the same trainset for sexual preference. I want to build a rnn model to predict if an author is female or male and gay or lesbian.
      I have to do this with multi tasking techique. This is my code:



         left_branch = Sequential()
      left_branch.add(LSTM(32, input_dim=100))



      right_branch = Sequential()
      right_branch.add(LSTM(32, input_dim=100))

      f=add([left_branch.output, right_branch.output])

      final_model = Sequential()

      final_model.add(Dense(2,activation='sigmoid'))
      model_output = final_model(f)
      model = Model([left_branch.input, right_branch.input], model_output)
      final_model.compile(loss='categorical_crossentropy',
      optimizer='adam',
      metrics=['accuracy'])

      history = final_model.fit([x_train,x_train2],[y_train,y_train2],
      batch_size=batch_size,
      epochs=30,
      verbose=2
      )


      results=final_model.evaluate([x_test,x_test2],[y_test,y_test2],verbose=2)
      print(results)


      but with this code i have the following error:



      str(data)[:200] + '...')
      ValueError: Error when checking model input: the list of Numpy arrays that you are passing to your model is not the size the model expected. Expected to see 1 array(s), but instead got the following list of 2 arrays: [array([[0. , 0. , 0. , ..., 0.00045344, 0.00211607,
      0.00634821],
      [0. , 0. , 0. , ..., 0.00049548, 0.0094142 ,










      share|improve this question













      i am new in deep learning and i want a help for my thesis!
      I want todo supervised deep learning for text. it is a classification issue. I have a trainset of author for gender and the same trainset for sexual preference. I want to build a rnn model to predict if an author is female or male and gay or lesbian.
      I have to do this with multi tasking techique. This is my code:



         left_branch = Sequential()
      left_branch.add(LSTM(32, input_dim=100))



      right_branch = Sequential()
      right_branch.add(LSTM(32, input_dim=100))

      f=add([left_branch.output, right_branch.output])

      final_model = Sequential()

      final_model.add(Dense(2,activation='sigmoid'))
      model_output = final_model(f)
      model = Model([left_branch.input, right_branch.input], model_output)
      final_model.compile(loss='categorical_crossentropy',
      optimizer='adam',
      metrics=['accuracy'])

      history = final_model.fit([x_train,x_train2],[y_train,y_train2],
      batch_size=batch_size,
      epochs=30,
      verbose=2
      )


      results=final_model.evaluate([x_test,x_test2],[y_test,y_test2],verbose=2)
      print(results)


      but with this code i have the following error:



      str(data)[:200] + '...')
      ValueError: Error when checking model input: the list of Numpy arrays that you are passing to your model is not the size the model expected. Expected to see 1 array(s), but instead got the following list of 2 arrays: [array([[0. , 0. , 0. , ..., 0.00045344, 0.00211607,
      0.00634821],
      [0. , 0. , 0. , ..., 0.00049548, 0.0094142 ,







      python deep-learning classification multitasking rnn






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 11 at 16:48









      panos petropoulos

      1




      1





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          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',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          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
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53250955%2fmulti-tasking-for-text-classification-with-deep-learning%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • 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.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • 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.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53250955%2fmulti-tasking-for-text-classification-with-deep-learning%23new-answer', 'question_page');
          }
          );

          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







          Popular posts from this blog

          Xamarin.iOS Cant Deploy on Iphone

          Glorious Revolution

          Dulmage-Mendelsohn matrix decomposition in Python