Machinelearning Python

Notes on Machine Learning with DataSets and Examples
Alternatives To Machinelearning Python
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Tensorflow Examples42,312
7 months ago218otherJupyter Notebook
TensorFlow Tutorial and Examples for Beginners (support TF v1 & v2)
Nlp Progress21,600
20 days ago49mitPython
Repository to track the progress in Natural Language Processing (NLP), including the datasets and the current state-of-the-art for the most common NLP tasks.
Datasets16,304920818 hours ago52June 15, 2022620apache-2.0Python
🤗 The largest hub of ready-to-use datasets for ML models with fast, easy-to-use and efficient data manipulation tools
Vision14,0322,3061,413a day ago32June 28, 2022905bsd-3-clausePython
Datasets, Transforms and Models specific to Computer Vision
Tensor2tensor13,66382112 days ago79June 17, 2020589apache-2.0Python
Library of deep learning models and datasets designed to make deep learning more accessible and accelerate ML research.
Fashion Mnist9,856
a year ago24mitPython
A MNIST-like fashion product database. Benchmark :point_down:
Doccano7,779
3 days ago28May 19, 2022242mitPython
Open source annotation tool for machine learning practitioners.
Facets7,131314 days ago3July 24, 201982apache-2.0Jupyter Notebook
Visualizations for machine learning datasets
Awesome Project Ideas6,856
2 months ago1mit
Curated list of Machine Learning, NLP, Vision, Recommender Systems Project Ideas
Techniques6,342
25 days agoapache-2.0
Techniques for deep learning with satellite & aerial imagery
Alternatives To Machinelearning Python
Select To Compare


Alternative Project Comparisons
Readme

This repository contains Machine Learning Concepts/Analysis and Algorithms examples.

Table of Contents


  • Analysis on Titanic Dataset
    This example is analysis on Titanic Dataset. [source Code]
    • Load the data[titanic.csv]
    • Clean and Prepare Data
    • Create Sparse Matrix
    • Split Dataframe as: image Representation of Split: image
    • Apply ML Model
    • Make Prediction
    • Cross Validate image
    • Make Predictions

  • Analysis on IRIS Dataset
    This example is analysis on IRIS Dataset. [source Code]
    • Load the data[iris.csv]
    • Clean and Prepare Data
    • Split Dataframe as above for Pictorial representation
    • Apply ML Model
    • Make Prediction
    • Cross Validate
    • Make Predictions

  • Analysis on House Price Dataset
    This example is analysis on House Price Dataset.[Source Code]
    • Load the data[HousePricingTutorial.csv]
    • Normalize
    • Analyse Correlation
    • Clean and Prepare Data
    • Split Dataframe as above for Pictorial representation
    • Apply ML Model
    • Make Prediction
    • Cross Validate Refer above for Pictorial representation
    • Make Predictions

  • Understanding Dataset
    This example explains basic computing options with Pandas Dataframe/Series [Source Code]
    • Load the data[Loan.csv]
    • Undersatnding Types
    • Column Operations
    • Row Operations

  • Pandas Read From URL
    This example explains how we can access data present on Cloud(Azure Cloud Storage). [Source Code]
    • Storing Data on Cloud (Azure Cloud Storage).
    • Accessing the Data using Pandas Library.

  • Data Consolidation
    This example explains various methods of consolidating Data. [Source Code]
    • Concatinating Dataframe
    • Appending Dataframe
    • Joining Dataframe
    • Merging Dataframe

  • Pandas Profiling
    This example explains how to do Data Profiling using pandas-profiling library. [Source Code]
    • Load the Data [iris.csv]
    • Apply profiling
    • Save the ouput in html


  • Pivot Tables
    This example explains the concept of Pivot Tables and GroupBy. [Source Code]
    • Load the data[schools_with_btoilet.csv/schools_with_gtoilet.csv]
    • Apply Panda's Pivot Method image

  • Data Visualization
    This example explains how to Visualize data in various forms of Graphs. [Source Code]
    • Pair Plot
    • Line Graph
    • Histo Graph
    • Bar Plot
    • Scatter Plots
    • Box Plots
    • Heat Maps

  • Feature Engineering
    This example explains common methods used for Feature Engineering. [Source Code]
    • Load the data[mercedesbenz.csv]
    • Nominal Encoding (One-Hot Normal | One-Hot KDD | Count/Frequncy)
    • Ordinal Encoding (System | Custom)

  • Performance Measure for Classification
    This example explains Concepts like Confusion Matrix | Accuracy | Precision | Recall | F1-Score. [Source Code]
    • Understanding Confusion Matrix
    • Understanding Accuracy
    • Understanding Precision
    • Understanding Recall
    • Understanding F1-Score image

  • Bias-Variance TradeOff
    This Sheet explains the concept of Bias-Variance TradeOff.

  • Curse-Of-Dimentionality
    This Sheet explains the concept of Curse Of Dimentionality.

  • Decision Trees
    This example explains Decison Trees' theory with an implementation in Python. [Source Code]
    • Load the data[IRIS.csv]
    • Decision Trees Classification using GINI Index
    • Decision Trees Classification using Information Gain
    • Visualizing Decision Trees
    • Decision Trees Regression

  • Support Vector Machines
    This example explains Decison Trees' basic theory with an implementation in Python. [Source Code]
    • Load the data[IRIS.csv]
    • Computing SVM image

  • K-Means Clustering
    This example explains K-Means Clustering basic theory with an implementation in Python. [Source Code]
    • Load the data[IRIS.csv]
    • Computing K-Means Clustering
    • Determining K - Elbow Method | Silhouette Method
    • Mini-Batch K-Means image

  • FP-Growth
    This example explains FP-Growth basic theory with an implementation in Python. [Source Code]
    • Install pyfpgrowth [pip install pyfpgrowth]
    • Prepare Dummy Data
    • Computing FP-Growth

  • Gausian Naive Bayes
    This example explains Gaussian Naive Bayes basic theory with an implementation in Python. [Source Code]
    • Load the data[IRIS.csv]
    • Computing Gaussian Naive Bayes using scikit-learn
    • Computing Gaussian Naive Bayes by logic

  • Simple Linear Regression
    This example explains Simple Linear Regression's basic theory with an implementation in Python. [Source Code]
    • Load the data[SimpleLinearRegression.csv]
    • Computing Simple Linear Regression by logic
    • Computing Simple Linear Regression using Scikit-learn image

  • Polynomial Linear Regression
    This example explains Polynomial Linear Regression's implementation in Python. [Source Code]
    • Load the data[DatasetForSimpleAndPolynomialLinearRegression.csv]
    • Computing Simple Linear Regression using Scikit-learn
    • Computing Polynomial Linear Regression
    • Comparision of different Polynomial Linear Regression graphs based on different degrees. image

  • KNN
    This example explains KNN Algorithm and its implementation in Python. [Source Code]
    • Load the data[IRIS.csv]
    • Compute KNN
    • Compute KNN on different values of K

  • Logistic Regression
    This example explains concepts of Logistic Regression Algorithm and its implementation in Python. [Source Code]
    • Load the data[IRIS.csv]
    • Compute Logistic Regression

Popular Dataset Projects
Popular Machine Learning Projects
Popular Data Processing Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Machine Learning
Dataset
Pandas
Data Visualization
Dataframe
Profiling
Linear Regression
Logistic Regression
Decision Trees