keras中的多输出回归的MSE是如何计算的?

发布于 2025-01-11 23:15:39 字数 410 浏览 0 评论 0原文

我有一个输出 6 个变量的 Keras 深度学习模型。

model = Sequential()
model.add(Dense(32, input_dim=12, kernel_initializer='he_uniform', activation='relu'))
model.add(Dense(256, activation='relu'))
model.add(Dense(32, activation='relu'))
model.add(Dense(6, activation = 'linear'))
model.compile(loss = 'MSE', optimizer = 'adam')

这六个变量的错误是如何编译到一个 MSE 中的?六个变量中的每一个变量不应该都有 MSE 吗?是对 6 进行缩放并求平均值吗?

I have a Keras deep learning model that outputs 6 variables.

model = Sequential()
model.add(Dense(32, input_dim=12, kernel_initializer='he_uniform', activation='relu'))
model.add(Dense(256, activation='relu'))
model.add(Dense(32, activation='relu'))
model.add(Dense(6, activation = 'linear'))
model.compile(loss = 'MSE', optimizer = 'adam')

How are the errors for these six variables compiled into one MSE? Should there not be an MSE for each of the six variables? Is it scaling the 6 and averaging them?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

春庭雪 2025-01-18 23:15:39

这取决于这6个变量之间的联系。例如,6 个变量是同一任务,只是网络/模型的深度不同。您可以缩放 6 并对其求平均值。

如果六个变量是不同的任务,则应该使用六个不同的损失函数。通常每个损失函数的权重是相等的。

我的母语不是英语。希望您能理解我的回答并对您​​有所帮助。

It depends on the connection between these 6 variables. For example, the 6 variables is the same task that is onlt different depth of the network/model. You can scale the 6 and averaging them.

you should use six different loss function if the six variables is different task. Usually the weight of each loss function is equal.

I am a non-native English speaker. Hope you can understand my answer and help you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文