yzdai
yzdai
I wonder if there is some demo API usage about query the balance, or staked coins and rewards. Or some info about APR and TVL.
` p1 = lazy_pinyin(sentence, style=Style.TONE3, neutral_tone_with_five=True) print('pypinyin lazy') print(p1) model = G2pM() p2 = model(sentence, tone=True, char_split=False) print('g2m') print(p2)` Here is what I found where it may perform worth than...
Had the same issue, but I have single tone noise at both 1k and 5k hz, I used the official dataset, not params changed from the original repo, and 100...
> 反向传播是用下一层的误差项来推算本层的误差,从右至左逐层推算,所以 > self.W_grad = np.dot(delta_array, self.input.T) > self.b_grad = delta_array > 这两行代码没有问题,但是上一行代码 > self.delta = self.activator.backward(self.input) * np.dot(self.W.T, delta_array) > 我觉得是有问题的,本层的误差应该用本层的输出和下一层的误差来计算,但是这行代码却用本层的输入来计算,这个和公式-8是冲突的,我觉得正确的应该是 > self.delta = self.activator.backward(self.output) * np.dot(self.W.T, delta_array) >...
@rvie17 have you solved the problem? I have the same issue.
hi, when I am running examples/chinese_prosody_polyphone/run.sh, the last part is inference part, I got the following error `[E:onnxruntime:, sequential_executor.cc:369 Execute] Non-zero status code returned while running Reshape node. Name:'/transform/self_attn/Reshape_4' Status...
@Rtut654 sorry, I kinda of forgot, not too much success here, but I remember running GOP in kaldi would bring a GOP score already.
HI, @MengXu0826 @LyWangPX I just followed the inference tutorial, I wonder if it is necessary to add the train folder there, since it's for inference, trainset should be trivial? I...
Hi, just has some other thoughts. why the openblas threads has to be set to 1, wouldn't it be faster if there are more threads in computing with openblas? in...
我也碰到了一样的问题,请教一下,这个之后有解决吗