Git Product home page Git Product logo

scikitlearn's Introduction

ScikitLearn

  • scikit-learn(“사이킷런”이라고 읽는다) 패키지는 머신러닝 교육을 위한 최고의 파이썬 패키지다.
  • scikit-learn 패키지의 장점은 다양한 머신러닝 모형을 하나의 패키지에서 모두 제공하고 있다는 점이다.
  • 다음은 scikit-learn 패키지에서 제공하는 머신러닝 모형의 목록의 일부다.
  • 데이터셋
    • 회귀분석, 분류, 클러스터링용 가상 데이터셋 생성
    • 각종 벤치마크 데이터셋
  • 전처리
    • 스케일링
    • 누락데이터 처리
    • 텍스트 토큰화
  • 지도학습
    • 회귀분석
    • LDA/QDA
    • 서포트벡터머신
    • 퍼셉트론, SGD
    • KNN
    • 가우스프로세스
    • 나이브베이즈
    • 의사결정나무
    • 랜덤포레스트, 부스팅
  • 비지도학습
    • 가우스 혼합모형
    • 클러스터링
    • PCA
  • 성능 최적화
  • 교차검증
  • 특징선택
  • 하이퍼파라미터 최적화

sklearn │ ├── 01 preprocessing (전처리) │ │ │ ├── 스케일러 │ │ ├── MinMaxScaler │ │ ├── RobustScaler │ │ └── StandardScaler │ │ │ └── 인코더 │ ├── LabelEncoder │ └── OneHotEncoder │ ├── 02 model_selection (모델링 전처리) │ │ │ ├── 데이터셋 분리 │ │ ├── KFold │ │ ├── StratifiedKFold │ │ └── train_test_split │ │ │ └── 하이퍼파라미터 튜닝 │ └── GridSearchCV │ ├── 03 모델학습 │ │ │ ├── ensemble │ │ ├── AdaBoostClassifier │ │ ├── GradientBoostingClassifier │ │ ├── RandomForestClassifier │ │ └── RandomForestRegressor │ │ │ ├── linear_model │ │ ├── LogisticRegression │ │ └── RidgeClassifier │ │ │ ├── neighbors │ │ └── KNeighborsClassifier │ │ │ ├── svm │ │ ├── SVC │ │ └── SVR │ │ │ └── tree │ ├── DecisionTreeClassifier │ ├── DecisionTreeRegressor │ ├── ExtraTreeClassifier │ └── ExtraTreeRegressor │ ├── 04 모델평가 │ │ │ ├── metrics │ │ ├── accuracy_score │ │ ├── classification_report │ │ ├── confusion_matrix │ │ ├── f1_score │ │ ├── log_loss │ │ ├── mean_absolute_error │ │ ├── mean_squared_error │ │ └── roc_auc_score │ │ │ └── model (정의된 모델에서 추출) │ ├── predict │ └── predict_proba │ └── 05 최종앙상블 │ └── ensemble ├── StackingClassifier ├── StackingRegressor ├── VotingClassifier └── VotingRegressor

1. Preprocessing

2. Feature Selection

3. Scaler

4. 스케일링

5. 교차검증 , 그리드 서치

scikitlearn's People

Contributors

choiswonspec avatar

Watchers

 avatar

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.