class OnnxChainer::Operator

Attributes

input_names[R]
need_initialized[R]
output_names[R]

Public Class Methods

parse(node) click to toggle source
# File lib/onnx-chainer/operator.rb, line 8
def parse(node)
end

Public Instance Methods

chainer_class() click to toggle source
# File lib/onnx-chainer/operator.rb, line 12
def chainer_class
  raise NotImplementedError
end
to_call_string() click to toggle source
# File lib/onnx-chainer/operator.rb, line 20
def to_call_string
  raise NotImplementedError
end
to_initialize_string() click to toggle source
# File lib/onnx-chainer/operator.rb, line 16
def to_initialize_string
  raise NotImplementedError
end