Liqimai
Liqimai
Cython compiler forgets to generate declaration for tuple type in cpp vector. For example, if you use type like `vector[(int, int)]`, it is possible that Cython forget to generate declaration...
When my finger touches the camera, the camera always automatically adjust exposure, so the images change regularly on a frequency of about 200Hz. I added some codes to lock AutoExposure,...
It is quite often markdown contains interactive Python shell code like: ```python >>> print("Hello World!") Hello World! >>> def add(a, b): ... return a + b ... >>> add(2,3) 5...
Add feature mentioned in issue #77.
You reported the performance of GCN on Nell. I notice that you used data provided by Yang. I download Nell from Yang's GitHub https://github.com/kimiyoung/planetoid. But when I run your program...
I notice that there are some pre-trained models in `models/` directory. I want to use the svhn_z_x_pca_300-500-500 model, but can't find `pca_params.ndict.tar.gz` in directory `models/svhn_z_x_pca_300-500-500/`. Could you be kind to...
In README, it is said data used in the original paper is in repo https://github.com/QingyaoAi/Amazon-Product-Search-Datasets. After I clone both this repo and repo "QingyaoAi/Amazon-Product-Search-Datasets", I don't know how to feed...
I notice that there is an `env.state.stats` variable to record some game statistics. This is exactly what we RL trainers need. During these days' training, I really want to visualize...
How does ema_pytorch handle BatchNorm statistics? Are BatchNorm statistics also averaged over steps? Should they be averaged?