与えられたデータXのすべての行について、いくつかのサンプリングされたクラスに対してのみsoftmax関数を適用する関数を作成したいとします。クラス。シンプルなPythonでコードがそのように思える:テンソルフローの行列変数の値を更新し、高度なインデックス作成
def softy(X,W, num_samples):
N = X.shape[0]
K = W.shape[0]
S = np.zeros((N,K))
ar_to_sof = np.zeros(num_samples)
sampled_ind = np.zeros(num_samples, dtype = int)
for line in range(N):
for samp in range(num_samples):
sampled_ind[samp] = randint(0,K-1)
ar_to_sof[samp] = np.dot(X[line],np.transpose(W[sampled_ind[samp]]))
ar_to_sof = softmax(ar_to_sof)
S[line][sampled_ind] = ar_to_sof
return S
Sは最終的に、アレイ「samped_ind」によってライン毎に定義されたインデックスではゼロ、そしてNON_ZERO値が含まれます。 Tensorflowを使用してこれを実装したいと思います。問題は、 "高度な"インデックス作成が含まれており、私はこのライブラリを使って作成する方法を見つけることができないということです。
私はこのコードを使用していることをしようとしています:
S = tf.Variable(tf.zeros((N,K)))
tfx = tf.placeholder(tf.float32,shape=(None,D))
wsampled = tf.placeholder(tf.float32, shape = (None,D))
ar_to_sof = tf.matmul(tfx,wsampled,transpose_b=True)
softy = tf.nn.softmax(ar_to_sof)
r = tf.random_uniform(shape=(), minval=0,maxval=K, dtype=tf.int32)
...
for line in range(N):
sampled_ind = tf.constant(value=[sess.run(r),sess.run(r)],dtype= tf.int32)
Wsampled = sess.run(tf.gather(W,sampled_ind))
sess.run(softy,feed_dict={tfx:X[line:line+1], wsampled:Wsampled})
すべてはここまで動作しますが、私はPythonコード「S [ライン]に、私は行列Sにしたいアップデートを行うための方法を見つけることができません[sampled_ind] = ar_to_sof "となります。
どうすればこの仕事をすることができますか?
多分['tf.random_shuffle'](https://www.tensorflow.org/versions/r0.11/api_docs/python/constant_op.html#random_shuffle)はそれを行うでしょうか? – drpng
おそらく私の質問が十分ではなかったかもしれません。そのために残念。私はS変数行列をシャッフルしたくありません。私はそれを作成したい! Sは最終的に配列 "samped_ind"によってすべての行に定義されたインデックスにゼロとゼロ以外の値を含みます。 –
ああ、たぶん 'tf.one_hot'のようなもの? – drpng