Chandan Rajpurohit

An Artist With Technical Skills

  • Free online product training and certifications by Google

    Free online product training and certifications by Google

    Training and Certification for learning of any product can be costly, but with free e-learning courses designed by Google product experts. Learn right skills that you love and enhance your knowledge without spending a single penny on courses. Now the question is where do I find this courses ? Don’t worry because in next few…

    Continue Reading

  • TensorFlow Hello World

    Download and Install the TensorFlow 2.0 Beta Package. Import TensorFlow into Program from __future__ import absolute_import,division,print_function,unicode_literal pip install tensorflow==2.0.0-beta1 import tensorflow as tf Load and prepare the MNIST dataset. Convert the samples from integers to Floating-point Numbers. mnist=tf.keras.datasets.mnist (x_train,y_train),(x_test,y_test)=mnist.load_data() x_train,x_test=x_train/255.0,x_test/255.0     (Normalisation) Build the tf.keras.Sequential model by stacking layes. Choose an optimizer and loss function…

    Continue Reading