0% found this document useful (0 votes)
58 views4 pages

The Core Language: Adding List Elements

This document outlines the topics that will be covered in a Machine Learning Using Python advanced certificate course. The course introduces artificial intelligence and machine learning concepts. It then covers various machine learning algorithms like linear regression, polynomial regression, random forest, decision tree regression, and regularization. The course teaches how to implement these algorithms in Python using techniques like gradient descent.

Uploaded by

Ankit Sharma
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
58 views4 pages

The Core Language: Adding List Elements

This document outlines the topics that will be covered in a Machine Learning Using Python advanced certificate course. The course introduces artificial intelligence and machine learning concepts. It then covers various machine learning algorithms like linear regression, polynomial regression, random forest, decision tree regression, and regularization. The course teaches how to implement these algorithms in Python using techniques like gradient descent.

Uploaded by

Ankit Sharma
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

The Core Language 7.

2 Adding List Elements


1 Introduction 7.3 Mutability
1.1 Why Python? 7.4 Methods

2 How is Python Different? 8 Dictionaries


2.1 Python Concepts 8.1 Making a dictionary
2.1.1 Dynamic vs. Static Types 8.2 Basic operations
2.1.2 Interpreted vs. Compiled 8.3 Dictionary details
2.1.3 Prototyping 8.4 Operation
2.1.4 Procedural vs. Object-
Oriented Programming 9 Tuples
9.1 Why Use Tuples?
3 Comparison of Programming Languages 9.2 Sequence Unpacking
3.1 C 9.3 Methods
3.2 C++
3.3 Java 10 Files
3.4 C# 10.1 File Operations
3.5 Python 10.2 Files and Streams
10.3 Creating a File
10.4 Reading From a File
4 The Python Interpreter
10.5 Iterating Through Files
4.1 Launching the Python interpreter
10.6 Seeking
4.1.1 Windows
10.7 Serialization
4.1.2 Mac
4.2 Python Versions
11 Statements
11.1 Assignment
Using the Python Command Prompt 11.2 Expressions/Calls
4.3 Commenting Python 11.3 Printing
Launching Python programs 11.4 if Tests
4.4
Integrated Development Environments 11.5 while Loops
4.5
11.6 for Loops
5 Types and Operators
11.7 pass Statement
5.1 Python Syntax 11.8 break and continue Statements
5.1.1 Indentation
11.9 try, except, finally and raise
5.1.2 Multiple Line Spanning
Statements
5.2 Python Object Types 11.10 import and from Statements
5.3 Python Numbers 11.11 def and return Statements
11.12 Class Statements
6 Strings
6.1 Basic string operations
12 Lambda Expression
6.2 Indexing and slicing strings
12.1 Making Python Do Something
6.3 String Formatting
12.2 Creating Lambda Expression
6.4 Combining and Separating Strings
12.3 Map, Filter and Reduce
6.5 Regular Expressions
12.4 Default Arguments

7 Lists
7.1 List usage

ADDRESS:13,Gulab Chand ki Bagichi,Behind Javar Estate,Gandhi Road. Thatipur Chauraha,Gwalior [M.P]

+919301123085,+919752576100 0751-4062091
13 Exceptions 20 Distributing Your Program
13.1 Exception Class Hierarchy
13.2 User-Defined Exceptions
II Graphical User Interfaces
14 Object Oriented Programming
21 Overview of Graphical User Interfaces
14.1 Learning Python Classes
21.1 Introduction
14.2 How Are Classes Better?
21.2 GUI Controls(Tkinter/Qt5)
14.3 Improving Your Class Standing
14.4 So What Does a Class Look Like?
22 Web Scripting
14.5 “New-style” classes
14.6 A Note About Style HTML 5

15 More OOPS 23 Web Application


15.1 Inheritance 23.1 CGI Scripting
15.2 Operator Overloads 23.2 D’Jango
15.3 Class Methods
15.4 Abstraction & Polymorphism 24 Control Hardware Devices Using Python
24.1 Working on Sensors, Led, Motors etc.
24.2 Home Automation
16 Databases 24.3 Working With Sim900
16.1 How to Use a Database
24.4 Creating Various Application Using Python
16.2 Working With a Database
To Control Hardware
16.3 Using SQL to Query a Database
16.4 Python and SQLite 25 Raspberry Pi B+3
16.5 Creating an SQLite DB 25.1 Introduction to Raspberry Pi
16.6 Pulling Data from a DB 25.2 Installation & Setting up Pi
16.7 SQLite Database Files 25.3 Setting up GPIO Pins
25.4 Serial Communication with Pi
17 Threading 25.5
Synchronous Peripheral Interfaces
17.1 Creating Threads with Threading 25.6
Sensors Interfacing
Module
17.2 Synchronizing Threads 26 IOT & Cloud Interfacing
17.3 Priority Queue 26.1 Introduction to IOT
26.2 Introduction of Cloud Computing
18 Networking 26.3 AWS/PUBNUB/AZURE Cloud
18.1 Programming Socket 26.4 Creating Dashboard on Cloud
Programming 26.5 Creating IOT Device on Cloud
18.2 Application on Socket 26.6 Sending & Fetching Data from Cloud
26.7 M2M Communication Using Cloud
19 Email Services
19.1 Sending Email
19.2 Sending Email with Attachments

ADDRESS:13,Gulab Chand ki Bagichi,Behind Javar Estate,Gandhi Road. Thatipur Chauraha,Gwalior [M.P]

+919301123085,+919752576100 0751-4062091
Machine Learning Using Python [Advanced Learning Certificate]
Machine Learning career opportunities are exploding worldwide. Many organizations are
investing heavily in Machine Learning capabilities to maintain a cutting edge in the
market. Prerequisite knowledge for this course are fundamentals of Python programming,
high school mathematics and basics of statistics.

Lesson 1: Introduction to Artificial In this lesson, you will unleash the real
Intelligence and Machine Learning power of Machine Learning with
Learning objectives: In this lesson, you will polynomial regression, linear regression,
recognize the importance of data economy random forest, decision tree regression,
and understand the emergence and gradient descent, and regularization.
applications of Artificial Intelligence and Regression and its types
Machine Learning. Linear regression: Equations and algorithms
✓ Artificial Intelligence
Lesson 5: Classification Learning objectives:
✓ Machine Learning
✓ Machine Learning algorithms In this lesson, you will learn about
✓ Applications of Machine Learning classification, logistic regression, K-nearest
neighbors, support vector machines, and
Naive Bayes.
Lesson 2: Techniques of Machine Learning
✓ Meaning and types of classification
Learning objectives: In this lesson, you will
✓ Logistic regression
take a step further, to understand the
✓ K-nearest neighbors
techniques of Machine Learning such as
supervised, unsupervised, semi-supervised ✓ Support vector machines
and reinforcement learning. ✓ Kernel support vector machines
✓ Naive Bayes
✓ Supervised learning ✓ Decision tree classifier
✓ Unsupervised learning ✓ Random forest classifier
✓ Semi-supervised and Reinforcement
learning Lesson 6: Unsupervised learning:
✓ Bias and variance trade-off Clustering Learning objectives: In this
✓ Representation learning lesson, you will learn and implement a few
more algorithms within the unsupervised
Lesson 3: Data Preprocessing learning category.
Learning objectives: In this lesson, you will
✓ Clustering algorithms
learn how to prepare the data for machine
✓ K-means clustering
learning algorithms with feature
engineering, feature scaling, data sets and Lesson 7: Introduction to Deep
dimensionality reduction. Learning objectives:
✓ Data preparation This last lesson of the course, gives you a
✓ Feature engineering peek into the world of deep learning and
✓ Feature scaling how it is related to machine learning.
✓ Datasets ✓ Meaning and importance of Deep
✓ Dimensionality reduction Learning
✓ Artificial Neural Networks

Lesson 4: Regression learning objectives


ADDRESS:13,Gulab Chand kiBagichi,BehindJavarEstate,Gandhi Road.ThatipurChauraha,Gwalior [M.P]
+919301123085,+919752576100 0751-4062091

You might also like