Create python code to matlab ?
显示 更早的评论
Hi, I have code Python like below :
probs = exp_scores / np.sum(exp_scores, axis=1, keepdims=True)
Then, I write to matlab code
probs = exp_scores/sum(exp_scores);
My question is, my code above is correct in matlab ? Thanks
3 个评论
Surely you can just look at the result and compare it to the python result. It depends what exp_scores is. If it is non-scalar then you would likely need to use
./
Oman Wisni
2018-11-16
Adam
2018-11-16
axis = 1
in python means sum along dimension 1, but python indexes from 0 whereas Matlab indexes from 1 so I would think that you need
sum( exp_scores, 2 )
in Matlab.
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Call Python from MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!