Sha256: 53367e578cc5bcce54d2a29065ede8da480edc8e32afbcff133b5e921519c447
Contents?: true
Size: 845 Bytes
Versions: 3
Compression:
Stored size: 845 Bytes
Contents
TensorStream::OpMaker.define_operation :top_k do |op| op.what_it_does "Finds values and indices of the `k` largest entries for the last dimension." op.parameter :input, "1-D or higher `Tensor` with last dimension at least `k`." op.parameter :k, "0-D `int32` `Tensor`. Number of top elements to look for along the last dimension (along each row for matrices)", 1 op.option :sorted, "If true the resulting `k` elements will be sorted by the values in descending order.", "true" op.option :name, "Optional name", :nil op.add_custom_post "[result[0], result[1]]" op.define_shape do |tensor| next nil unless tensor.inputs[0].shape.known? input_shape = tensor.inputs[0].shape.shape.dup k = tensor.options[:k] input_shape[-1] = k input_shape end op.define_gradient do |grad, node, params| #TODO end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
tensor_stream-1.0.9 | lib/tensor_stream/ops/top_k.rb |
tensor_stream-1.0.8 | lib/tensor_stream/ops/top_k.rb |
tensor_stream-1.0.7 | lib/tensor_stream/ops/top_k.rb |