BlueWinters

Results 5 issues of BlueWinters

I have a little question about the code: At line 55: `ewma = tf.train.ExponentialMovingAverage(decay=0.99)` My question is: 1. What is the role of the function tf.train.ExponentialMovingAverage? In my option, it...

``` nvcc fatal : Unknown option '-generate-dependencies-with-compile' ```

Would you like to offer the pretrain model?

As the comments in the function of "ignores_from_label" in layers.py say: > """Retrieves ignorable pixels from the ground-truth labels. This function returns a binary map in which 1 denotes ignored...

根据[https://kexue.fm/archives/5776](url)中的公式[7]和[9],x->...->h_t的过程表示前向; 那么nice.py中AddCouple的call方法中, ```python def call(self, inputs): part1, part2, mpart1 = inputs if self.isinverse: return [part1, part2 + mpart1] # 逆为加 else: return [part1, part2 - mpart1] # 正为减 ` 此两种情况是否写反了?