3zhang

Results 11 comments of 3zhang

还有版本匹配是大坑。目前tensorflow最多只支持cuda 11.0,如果你从官网直接点download下的是11.2,那个不支持。11.1也不支持,github上一堆人反应11.1报错,tf 2.4是基于11.0开发的。

Since you know the original dimension, you can scale back before extraction.

I don't think so. It's possible that you have a fold whose error is monotonically decreasing but still higher than other folds whereas other folds do have their minimums in...

Not a complete fix but a workaround: Run matplotlib inline immediately **after** tensorflow_models imported: ```` import tensorflow_models as tfm %matplotlib inline ```` Then every time you use plt to plot,...

> I plan to try again in this field in the next month or so. > > In my application, the generator (SR model) has VRAM usage and inference time...

> I plan to try again in this field in the next month or so. > > In my application, the generator (SR model) has VRAM usage and inference time...

> Ideally, yes. > > ``` > weight = l2norm(last_layer_gradient(recon_loss)) / l2norm(last_layer_gradient(gen_loss)) > loss = recon_loss / weight + gen_loss > ``` > > However, in practice, when the discriminator...

> No, I do not have much GAN experience. My first try was this(DCGAN Binary Cross Entropy) https://github.com/nagadomi/nunif/tree/master/playground/gan and the next was waifu2x (and for the most part, I intended...

> The implementation in sm is identical to that of the original authors. It was implemented as a line by line translation of the original fortran. The docs should be...

Sad to discover that stl in statsmodel can't handle missing values. I think that's one of the best ways to impute missing values in a ts.