Hover over the map
to view county names.
(Desktop Only)
Choose a county
you think will have the most wildfires in the past decade.
Use the time slider
to view wildfire activity and counts on a specific date.
Press the play button
to animate cumulative wildfire activity over time.
Adjust the playback speed
with the speed toggle.
(Default is set to Fast).
Watch the bar chart update
and discover if your prediction was correct.
Click the button after you have completed the game to reveal the conclusions.
Can we do better than intuition? Of course! This is where machine learning comes in.
"Our mission is to evolve beyond mere human judgment."
County + Date → Fire Prediction
Outline
Here, our model is trying to predict a binary output (True/False) whether or not at least one fire will occur on a given county and date. Our model takes two inputs. The first is an integer that represents a county. The second is a date that is split into 3 distinct features (year, month, day). These four features are combined into a feature vector. We have a list of y values that are either True or False. Our y values represent whether a county on a given date actually had one or more fires that day. We used logistic regression with the Python module statsmodel, to get a decimal value. We evaluated this decimal value to be above or below a threshold we set while we were tuning hyperparameters, which is 0.018. Above means True, below means False. We then compared those predicted y values to the actual y values to evaluate our accuracy.
Interested in how our model works?
Pick a county and date and see if a fire will occur there on that day.