Giter VIP home page Giter VIP logo

data-science-complete-tutorial's Introduction

In person training - https://www.edyoda.com/program/data-scientist-program

Machine Learning Git Codebook

Lesson 1 : Introduction to Numpy (Video)
Lesson 2 : Data Wrangling using Pandas
Lesson 3 : Plotting in Python
Lesson 4 : Linear Models for Regression & Classification
Lesson 5 : Preprocessing Data
Lesson 6 : Decision Trees
Lesson 7 : Naive Bayes
Lesson 8 : Composite Estimators
Lesson 9 : Model Selection and Evaluation
Lesson 10 : Feature Selection Techniques
Lesson 11 : Nearest Neighbors
Lesson 12 : Clustering Techniques
Lesson 13 : Anomaly Detection
Lesson 14 : Support Vector Machines
Lesson 15 : Dealing with Imbalanced Classes
Lesson 16 : Ensemble Methods

Case Study of Classic ML Problems

Case 1 : Linear Regression
Case 2 : Cancer Prediction
Case 3 : Online Learning
Case 4 : Customer Churn Prediction
Case 5 : Income Prediction
Case 6 : Predicting Employee Exit
Case 7 : Face Generation
Case 8 : Finding Similar Houses

The Free courses available on EdYoda

Python - https://www.edyoda.com/course/98

Angular - https://www.edyoda.com/course/1227

Machine Learning - https://www.edyoda.com/course/1416

Dog Breed Prediction Project - https://www.edyoda.com/course/1336

AI Project - Web application for Object Identification - https://www.edyoda.com/course/1185

Numpy - https://www.edyoda.com/course/1263

Tensorflow - https://www.edyoda.com/course/99

Amazon Web Services - https://www.edyoda.com/course/1410

DevOps - https://www.edyoda.com/course/100

Android -
https://www.edyoda.com/course/101
https://www.edyoda.com/course/1173

Deep Reinforcement Learning - https://www.edyoda.com/course/1421

Knowledge Graphs, Deep Learning, Reasoning - https://www.edyoda.com/course/1420

Natural Language Processing - https://www.edyoda.com/course/1419

GAN Miniseries - https://www.edyoda.com/course/1418

Implementing Java Api's work - https://www.edyoda.com/channel/2398/

Introduction to Neural Nets - https://www.edyoda.com/channel/2500/

Videos from deep cognition studio - https://www.edyoda.com/channel/2380/

About Us

We want to democratize education and create free quality course content.

data-science-complete-tutorial's People

Contributors

awantik avatar crazymuse avatar kedar30 avatar vaibhav-lone avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

data-science-complete-tutorial's Issues

Error message in example

Rolling for window based operation
In [2]:
titanic_data.Age.rolling(window=5,min_periods=1).agg(['sum','min'])

NameError Traceback (most recent call last)
in ()
----> 1 titanic_data.Age.rolling(window=5,min_periods=1).agg(['sum','min'])

NameError: name 'titanic_data' is not defined
For columns containing string, we have str utilities

Some mistakes in 1. Notebook

  1. In 1.4.2 Experiment : Change the value of matrices by Reference adding 10 to elements with even indices is wrong:

Add 10 to all the even indexes in matrix
mat = np.array([[1,2,3],[4,5,6],[7,8,9]])
mat1 = mat[::2,::2]
mat1 += 10

Nice, but it reduces matrix dimension from 3x3 to 2x2

  1. Please, check 1.3.7 Horizontal Matrix splitting :

mat = np.random.randint(0,6,(3,7))
sp1,sp2,sp3 = np.hsplit(mat,[4,6])
print ('Original matrix of shape %s, is \n%s\n'%(mat.shape,mat))
print ('First split of shape %s, is \n%s\n'%(sp1.shape,sp1))
print ('Second split of shape %s, is \n%s\n'%(sp2.shape,sp2))
print ('Third split of shape %s, is \n%s\n'%(sp3.shape,sp3))

Are you sure, that it must be always split on [4,6] indices? If yes, would be better to explain these actions, because it's difficult to understand.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.