Ma Rufeng
Ma Rufeng
I get some warning when running your code with tensorflow 1.14 in windows such as > WARNING:tensorflow:From D:\DeepRL\decima-sim-master\actor_agent.py:19: The name tf.train.AdamOptimizer is deprecated. Please use tf.compat.v1.train.AdamOptimizer instead. > WARNING:tensorflow:From test.py:20:...
I would like to try PFDL algorithm. However, the example code has less difference between CFDL and PFDL. For example, CFDL MIMO is https://github.com/huipengly/MFAC/blob/e83a9de49b0cb4e1c6126c1fc11d99aa1aa92619/matlab/Example5_2_MFAC_CFDL_MIMO.m#L42-L67 and PFDL MIMO is https://github.com/huipengly/MFAC/blob/e83a9de49b0cb4e1c6126c1fc11d99aa1aa92619/matlab/Example5_4_MFAC_PFDL_MIMO.m#L39-L63
When load the data from the dataloader, the dim is transposed: `data = Variable(data.squeeze().transpose(0, 1)).to(device)` So in model.py line 82 ``` for t in range(x.size(0)): phi_x_t = self.phi_x(x[t]) ``` the...
https://www.amazon.science/publications/automatic-termination-for-hyperparameter-optimization
I have successfully installed `intel-cmt-cat-1.1.0` on ubuntu 18.04 However `pqos -e` and `pqos -a` look like do not work 
The description in Section 4.2: “Convolutional operations yield $H^C \in \mathbb{R}^{n \times k}$ ” does not match the figure 2, which has $H^C \in \mathbb{R}^{m \times k}$. In addition, how...
After converting to PDF, Chinese characters are lost, and the result is full of errors.  This is the origin file: [ori-epub-file.zip](https://github.com/HAKSOAT/EpubToPdf/files/13294922/ori-epub-file.zip)
Hi, Good day to you. I deployed a elasticsearch 5.0.2 on kubernetes. With command: `curl 10.68.140.245:9200 ` , I got: ``` { "name" : "_Klq3Ir", "cluster_name" : "elasticsearch", "cluster_uuid" :...
Thanks very much for your code. However, there are some difference between your code and the tutorial of PyTorch: [SEQUENCE-TO-SEQUENCE MODELING WITH NN.TRANSFORMER AND TORCHTEXT](https://pytorch.org/tutorials/beginner/transformer_tutorial.html) in `class TransAm` According to...