らんだむな記憶

blogというものを体験してみようか!的なー

2019-09-16から1日間の記事一覧

keras.layers.Denseのinput_shape

Coreレイヤー - Keras Documentation 例の中でバリバリに使われてるのに引数の説明に存在しないってどういうことだよって思ったけど、tensorflow/core.py at r1.14 · tensorflow/tensorflow · GitHubによると、**kwargsとして処理されるようだ・・・おいおい…

TensorFlow 2.0.0-rc1

Release TensorFlow 2.0.0-rc1 · tensorflow/tensorflow · GitHub ほぅほぅ・・・

層の重み

Udacityのud187の課題「Celsius to Fahrenheit」を再び引き合いに出す。●モデルの実装 model = tf.keras.Sequential([ tf.keras.layers.Dense(units=1, input_shape=[1]) ]) model.summary(): Model: "sequential" ________________________________________…

モデルの保存と復元

モデルの保存と復元 | TensorFlow Core 「今日はここまで!」のやりかた。

Tensorboardで可視化(2)

Udacityのud187のImage Classification with CNNsのネタを使って model = tf.keras.Sequential([ tf.keras.layers.Conv2D(32, (3,3), padding='same', activation=tf.nn.relu, input_shape=(28, 28, 1)), tf.keras.layers.MaxPooling2D((2, 2), strides=2), …