Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 1.55 KB

README.md

File metadata and controls

47 lines (33 loc) · 1.55 KB

machinelearning examples

Model architecture: (1) Random Forest (2) Neural Networks: Pytorch (3) DeepLearning: Tensorflow

1. Random forest regressor

USING Parallel/Bootstrap Aggregation (Bagging) method: creates training subset from sample data

data used: https://www.kaggle.com/datasets/usharengaraju/indian-women-in-defense

RNA-seq data from the human airway smooth muscle (HASM) transcriptome
Data collected to understand treatment of drugs on asmatic patients testing the effect of glucocorticosteroidal use in combination with more the common Albuterol treatment

Exploratory_ML ipynb_script

GRAPHS

  • Histogram of Feature Importance Data (Top10) Histogram
  • actual vs. predicted values

2. Boosting algorithms via neural network models

PyTorch_ipynb script

  1. Split and Pre-process data
  2. Define model of neural network
  3. Define loss and optimizer
  4. Train and evaluate model
  • Model integrity - line graphs (1) Training Loss: epochs vs loss (2) Testing Accuracy: epoch vs accuracy Model_integrity

  • Model-Layer2 integrity - heatmap (1) heatmap/matrixviz of layer 2 Model-Layer2 integrity

  • Feature Importance - barchart (1) feature importance

Part 3: Tensorflow (deep learning method for AI product development)

Tensorflow ipynb_script

  1. Data pre-processing
  2. Data splitting
  3. Model Architecture
  4. Model Compilation
  5. Training
  6. Evaluation