Getting Errors while running elmo embeddings in google colabSimple Feedforward Neural Network with TensorFlow won't learnCan I use Tensorboard with Google Colab?I am getting an error while installing pytessereact on google colabError restoring weights in google colabEmbedding GOOGLE COLABS as an IFRAMETest if notebook is running on Google ColabRunning TensorFlow tests in Google ColabGoogle Colab: Increase TCMALLOC_LARGE_ALLOC_REPORT_THRESHOLDUsing elmo to extract features from text

csname in newenviroment

Why do testers need root cause analysis?

Is it normal to "extract a paper" from a master thesis?

Meaning of "half-crown enclosure"

Computing elements of a 1000 x 60 matrix exhausts RAM

Illustrating that universal optimality is stronger than sphere packing

Writing "hahaha" versus describing the laugh

amsmath: How can I use the equation numbering and label manually and anywhere?

What is this dime sized black bug with white on the segments near Loveland Colorodao?

What defines a person who is circumcised "of the heart"?

How would a physicist explain this starship engine?

Why is Ni[(PPh₃)₂Cl₂] tetrahedral?

What is the required burn to keep a satellite at a Lagrangian point?

Why A=2 and B=1 in the call signs for Spirit and Opportunity?

Why is unzipped file smaller than zipped file

How do I write real-world stories separate from my country of origin?

Can diplomats be allowed on the flight deck of a commercial European airline?

DeleteCases using two lists but with partial match?

Make the `diff` command look only for differences from a specified range of lines

Adobe Illustrator: How can I change the profile of a dashed stroke?

Real Analysis: Proof of the equivalent definitions of the derivative.

Team member is vehemently against code formatting

A nasty indefinite integral

How to become an Editorial board member?



Getting Errors while running elmo embeddings in google colab


Simple Feedforward Neural Network with TensorFlow won't learnCan I use Tensorboard with Google Colab?I am getting an error while installing pytessereact on google colabError restoring weights in google colabEmbedding GOOGLE COLABS as an IFRAMETest if notebook is running on Google ColabRunning TensorFlow tests in Google ColabGoogle Colab: Increase TCMALLOC_LARGE_ALLOC_REPORT_THRESHOLDUsing elmo to extract features from text






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I am extracting features through elmo. Train and Test are text data.I am getting errors while executing in google colab. I have checked previous Stackoverflow questions but could not resolve. Exact codes with pointers will be helpful.



elmo = hub.Module("https://tfhub.dev/google/elmo/2", trainable=True)
def elmo_vectors(x):
embeddings = elmo(x.tolist(), signature="default", as_dict=True)["elmo"]

with tf.Session() as sess:
sess.run(tf.global_variables_initializer())
sess.run(tf.tables_initializer())
# return average of ELMo features
return sess.run(tf.reduce_mean(embeddings,1))

import tensorflow as tf
import tensorflow_hub as hub

list_train = [train[i:i+100] for i in range(0,train.shape[0],100)]
list_test = [test[i:i+100] for i in range(0,test.shape[0],100)]

# Extract ELMo embeddings
elmo_train = [elmo_vectors(x['clean_tweet']) for x in list_train]
elmo_test = [elmo_vectors(x['clean_tweet']) for x in list_test]


I am getting following errors:
UnknownError: Failed to get convolution algorithm. This is probably because cuDNN failed to initialize, so try looking to see if a warning log message was printed above.
[[node module_apply_default_1/bilm/CNN_2/Conv2D_6 (defined at /usr/local/lib/python3.6/dist-packages/tensorflow_hub/native_module.py:517) ]]
[[node Mean (defined at :8) ]]










share|improve this question




























    0















    I am extracting features through elmo. Train and Test are text data.I am getting errors while executing in google colab. I have checked previous Stackoverflow questions but could not resolve. Exact codes with pointers will be helpful.



    elmo = hub.Module("https://tfhub.dev/google/elmo/2", trainable=True)
    def elmo_vectors(x):
    embeddings = elmo(x.tolist(), signature="default", as_dict=True)["elmo"]

    with tf.Session() as sess:
    sess.run(tf.global_variables_initializer())
    sess.run(tf.tables_initializer())
    # return average of ELMo features
    return sess.run(tf.reduce_mean(embeddings,1))

    import tensorflow as tf
    import tensorflow_hub as hub

    list_train = [train[i:i+100] for i in range(0,train.shape[0],100)]
    list_test = [test[i:i+100] for i in range(0,test.shape[0],100)]

    # Extract ELMo embeddings
    elmo_train = [elmo_vectors(x['clean_tweet']) for x in list_train]
    elmo_test = [elmo_vectors(x['clean_tweet']) for x in list_test]


    I am getting following errors:
    UnknownError: Failed to get convolution algorithm. This is probably because cuDNN failed to initialize, so try looking to see if a warning log message was printed above.
    [[node module_apply_default_1/bilm/CNN_2/Conv2D_6 (defined at /usr/local/lib/python3.6/dist-packages/tensorflow_hub/native_module.py:517) ]]
    [[node Mean (defined at :8) ]]










    share|improve this question
























      0












      0








      0








      I am extracting features through elmo. Train and Test are text data.I am getting errors while executing in google colab. I have checked previous Stackoverflow questions but could not resolve. Exact codes with pointers will be helpful.



      elmo = hub.Module("https://tfhub.dev/google/elmo/2", trainable=True)
      def elmo_vectors(x):
      embeddings = elmo(x.tolist(), signature="default", as_dict=True)["elmo"]

      with tf.Session() as sess:
      sess.run(tf.global_variables_initializer())
      sess.run(tf.tables_initializer())
      # return average of ELMo features
      return sess.run(tf.reduce_mean(embeddings,1))

      import tensorflow as tf
      import tensorflow_hub as hub

      list_train = [train[i:i+100] for i in range(0,train.shape[0],100)]
      list_test = [test[i:i+100] for i in range(0,test.shape[0],100)]

      # Extract ELMo embeddings
      elmo_train = [elmo_vectors(x['clean_tweet']) for x in list_train]
      elmo_test = [elmo_vectors(x['clean_tweet']) for x in list_test]


      I am getting following errors:
      UnknownError: Failed to get convolution algorithm. This is probably because cuDNN failed to initialize, so try looking to see if a warning log message was printed above.
      [[node module_apply_default_1/bilm/CNN_2/Conv2D_6 (defined at /usr/local/lib/python3.6/dist-packages/tensorflow_hub/native_module.py:517) ]]
      [[node Mean (defined at :8) ]]










      share|improve this question














      I am extracting features through elmo. Train and Test are text data.I am getting errors while executing in google colab. I have checked previous Stackoverflow questions but could not resolve. Exact codes with pointers will be helpful.



      elmo = hub.Module("https://tfhub.dev/google/elmo/2", trainable=True)
      def elmo_vectors(x):
      embeddings = elmo(x.tolist(), signature="default", as_dict=True)["elmo"]

      with tf.Session() as sess:
      sess.run(tf.global_variables_initializer())
      sess.run(tf.tables_initializer())
      # return average of ELMo features
      return sess.run(tf.reduce_mean(embeddings,1))

      import tensorflow as tf
      import tensorflow_hub as hub

      list_train = [train[i:i+100] for i in range(0,train.shape[0],100)]
      list_test = [test[i:i+100] for i in range(0,test.shape[0],100)]

      # Extract ELMo embeddings
      elmo_train = [elmo_vectors(x['clean_tweet']) for x in list_train]
      elmo_test = [elmo_vectors(x['clean_tweet']) for x in list_test]


      I am getting following errors:
      UnknownError: Failed to get convolution algorithm. This is probably because cuDNN failed to initialize, so try looking to see if a warning log message was printed above.
      [[node module_apply_default_1/bilm/CNN_2/Conv2D_6 (defined at /usr/local/lib/python3.6/dist-packages/tensorflow_hub/native_module.py:517) ]]
      [[node Mean (defined at :8) ]]







      python-3.x tensorflow google-colaboratory tensorflow-hub






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 23 at 21:07









      shanshan

      1631312




      1631312






















          1 Answer
          1






          active

          oldest

          votes


















          0














          I tried right now on colab.research.google.com in Python 3 runtimes with and without GPU, and the following adaptation of your code runs:



          import tensorflow as tf
          import tensorflow_hub as hub

          elmo = hub.Module("https://tfhub.dev/google/elmo/2", trainable=True)
          def elmo_vectors(x):
          embeddings = elmo(x, # Note plain x here.
          signature="default", as_dict=True)["elmo"]
          with tf.Session() as sess:
          sess.run(tf.global_variables_initializer())
          sess.run(tf.tables_initializer())
          # return average of ELMo features
          return sess.run(tf.reduce_mean(embeddings, 1))

          elmo_vectors(["Hello world"])


          I get the output:



          array([[ 0.45319763, -0.99154925, -0.26539633, ..., -0.13455263,
          0.48878008, 0.31264588]], dtype=float32)


          I believe this is a not a TF Hub problem.






          share|improve this answer























            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',
            autoActivateHeartbeat: false,
            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%2f55318398%2fgetting-errors-while-running-elmo-embeddings-in-google-colab%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            I tried right now on colab.research.google.com in Python 3 runtimes with and without GPU, and the following adaptation of your code runs:



            import tensorflow as tf
            import tensorflow_hub as hub

            elmo = hub.Module("https://tfhub.dev/google/elmo/2", trainable=True)
            def elmo_vectors(x):
            embeddings = elmo(x, # Note plain x here.
            signature="default", as_dict=True)["elmo"]
            with tf.Session() as sess:
            sess.run(tf.global_variables_initializer())
            sess.run(tf.tables_initializer())
            # return average of ELMo features
            return sess.run(tf.reduce_mean(embeddings, 1))

            elmo_vectors(["Hello world"])


            I get the output:



            array([[ 0.45319763, -0.99154925, -0.26539633, ..., -0.13455263,
            0.48878008, 0.31264588]], dtype=float32)


            I believe this is a not a TF Hub problem.






            share|improve this answer



























              0














              I tried right now on colab.research.google.com in Python 3 runtimes with and without GPU, and the following adaptation of your code runs:



              import tensorflow as tf
              import tensorflow_hub as hub

              elmo = hub.Module("https://tfhub.dev/google/elmo/2", trainable=True)
              def elmo_vectors(x):
              embeddings = elmo(x, # Note plain x here.
              signature="default", as_dict=True)["elmo"]
              with tf.Session() as sess:
              sess.run(tf.global_variables_initializer())
              sess.run(tf.tables_initializer())
              # return average of ELMo features
              return sess.run(tf.reduce_mean(embeddings, 1))

              elmo_vectors(["Hello world"])


              I get the output:



              array([[ 0.45319763, -0.99154925, -0.26539633, ..., -0.13455263,
              0.48878008, 0.31264588]], dtype=float32)


              I believe this is a not a TF Hub problem.






              share|improve this answer

























                0












                0








                0







                I tried right now on colab.research.google.com in Python 3 runtimes with and without GPU, and the following adaptation of your code runs:



                import tensorflow as tf
                import tensorflow_hub as hub

                elmo = hub.Module("https://tfhub.dev/google/elmo/2", trainable=True)
                def elmo_vectors(x):
                embeddings = elmo(x, # Note plain x here.
                signature="default", as_dict=True)["elmo"]
                with tf.Session() as sess:
                sess.run(tf.global_variables_initializer())
                sess.run(tf.tables_initializer())
                # return average of ELMo features
                return sess.run(tf.reduce_mean(embeddings, 1))

                elmo_vectors(["Hello world"])


                I get the output:



                array([[ 0.45319763, -0.99154925, -0.26539633, ..., -0.13455263,
                0.48878008, 0.31264588]], dtype=float32)


                I believe this is a not a TF Hub problem.






                share|improve this answer













                I tried right now on colab.research.google.com in Python 3 runtimes with and without GPU, and the following adaptation of your code runs:



                import tensorflow as tf
                import tensorflow_hub as hub

                elmo = hub.Module("https://tfhub.dev/google/elmo/2", trainable=True)
                def elmo_vectors(x):
                embeddings = elmo(x, # Note plain x here.
                signature="default", as_dict=True)["elmo"]
                with tf.Session() as sess:
                sess.run(tf.global_variables_initializer())
                sess.run(tf.tables_initializer())
                # return average of ELMo features
                return sess.run(tf.reduce_mean(embeddings, 1))

                elmo_vectors(["Hello world"])


                I get the output:



                array([[ 0.45319763, -0.99154925, -0.26539633, ..., -0.13455263,
                0.48878008, 0.31264588]], dtype=float32)


                I believe this is a not a TF Hub problem.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 25 at 9:02









                arnoegwarnoegw

                31814




                31814





























                    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.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55318398%2fgetting-errors-while-running-elmo-embeddings-in-google-colab%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

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현