TastyOs
TastyOs t1_iye2797 wrote
Reply to comment by ChadlyThe3rd in TIL The inventor of the television was a 15 year old farm boy who got the idea for scanning an image in rows from the back and forth motion of plowing a field. by chapstickninja
I’m a CS student too. Curious what algorithm the pool inspired you with
TastyOs t1_j5129q7 wrote
Reply to comment by Iljaaaa in [D] Simple Questions Thread by AutoModerator
I assume you're doing something like minimizing MSE between inputs and reconstructions. Instead of calculating MSE for all 21 columns, you split it into two parts: do an MSE for the important columns, and an MSE for the unimportant columns. Then weight the important MSE higher than the unimportant MSE
​
So something like
loss = 0.9 * MSE_important + 0.1 * MSE_unimportant