Sha256: 884a4bf9132c0fd332cca62f49767a9d541d7666ebffb031f78d8c5c1dbaa8b4

Contents?: true

Size: 397 Bytes

Versions: 3

Compression:

Stored size: 397 Bytes

Contents

module OnnxChainer
  class Operator
    attr_reader :need_initialized,
                :output_names,
                :input_names

    class << self
      def parse(node)
      end
    end

    def chainer_class
      raise NotImplementedError
    end

    def to_initialize_string
      raise NotImplementedError
    end

    def to_call_string
      raise NotImplementedError
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
onnx-red-chainer-0.1.2 lib/onnx-chainer/operator.rb
onnx-red-chainer-0.1.1 lib/onnx-chainer/operator.rb
onnx-red-chainer-0.1.0 lib/onnx-chainer/operator.rb