Rodhos Soft

備忘録を兼ねた技術的なメモです。Rofhos SoftではiOSアプリ開発を中心としてAndroid, Webサービス等の開発を承っております。まずはご相談下さい。

2015-12-02から1日間の記事一覧

TensorFlowやってみた Softmax Regressions

これは以下のチュートリアルをやってみたログである。 http://www.tensorflow.org/tutorials/mnist/beginners/index.html#mnist-for-ml-beginners分類問題には古典的にはSoftmax Regressionsを使用するのが自然である。あるクラスは入力値にそれぞれの重みを…

TensorFlowやってみた MIST For ML Beginners

このブログは以下を参考にしている。 http://www.tensorflow.org/tutorials/mnist/beginners/index.html#mnist-for-ml-beginners MNISTとは 画像認識のテストに使う手書き文字のセットで機械学習におけるHellow, World的な立ち位置のもの。 このデータはYann…

TensorFlowやってみた 使い方

以下を参考にした。blog.btrax.com Hello World import tensorflow as tf hello = tf.constant('Hello, world!') sess = tf.Session() print sess.run(hello) a = tf.constant(555) b = tf.constant(666) print sess.run(a+b) 基本的な使い方 グラフ表現 Ses…