Sorting Algorithms

Sorting is a process of arranging elements in increasing or decreasing order. There are different ways of classifying the algorithms, like time complexity, space complexity, stability, Internal/external sorting, recursive/non-recursive sortings. The major Sorting techniques are 1)-Insertion Sort O(N2)  2)-Bubble Sort O(N2)  2)-Selection sort O(N2)  3)-Quick Sort O(N2) 4)-Merge Sort O(NlogN) 5)-Heap Sort O(NlogN) 6)-Bucket Sort …

AI- Artificial Intelligence

The term AI was first coined by John McCarthy in 1956 in Dartmouth conference. As per Wiki- In 1955 John McCarthy, then a young Assistant Professor of Mathematics at Dartmouth College, decided to organize a group to clarify and develop ideas about thinking machines. He picked the name ‘Artificial Intelligence’ for the new field. He chose the …

Time Series Analysis

Time Series is a statistical data that are arranged in chronological order over a period of time. There are various forces that affect the value of phenomenon in a time series, these may be divided into four categories, commonly known as the factor of time series. 1- Simple trend or Long-term variation or Secular trend. …

NetworkX

One of the powerful library used for graph building activities is NetworkX. It is widely used in solving graph problems and network related queries. Lets have a look into NetworkX now. In order to use it with python import it, import networkx as nx The following basic graph types are provided as Python classes: Graph This class …

Machine is learning Hindi

How much time we have spent in order to learn ‘ABCD..’ it’s about a year. Now, we are living in the era of machines and assume your machine asks you to teach ‘Hindi’ –the fourth most speaking language around the world. With the help of deep learning, it is too easy and effective. So moving …

Word Encoding and Embedding Algorithms

When we start communicating with a machine there is only one issue machine never understand different categories by name. If we tell a machine the colour of a balloon is red it will not understand  ‘Red’ rather than it will keep it as 255,0,0 0r 1,0,0 it means it encodes it in its own mother …