technocolabs-mini-project

Predict Blood Donation for Future Expectancy

  • Forecasting blood supply is a serious and recurrent problem for blood collection managers: in January 2019, "Nationwide, the Red Cross saw 27,000 fewer blood donations over the holidays than they see at other times of the year." Machine learning can be used to learn the patterns in the data to help to predict future blood donations and therefore save more lives.

  • In this Project, you will work with data collected from the donor database of Blood Transfusion Service Center in Hsin-Chu City in Taiwan. The center passes its blood transfusion service bus to one university in Hsin-Chu City to gather blood donated about every three months. The dataset, obtained from the UCI Machine Learning Repository, consists of a random sample of 748 donors. Your task will be to predict if a blood donor will donate within a given time window. You will look at the full model-building process: from inspecting the dataset to using the tpot library to automate your Machine Learning pipeline.

Project Tasks

  1. Inspecting transfusion.data file
  2. Loading the blood donations data
  3. Inspecting transfusion DataFrame
  4. Creating target column
  5. Checking target incidence
  6. Splitting transfusion into train and test datasets
  7. Selecting model using TPOT
  8. Checking the variance
  9. Log normalization
  10. Training the linear regression model
  11. Conclusion