私はC++で制限付きboltzmannマシンを実装しようとしています。 https://github.com/echen/restricted-boltzmann-machines/blob/master/rbm.pyこのようなpythonコードでは、より大きい記号の意味は何ですか?
これはライン37である:私はガイドとして、このPythonコードを使用してい
pos_hidden_states = pos_hidden_probs > np.random.rand(num_examples, self.num_hidden + 1)
pos_hidden_statesとpos_hidden_probsがC++タイプvector<vector<double>>
の、両方の2D行列であり、num_examplesとnum_hiddenは共に整数です。
ここをクリックして、大なり記号の意味を教えてください。
は、HTTPSここに参照.org/doc/numpy/reference/generated/numpy.greater.html#numpy.greater – JkShaw
http://stackoverflow.com/questions/1061283/lt-instead-of-cmp&https://docs.python.org /3/reference/datamodel.html#object.__lt__ –