wzzhu
wzzhu
> ah now that you mention names, you should always give your input nodes a name. > > Note the following program and its output: > > ``` > package...
There is no problem with Mean. This issue should be closed.
The issue is mentioned in https://github.com/gorgonia/gorgonia/issues/310 Node without a name will be "optimized away" if there is a previous node having same properties with it. It doesn't seem to necessary...
This is a blocking issue, as go is approaching 1.19. The tensor package really needs a non-moving gc?
#384 The reductionInferShape currently doesn't respect along. The over aggressive reduction in reductionInferShape affects not only normal tensor operation, but also it affects the backprop autoDiff algorithm when containing BroadcastAdd,...
This is caused by the introduction of safeAreaInsets in iOS11. Need to add the following code to touchesMoved method. if ([self.scrollview respondsToSelector:@selector(safeAreaInsets)]) { topVerticalOffset -= self.scrollview.safeAreaInsets.top; } Fixed in the...
Recently I read the gorgonian code details for doing back propagation using backward mode for derivative calculation and understood most parts. But I am not sure if dual value is...
> Thanks for taking time writing this up. There is no problem of being straight in technical discussion. Actually it is GREAT! For differentiation part, it should use add and...
Share some of my understandings after reading and tracing the code for this part. A duel value is defined as ``` type dualValue struct { Value d Value // the...
The problem was caused by sampling from a log prob distribution instead of from a normal prob. Since log probs are negative numbers, the sampling will always go out of...