All Projects → hyunblee → Islr With Python

hyunblee / Islr With Python

Introduction to Statistical Learning with R을 Python으로

Projects that are alternatives of or similar to Islr With Python

Machine Learning
notebooks with example for machine learning examples
Stars: ✭ 45 (-38.36%)
Mutual labels:  jupyter-notebook, scikit-learn
Mlkatas
A series of self-correcting challenges for practicing your Machine Learning and Deep Learning skills
Stars: ✭ 58 (-20.55%)
Mutual labels:  jupyter-notebook, scikit-learn
Data Science Complete Tutorial
For extensive instructor led learning
Stars: ✭ 1,027 (+1306.85%)
Mutual labels:  jupyter-notebook, scikit-learn
Machinelearningcourse
A collection of notebooks of my Machine Learning class written in python 3
Stars: ✭ 35 (-52.05%)
Mutual labels:  jupyter-notebook, scikit-learn
Text Analytics With Python
Learn how to process, classify, cluster, summarize, understand syntax, semantics and sentiment of text data with the power of Python! This repository contains code and datasets used in my book, "Text Analytics with Python" published by Apress/Springer.
Stars: ✭ 1,132 (+1450.68%)
Mutual labels:  jupyter-notebook, scikit-learn
Computer Vision
Computer vision sabbatical study materials
Stars: ✭ 39 (-46.58%)
Mutual labels:  jupyter-notebook, scikit-learn
Polyaxon Examples
Code for polyaxon tutorials and examples
Stars: ✭ 57 (-21.92%)
Mutual labels:  jupyter-notebook, scikit-learn
Python for ml
brief introduction to Python for machine learning
Stars: ✭ 29 (-60.27%)
Mutual labels:  jupyter-notebook, scikit-learn
Python Hierarchical Clustering Exercises
Exercises for hierarchical clustering with Python 3 and scipy as Jupyter Notebooks
Stars: ✭ 62 (-15.07%)
Mutual labels:  jupyter-notebook, scikit-learn
Data Science Cookbook
🎓 Jupyter notebooks from UFC data science course
Stars: ✭ 60 (-17.81%)
Mutual labels:  jupyter-notebook, scikit-learn
The Deep Learning With Keras Workshop
An Interactive Approach to Understanding Deep Learning with Keras
Stars: ✭ 34 (-53.42%)
Mutual labels:  jupyter-notebook, scikit-learn
Mlatimperial2017
Materials for the course of machine learning at Imperial College organized by Yandex SDA
Stars: ✭ 71 (-2.74%)
Mutual labels:  jupyter-notebook, scikit-learn
Prediciting Binary Options
Predicting forex binary options using time series data and machine learning
Stars: ✭ 33 (-54.79%)
Mutual labels:  jupyter-notebook, scikit-learn
The Hello World Of Machine Learning
Learn to build a basic machine learning model from scratch with this repo and tutorial series.
Stars: ✭ 41 (-43.84%)
Mutual labels:  jupyter-notebook, scikit-learn
Machine Learning Alpine
Alpine Container for Machine Learning
Stars: ✭ 30 (-58.9%)
Mutual labels:  jupyter-notebook, scikit-learn
Ds and ml projects
Data Science & Machine Learning projects and tutorials in python from beginner to advanced level.
Stars: ✭ 56 (-23.29%)
Mutual labels:  jupyter-notebook, scikit-learn
Pythondatasciencehandbook
The book was written and tested with Python 3.5, though other Python versions (including Python 2.7) should work in nearly all cases.
Stars: ✭ 31,995 (+43728.77%)
Mutual labels:  jupyter-notebook, scikit-learn
Deep learning projects
Stars: ✭ 28 (-61.64%)
Mutual labels:  jupyter-notebook, scikit-learn
Fraud Detection
Credit Card Fraud Detection using ML: IEEE style paper + Jupyter Notebook
Stars: ✭ 58 (-20.55%)
Mutual labels:  jupyter-notebook, scikit-learn
Disease Prediction From Symptoms
Disease Prediction based on Symptoms.
Stars: ✭ 70 (-4.11%)
Mutual labels:  jupyter-notebook, scikit-learn

Found out Jordi Warmenhoven had earlier supplied us with a great python version of ISLR

ISLR-with-Python

Introduction to Statistical Learning in R (ISLR)을 Python으로

  • 강의 슬라이드나 관련 자료가 함께 있음

1장 - Introduction

  • 인공지능, 머신러닝, 데이터사이언스, 예측분석을 간단히...
  • 비디오

2장 - Statistical Learning

3장 - Linear Regression

  • statsmodel 패키지 사용하여
  • scikit-learn의 OLS estimator 사용하여

4장 - Classification

  • Logistic Regression : scikit-learn estimator와 statsmodels 라이브러리 사용하여,
  • KNN Regression과 Classification : scikit-learn estimator 사용하여,
  • Regressor 평가 (Evaluation Metric) : MAE, MSE, RMSE
  • Classifier 평가 : Confusion Matrix, ROC, AUC
  • Train/Test Split 방법, Cross-Validated AUC 짧은 소개

5장 - Resampling Methods : Model Evaluation

  • Validation Set Approach (Train/Test Split)
  • K-Fold Cross Validation
    • Regression Model의 Test MSE 추정
    • Hyper Parameter 튜닝 : KNN Regression 에서 K 선정
    • Classification Model에서 Cross-Validated AUC 계산

8장 - Tree based Methods

  • Decision Tree (의사결정 트리)
  • Random Forest
  • Gradient Boosting

9장 - Support Vector Machines

  • Support Vector Machine
  • Grid Search CV를 통한 Test Performance 추정 및 패러미터 튜닝
  • Randomized Search CV를 통한 Test Performance 추정 및 패러미터 튜닝
  • Gradient Boosting, SVM, Grid Search CV 및 Randomized Search CV 이용한 실제적 실습

Regression과 Classification 사용을 익히고, Cross-Validation 또는 Train/Test split을 통해 Test Performance 추정과 패러미터 튜닝

10장 - Unsupervised Learning

  • Principal Component Analysis (PCA)
    • 간단히 직접 PCA를 만들어 PCA 이해
    • scikit-learn PCA 사용하기
  • Clustering
    • K-Means
    • scikit-learn의 Hierarchical Clustering
    • SciPy의 Hierarchical Clustering
  • 실습 - NCI60 데이터 활용
    • NCI60에 PCA 적용하기
    • NCI60에 Clustering 적용
      • 전체 데이터
      • Principal Component에 대해
    • NCI60에 Classification 실행 - Gene Expression으로 종양 타입 예측
      • Principal Component 활용
      • Gradient Boosting Machine 활용
      • Grid Search CV를 활용해 최적 패러미터 탐색

Preprocessing for scikit-learn

  • scikit-learn의 LinearRegression estimator에 적용하기 위해
  • categorical 변수, polynomial regression, interaction preprocessing
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].