Skip to main content

Posts

Showing posts from March, 2019

Scikit learn design principles

In this post we are going to take a look at the design principles of the very popular library which is Scikit Learn. If you are into machine learning and deep learning then you might be familiar with the scikit learn library. But those who are beginners, they might have a small hint of how things work around here but through this post will help you to get a general idea about this opensource library. Following topics will be covered in this post: 1.What is Scikit learn 2.Some details about scikit learn 3.list and describe the design principles 1.What is scikit learn??  Scikit learn is an open source library written in python which supports many machine learning algorithms like Classification,Regression,Rlustering and many other algorithms.It was designed to work in harmony with other libraries like NumPy and SciPy. 2.Some more details about scikit learn The first public release of Scikit was on February 1,2010 and was designed extensively by developers at the French I...

Managing data in Numpy- Part 2

This post is the second part for the data management in numpy. We are going to continue with different set of functions and its syntax, code snippets and description in this post.