Heuristics Search & Game Playing in AI

What is Heuristic? ·         The word heuristic is derived from the Greek word heuriskein, which means to find or to discover. ·         Heuristic search can be implemented by using a thumb rule, a judgment or…

Rajil TL

What is TensorBoard

Tensorboard is the interface used to visualize the graph and other tools to understand, debug, and optimize the model. Example The image below comes from the graph you will generate…

Rajil TL

Creating operator

Some Useful TensorFlow operators You know how to create a tensor with TensorFlow. It is time to learn how to perform mathematical operations. TensorFlow contains all the basic operations. You…

Rajil TL

Shape of tensor

When you print the tensor, TensorFlow guesses the shape. However, you can get the shape of the tensor with the shape property. Below, you construct a matrix filled with a…

Rajil TL

What is a Tensor?

Tensorflow's name is directly derived from its core framework: Tensor. In Tensorflow, all the computations involve tensors. A tensor is a vector or matrix of n-dimensions that represents all types of data. All values in…

Rajil TL

What is Jupyter Notebook?

A Jupyter notebook is a web application that allows the user to write codes and rich text elements. Inside the Notebooks, you can write paragraph, equations, title, add links, figures…

Rajil TL

TensorFlow Versions

TensorFlow supports computations across multiple CPUs and GPUs. It means that the computations can be distributed across devices to improve the speed of the training. With parallelization, you don't need…

Rajil TL

MICROSOFT COGNITIVE TOOLKIT(CNTK)

Microsoft toolkit, previously know as CNTK, is a deep learning library developed by Microsoft. According to Microsoft, the library is among the fastest on the market. Microsoft toolkit is an…

Rajil TL

Options to Load Data into TensorFlow

The first step before training a machine learning algorithm is to load the data. There is two commons way to load data: 1. Load data into memory: It is the…

Rajil TL

Why is TensorFlow popular?

TensorFlow is the best library of all because it is built to be accessible for everyone. Tensorflow library incorporates different API to built at scale deep learning architecture like CNN…

Rajil TL