how to subtract the mean value of the network output values

조회 수: 2 (최근 30일)
Izzat Brgli
Izzat Brgli 2021년 4월 7일
댓글: Izzat Brgli 2021년 4월 9일
Hello,
I'm trying to implement Action Branching Architectures for Deep Reinforcement Learning proposed by https://arxiv.org/abs/1711.08946 and since it is my first time training a machine learning on matlab I having a lot of problems. my question is how to subtract the mean value of the network output values from each output? the architecture is shown in the image. I usually do it in this way using Pytorch
advantage_Net = advantage_Net -advantage_Net.mean(1, keepdim=True)

답변 (1개)

Chendi Lin
Chendi Lin 2021년 4월 9일
To normalize the net I think you can simply do
advantage_Net = advantage_Net - mean(advantage_Net)
Please let me know if I understand your question correctly.
CD

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by