0%

首先在 twilio 上注册帐号,并申请一个 twilio 手机号,并认证自己的手机号,twilio只能给认证过的手机号发送短信。

使用 python 发送短信

1
2
3
4
5
6
7
8
9
10
11
12
from twilio.rest import Client

account_sid = <your account sid>
auth_token = <your auth token>
client = Client(account_sid, auth_token)

message=client.messages.create(
from_=<your twilio phone num>,
body=<your message>,
to=<your phone num>
)
print(message.sid)
阅读全文 »

Pretrained Language Models for Document-Level Neural Machine Translation. Liangyou Li, Xin Jiang, Qun Liu. ArXiv. [PDF]

动机

现有篇章翻译工作大都只能有限的上下文(前面3句话),当利用更长上下文时,由于训练不稳定模型效果反而下降。理论上来说更长的上下文可以提供更多信息,更有助于翻译。本文就是希望能够在篇章翻译中利用更长的上下文。

阅读全文 »

** Improving neural networks by preventing co-adaptation of feature detectors**. Geoffrey E. Hinton, Nitish Srivastava, Alex Krizhevsky, Ilya Sutskever, Ruslan R. Salakhutdinov. arXiv 1207.0580. [PDF]

阅读全文 »