Statistics Foundation Series: For Data Science & Machine Learning
Hey Developer, I’m back with a new series of blogposts on the foundation of statistics for data science and machine learning. Here will be covering all the topics that are essential for good understanding of data science and machine learning concepts.
Bayes Theorem – Statistics Part 20
Hey Developer’s, I’m back with a new topic which is Bayes Theorem in the series of statistics foundations.
Law of Total Probability – Statistics Part 19
Hey Developer’s, I’m back with a new topic which is Law of Total Probability in the series of statistics foundations.
Multiplicative and Additive Law Of Probability – Statistics Part 18
Hey Developer’s, I’m back with a new topic which is Multiplicative and Additive Law Of Probability in the series of statistics foundations.
Independence Of Events – Statistics Part 17
Hey Developer’s, I’m back with a new topic which is Independence Of Events in the series of statistics foundations.
Conditional and Unconditional Probability – Statistics Part 16
Hey Developer’s, I’m back with a new topic which is Conditional and Unconditional Probability in the series of statistics foundations.
Probability of Union Of Events – Statistics Part 15
Hey Developer’s, I’m back with a new topic which is Probability of Union Of Events in the series of statistics foundations.
Multinomial Coefficients – Statistics Part 14
Hey Developer’s, I’m back with a new topic which is Multinomial Coefficients in the series of statistics foundations.
Binomial Coefficients – Statistics Part 13
Hey Developer’s, I’m back with a new topic which is Binomial Coefficients in the series of statistics foundations.
Combinatorics – Statistics Part 12
Hey Developer’s, I’m back with a new topic which is Combinatorics in the series of statistics foundations.
Permutations – Statistics Part 11
Hey Developer’s, I’m back with a new topic which is Permutations in the series of statistics foundations.
Counting Sample Points – Statistics Part 10
Hey Developer’s, I’m back with a new topic which is Counting Sample Points in the series of statistics foundations.
Discrete and Continuous Probability – Statistics Part 9
Hey Developer’s, I’m back with a new topic which is Discrete and Continuous Probability in the series of statistics foundations.
Rules of Probability – Statistics Part 8
Hey Developer’s, I’m back with a new topic which is Rules of Probability in the series of statistics foundations.
Introduction To Probability and Examples – Statistics Part 7
Hey Developer’s, I’m back with a new topic which is Introduction To Probability and Examples in the series of statistics foundations.
Independence and Dependence Events – Statistics Part 6
Hey Developer’s, I’m back with a new topic which is Independence Of Events in the series of statistics foundations.
Set Operations On Events – Statistics Part 5
Hey Developer’s, I’m back with a new topic which is Set Operations On Events in the series of statistics foundations.
Experiments, Events, Sample Spaces & Points – Statistics Part 4
Hey Developer’s, I’m back with a new topic which is Experiments, Events, Sample Spaces & Points in the series of statistics foundations.
Cardinality, Set Complement and Set Laws – Statistics Part 3
Hey Developer’s, I’m back with a new topic which is Cardinality, Set Complement and Set Laws in the series of statistics foundations.
Set Membership & Set Operations – Statistics Part 2
Hey Developer’s, I’m back with a new topic which is a Sets Membership in the series of statistics foundations.
Introduction To Sets – Statistics Part 1
Hey Developer’s, I’m back with a new topic which is an introduction to sets in the series of statistics foundations.
Introduction To Decision Trees – Part 1
Decision Tree is a type of Supervised Learning Algorithm wherein the data is continuously split on the basis of certain parameters. To understand the decision tree in a better way let’s take an example
Going Deeper Into Decision Trees – Part 2
Decision Tree is a type of Supervised Learning Algorithm wherein the data is continuously split on the basis of certain parameters. To understand the decision tree in a better way let’s take an example
Cloud Computing
Cloud Computing is the delivery of IT resources over the internet. The cloud is like a virtual data center accessible via the internet that allows you to manage.
Google takes on AWS and Azure in India with Airtel cloud deal
Google has inked a deal with India’s third-largest telecom operator as the American giant looks to grow its cloud customer base in the key overseas market that is increasingly emerging as a new cloud battleground for AWS and Microsoft .
How to Become a Better Coder?
That list is great for checking whether a particular programming language is in use today. However, if you’re new to programming, I don’t recommend choosing a language solely based on a list.
A-Z Machine Learning Resources
Machine learning resources containing Deep Learning, Machine Learning and Artificial Intelligent resources. A-Z Machine learning resources to learn machine learning.
Affine Transformation- Image Processing In TensorFlow- Part 1
Affine Transformation helps to modify the geometric structure of the image, preserving parallelism of lines but not the lengths and angles. It preserves collinearity and ratios of distances. It is one type of method we can use in Machine Learning and Deep Learning for Image Processing and also for Image Augmentation.
What is AI, ML and DL?
AI, ML and DL are related to each other. AI is a superset of ML and DL. What we do in the field of ML and DL all comes under AI. To better understand all of them, Let’s dive in…
Hyperparameters in Machine Learning
A hyperparameter is a parameter or a variable we need to set before applying a machine learning algorithm into a dataset.These parameters express “High Level” properties of the model such as its complexity or how fast it should learn. Hyperparameters are usually fixed before the actual training process begins.
Transfer Learning With MobileNetV2
In this notebook we will be learning how to use Transfer Learning to create the powerful convolutional neural network with a very little effort, with the help of MobileNetV2 developed by Google that has been trained on large dataset of images.
Is There a Standard Heuristic for Model Tuning?
Training error should steadily decrease, steeply at first, and should eventually plateau as training converges.If the training has not converged, try running it for longer.
Rules of calculus — Multivariate
In the real world, it is very difficult to explain behavior as a function of only one variable, and economics is no different.
Understanding Underscores in Python
Ever wonder why sometimes attributes, methods in Python start with single underscore, double underscore(“dunder”), end with single…
High Order functions
A high order function is a function that operates on other functions, either by taking a function…
Dealing with multiple iterables in Python using zip()
Python’s zip() function creates an iterator that will aggregate elements from two or more iterables. zip() maps…
What is Deep Learning?
Deep Learning is a subfield of Machine Learning because it makes use of Deep Neural Networks inspired by the structure and function of the brain called Artificial Neural Networks.
Linear Regression In ML
Regression is basically a statistical approach of finding a relationship between the variables. Linear regression is one type of regression we use in Machine Learning.
15 Best Machine Learning Course in 2019
Here are 15 Best Machine Learning Course for Machine Learning. It will give you the great knowledge about Machine Learning and Deep Learning.
How Computers Interpret Images?
We all love to see beautiful images, but have you ever thought how do computers see an image? In this tutorial, we will give an explanation of how images are stored in a computer.
Applications Of Convolutional Neural Networks
CNN’s achieve state of the art results in the variety of problem areas including Voice User Interfaces, Natural Language Processing, and Computer Vision.
TensorFlow 2.0
TensorFlow the massive open-source platform to develop large scale AI and Deep Learning Models has recently been updated to its newer form TensorFlow 2.0.
Best Laptops For Deep Learning and Machine Learning
Though there are various fields out there which requires a laptop with good specifications and you can get it at an affordable price but that’s not the same case for deep learning.
15 Best Books for Machine Learning
Machine Learning today is one of the most sought-after skills in the market. Here are some of the best books which you can use to learn Machine Learning.
Numpy Tutorial – Quick Guide
The NumPy library is the core library for scientific computing in Python. It provides a high-performance multidimensional array object, and tools for working with these arrays.
String in Python
Textual data in Python is handled with str objects. Since default handling of Text in Python2 and…
User define Function in Python
A function is a block of code that takes input(s), performs some computation and returns a result….
Tuple in Python
Tuple is a data structure in Python which is an immutable , ordered collection of objects. Tuples…
Sets in Python
A Set in Python is a data structure that contains an un-ordered collection of distinct objects. A…
Dictionary in Python
A dictionary is an un-ordered data structure, its elements are stored as a key:value pair.Key must be…