李理
李理
In the batch translation example, encoder is: ``` class EncoderRNN(nn.Module): def __init__(self, input_size, hidden_size, n_layers=1, dropout=0.1): super(EncoderRNN, self).__init__() self.input_size = input_size self.hidden_size = hidden_size self.n_layers = n_layers self.dropout = dropout...
I have follow this notebook(https://github.com/tensorflow/tensor2tensor/blob/master/tensor2tensor/notebooks/Transformer_translate.ipynb) to do translation task. But I am using tensorflow 2.3. I can't find any alternatives for restore_variables_on_create ``` def translate(inputs): encoded_inputs = encode(inputs) with tfe.restore_variables_on_create(ckpt_path):...
https://dc.cloud.alipay.com/index#/topic/intro?id=3 排名大概如何?
I have trained neon for librispeech data. But it's always killed because OOM. My machine has 24GB memory and GeForce GTX 1070 card of 8G memory. I found this msg...
The criteo training set(http://labs.criteo.com/2014/02/kaggle-display-advertising-challenge-dataset/) has 45,000,000 examples. I found many github deepfm codes only sample small amount of training examples. How many training examples do you use to achieve the...
我运行WxRobot.py后出现ImportError: DLL load failed: 找不到指定的模块。我是直接git clone代码,并且在项目根目录下运行 python.exe WxRobot.py。
when parsing dependency without label(such as nsub,nmod), We can't get the label of s0's left most child or the label of s0's child's child. So we can't use it as...
any tutorial for the codes? I can hardly understand all these files. I run the ipynb cells and can't find model_name.npz. It seems dev_list and image_path also need be specified....
I am running "accelerate test" in a docker environment and it fails: ``` (env) root@cnsz22plaoy9:/dockerdata# accelerate config ---------------------------------------------------------------------------------------------------------------------------------------------In which compute environment are you running? This machine ---------------------------------------------------------------------------------------------------------------------------------------------Which type of machine...