6
9

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.

21歳の女子大生でもできる!deep learningを5分で体験

Last updated at Posted at 2017-10-18

#さっそくdeep learning が動いている様子を見てみましょう(python)

bitcoin の株価予測のデータを使用 以下URLを使用(https://www.kaggle.com/daiearth22/rnn-for-predicting-closing-price-using-ker-426088

Fork Notebookからデータを自分のアカウントに移動

プログラムの実行(読み込みが遅い場合は早送り)

#deep learning が動いていることがわかりますね!
history = model.fit_generator(train_gen,
steps_per_epoch=100,
epochs=20,
validation_data=val_gen,
validation_steps=val_steps)

epochsとsteps_per_epochの数値をいろいろと変えて自分の好きなように動かしてみましょう!

image.png

#グラフを見てみると予測データとあまり変化はありません
image.png

6
9
3

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
6
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?