Google's Colab Notebook || Univ_Tech


          Google has invested a large amount of developers time and effort into the capabilities of machine learning.  Finally, the tool was developed by the Brain Team that is TensorFlow.  TensorFlow was orginally designed to be used for Machine Learning and Neural Network applications.

         But now, you can use TensorFlow no need to zero  % of installation.  Google announces Colab to do this as easy.

Welcome to Colaboratory!

     Colaboratory is a Google research project created to help disseminate machine learning education and research. It's a Jupyter notebook environment that requires no setup to use and runs entirely in the cloud.

     Colaboratory notebooks are stored in Google Drive and can be shared just as you would with Google Docs or Sheets. Colaboratory is free to use.


   How to write Hello, World! in TensorFlow:

             import tensorflow as tf                      # import tensorflow.
             node = tf.constant('Hello, World!')    # Build a graph i.e., node.
             sess = tf.Session()                              # Launch the graph in a session.
             print(sess.run(node))                         # Evaluate the tensor `node`.
    

       This will print out the answer: Hello, World!

    

Comments

Popular posts from this blog

Apple’s 'Create ML' || Univ_Techs

3 Best Frameworks For Machine Learning || UNIV_TECHS

Pony – The new programming language || Univ_Techs