Industrial Training




Machine Learning with Python - Ecosystem


An Introduction to Python

Python is a popular object-oriented programing language having the capabilities of high-level programming language. Its easy to learn syntax and portability capability makes it popular these days. The followings facts gives us the introduction to Python βˆ’


  • Python was developed by Guido van Rossum at Stichting Mathematisch Centrum in the Netherlands.
  • It was written as the successor of programming language named β€˜ABC’.
  • It’s first version was released in 1991.
  • The name Python was picked by Guido van Rossum from a TV show named Monty Python’s Flying Circus.
  • It is an open source programming language which means that we can freely download it and use it to develop programs. It can be downloaded from www.python.org..
  • Python programming language is having the features of Java and C both. It is having the elegant β€˜C’ code and on the other hand, it is having classes and objects like Java for object-oriented programming.
  • It is an interpreted language, which means the source code of Python program would be first converted into bytecode and then executed by Python virtual machine.

Strengths and Weaknesses of Python


Every programming language has some strengths as well as weaknesses, so does Python too.


Strengths


According to studies and surveys, Python is the fifth most important language as well as the most popular language for machine learning and data science. It is because of the following strengths that Python has βˆ’


Easy to learn and understand βˆ’ The syntax of Python is simpler; hence it is relatively easy, even for beginners also, to learn and understand the language.


Multi-purpose language βˆ’ Python is a multi-purpose programming language because it supports structured programming, object-oriented programming as well as functional programming.


Huge number of modules βˆ’ Python has huge number of modules for covering every aspect of programming. These modules are easily available for use hence making Python an extensible language.


Support of open source community βˆ’ As being open source programming language, Python is supported by a very large developer community. Due to this, the bugs are easily fixed by the Python community. This characteristic makes Python very robust and adaptive.


Scalability βˆ’ Python is a scalable programming language because it provides an improved structure for supporting large programs than shell-scripts.


Weakness


Although Python is a popular and powerful programming language, it has its own weakness of slow execution speed.


The execution speed of Python is slow as compared to compiled languages because Python is an interpreted language. This can be the major area of improvement for Python community.


Installing Python

For working in Python, we must first have to install it. You can perform the installation of Python in any of the following two ways βˆ’


  • Installing Python individually
  • Using Pre-packaged Python distribution: Anaconda

Let us discuss these each in detail.


Installing Python Individually


If you want to install Python on your computer, then then you need to download only the binary code applicable for your platform. Python distribution is available for Windows, Linux and Mac platforms.


The following is a quick overview of installing Python on the above-mentioned platforms βˆ’


On Unix and Linux platform


With the help of following steps, we can install Python on Unix and Linux platform βˆ’


  • First, go to www.python.org/downloads/
  • Next, click on the link to download zipped source code available for Unix/Linux.
  • Now, Download and extract files.
  • Next, we can edit the Modules/Setup file if we want to customize some options.
        
  • Next, write the command run ./configure script
  • make
  • make install

On Windows platform


With the help of following steps, we can install Python on Unix and Linux platform βˆ’


  • First, go to www.python.org/downloads/
  • Next, click on the link for Windows installer python-XYZ.msi file. Here XYZ is the version we wish to install.
  • Now, we must run the file that is downloaded. It will take us to the Python install wizard, which is easy to use. Now, accept the default settings and wait until the install is finished.

On Macintosh platform


For Mac OS X, Homebrew, a great and easy to use package installer is recommended to install Python 3. In case if you don't have Homebrew, you can install it with the help of following command βˆ’


$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/
master/install)"

It can be updated with the command below βˆ’

$ brew update

Now, to install Python3 on your system, we need to run the following command βˆ’


$ brew install python3

Using Pre-packaged Python Distribution: Anaconda


Anaconda is a packaged compilation of Python which have all the libraries widely used in Data science. We can follow the following steps to setup Python environment using Anaconda βˆ’


  • Step 1 βˆ’ First, we need to download the required installation package from Anaconda distribution. The link for the same is www.anaconda.com/distribution/. You can choose from Windows, Mac and Linux OS as per your requirement.

  • Step 2 βˆ’ Next, select the Python version you want to install on your machine. The latest Python version is 3.7. There you will get the options for 64-bit and 32-bit Graphical installer both.

  • Step 3 βˆ’ After selecting the OS and Python version, it will download the Anaconda installer on your computer. Now, double click the file and the installer will install Anaconda package.

  • Step 4 βˆ’ For checking whether it is installed or not, open a command prompt and type Python as follows

supervised


You can also check this in detailed video lecture at https://www.tutorialspoint.com/python_essentials_online_training/getting_started_with_anaconda.asp.


Why Python for Data Science?

Python is the fifth most important language as well as most popular language for Machine learning and data science. The following are the features of Python that makes it the preferred choice of language for data science βˆ’


Extensive set of packages


Python has an extensive and powerful set of packages which are ready to be used in various domains. It also has packages like numpy, scipy, pandas, scikit-learn etc. which are required for machine learning and data science.


Easy prototyping


Another important feature of Python that makes it the choice of language for data science is the easy and fast prototyping. This feature is useful for developing new algorithm.


Collaboration feature


The field of data science basically needs good collaboration and Python provides many useful tools that make this extremely.


One language for many domains


A typical data science project includes various domains like data extraction, data manipulation, data analysis, feature extraction, modelling, evaluation, deployment and updating the solution. As Python is a multi-purpose language, it allows the data scientist to address all these domains from a common platform.


Components of Python ML Ecosystem


In this section, let us discuss some core Data Science libraries that form the components of Python Machine learning ecosystem. These useful components make Python an important language for Data Science. Though there are many such components, let us discuss some of the importance components of Python ecosystem here βˆ’


  • Jupyter Notebook βˆ’ Jupyter notebooks basically provides an interactive computational environment for developing Python based Data Science applications.


Hi I am Pluto.