22
25

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Recurrent Neural Networkの基礎(Peterさんのチュートリアルの翻訳)

Posted at

はじめに

RNNについての分かりやすいチュートリアルとして、TensorFlowのRNNを基本的なモデルで試すでも触れられていた、Peter's notesHow to implement a recurrent neural network Part1を翻訳しました。

Tutorial 翻訳

翻訳するにあたり、日本語にすべきか、英単語のままにすべきか悩むところが多かったです。
訳の誤りや分かりづらいところございましたら、アドバイス頂けると嬉しいです。
(なお、Peterさんには翻訳・アップロードの許諾を頂いてます。)

チュートリアルの内容

簡単なRNNをPythonで実装していきます。
入力データとして、10回にわたって、0または1の数字を取得し、取得した数字を記憶しながら、最終的にその合計値を返す、という簡単なモデルをRNNで実装していきます。

  • RNNの基礎
  • BPTT法
  • 勾配爆発、勾配消失
  • Rprop

について学ぶことができます。

おわりに

Thanks,Peter!

Tutorial 翻訳
出典:How to implement a recurrent neural network Part1

22
25
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
22
25

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?