Submitted by AutoModerator t3_10cn8pw in MachineLearning
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
Viewing a single comment thread. View all comments