Git Product home page Git Product logo

diabetes_cad_prediction's Introduction

diabetes_CAD_prediction

당뇨병 환자의 CAD 동반 질환 예측

Predicting the risk of coronary artery disease(CAD) onset in diabetes patients using the MIMIC-IV dataset and an undersampling-based model

  1. MIMIC-IV 데이터 추출 및 정제

    extract_query_5

    extract_total_query

  2. 데이터 전처리

    dataset_preprocessing.ipynb

  3. 최종 데이터셋

    daiv_dataset_final_final_preprocessed

  4. 5가지 모델에 훈련 후 성능 확인

    Model_5_train.ipynb

  5. BalancedBagging 하이퍼파라미터 튜닝

classifier = BalancedBaggingClassifier(
    random_state=0,
    n_estimators=400,
    max_features=0.75,
    sampling_strategy=0.7,
    base_estimator=DecisionTreeClassifier(
        max_depth=20,
        min_samples_split=10,
        min_samples_leaf=5,
        max_features=0.75,
        class_weight={0: 1.0, 1: 0.7}
    )
)
  1. XGBoost와 BalancedBagging 비교

    XGBoost_train.ipynb

  2. feature selection을 통한 최종 모델링 코드

    BalancedBagging_selected

diabetes_cad_prediction's People

Contributors

xinaroo 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.