/Predicting_Wildfire_Size

Classify wildfire size based on discovery conditions.

Primary LanguageJupyter Notebook

Classifying Wildfire Size

With a warming atmosphere and expanding housing settlements, wildland fires have become more dangerous than ever. Using a dataset of 1.88 million U.S. wildfires, I try to predict what size class a fire will reach based on features known at the time of discovery. This will not replace current monitoring systems, but hopefully will help augment firefighting monitoring systems by bringing attention to potentially overlooked fires.

Metric

I choose F1 score as my metric for evaluating my models because there is a need to balance the danger to lives and property from underestimating a fire and the limited resources available for fighting wildfires.

TAKE 2 - Ongoing

All notebooks under the prefix of Fires2.

  1. Assess available columns and perform basic EDA.
  2. Fill in missing location data and extract additional date features.
  3. Look up location elevation based on lat/long.
  4. Query and join weather data for corresponding fires
  5. Clean weather data and hold out rows for modeling.
  6. Begin with logistic regression and random forest models.
  7. Further modeling: under construction