Where does Taiwanese air pollution come from?

Conclusion: The pollution now (December) is from China, the pollution in November was locally generated.

Earlier this year, there was a bout of posts about whether the air pollution in Taiwan came from China. The air is apparently pretty bad right now, and this time I think it's clear that it's from China. I just pulled this screenshot from waqi.info:

 

Screen Shot 2015-12-16 at 2.02.24 PM

Observe that the pollution in Yilan Country, southeast of Taipei, is not that different from Taipei itself. This is what you would expect if the pollution came from far away. Compare this to the map from November (http://www.thenewslens.com/post/243421/):

12196275_470529339793806_1767217779170776576_n

 

Notice the huge disparity in homogeneity. Also, if I remember correctly, back then the wind was also unusually still. I think based on these facts, I would conclude that the pollution in November was locally generated and the pollution now is from a far away source, probably China. (Disregard the low pollution directly to the West, the wind doesn't come from there. Also, there could be a time lag, so even the pollution levels in the direction of the wind source at the same point in time are not immediately relevant.)

If I had all the historical data in a csv, could probably do a better analysis than two snapshots, if anyone could point me to a source I'd be happy to do that.

2 comments
Xinying

This is a chinese local NGO who consolidates publicly released air pollution data in China. To support their work, they invite users to pay them a nominal fee. In case you might be interested in enough to download their database, it is here: https://wat.epmap.org/

It is a database used by many of the leading universities in China.

Chiao

Thanks!

What parts of Deep Learning are modern?

Conclusion: outside of a very brief period in which pre-training with Unsupervised Learning was shown to be helpful, Deep Learning has largely been about hardware brute force, and learning how to use brute force to solve problems.

Terms I need to learn more about

  • Pattern Deformations

  • Hessian-free learning

  • Batch Normalisation (Thanks A Breitman)

  • Competing Units


Neural networks have been around for a long time. What exactly changed between the 80s and now? Why the resurgence of late?

Reading this review paper (page 4),

  1. Shallow NN-like models with few such stages have been around for many decades if not centuries, and models with several successive nonlinear layers of neurons date back at least to the 1960s and 1970s
  2. Training of deeper architectures (ANNs with more layers, including RNNs) only became feasible through the use of unsupervised learning techniques in the 2000s
  3. Training of deeper architectures without unsupervised learning became possible later

I'm a bit puzzled by (3), because it's not clear where it differs from (1). There are 3 candidates:

  1. More data
  2. More computation
  3. Better techniques

More data

I think this is actually conflated with More computation below. Without fast computation, you can't get through enough data.

More computation

Page 23 of the reference - in 2010, a new MNIST record was set using backpropagation and pattern deformations, both of which are decades old.

these results seemed to suggest that advances in exploiting modern computing hardware were more important than advances in algorithms

Better techniques

Unsupervised learning followed by supervised learning

It seems that there was a year or two where this was popular, and then it just went away.

Vanishing / Exploding Gradients

LSTMs solve this, and are a recent invention. ReLU activations do not explode but have other problems.

Proper Initialization

(Thanks to A Breitman for mentioning this)

When they are not suffering from vanishing / exploding gradients, activation functions can be too linear. Reference