Sha256: d90a306a91f2e9125d41f9d206104ccfd565b61b2353dc91846d47904a89a134

Contents?: true

Size: 1.97 KB

Versions: 4

Compression:

Stored size: 1.97 KB

Contents

require 'tensor_stream/version'
require 'deep_merge'
require 'matrix'
require 'concurrent'
require 'tensor_stream/exceptions'
require 'tensor_stream/helpers/op_helper'
require 'tensor_stream/helpers/string_helper'
require 'tensor_stream/initializer'
require 'tensor_stream/graph_keys'
require 'tensor_stream/types'
require 'tensor_stream/graph_builder'
require 'tensor_stream/graph'
require 'tensor_stream/device'
require 'tensor_stream/session'
require 'tensor_stream/tensor_shape'
require 'tensor_stream/helpers/tensor_mixins'
require 'tensor_stream/tensor'
require 'tensor_stream/constant'
require 'tensor_stream/variable'
require 'tensor_stream/variable_scope'
require 'tensor_stream/operation'
require 'tensor_stream/placeholder'
require 'tensor_stream/control_flow'
require 'tensor_stream/dynamic_stitch'
require 'tensor_stream/nn/nn_ops'
require 'tensor_stream/evaluator/evaluator'
require 'tensor_stream/graph_serializers/packer'
require 'tensor_stream/graph_serializers/serializer'
require 'tensor_stream/graph_deserializers/protobuf'
require 'tensor_stream/graph_deserializers/yaml_loader'
require 'tensor_stream/graph_serializers/pbtext'
require 'tensor_stream/graph_serializers/graphml'
require 'tensor_stream/graph_serializers/yaml'
require 'tensor_stream/math_gradients'
require "tensor_stream/debugging/debugging"
require 'tensor_stream/utils'
require 'tensor_stream/train/utils'
require 'tensor_stream/images'

require 'tensor_stream/profile/report_tool'

# require 'tensor_stream/libraries/layers'
require 'tensor_stream/monkey_patches/patch'
require 'tensor_stream/monkey_patches/integer'
require 'tensor_stream/monkey_patches/float'
require 'tensor_stream/monkey_patches/array'
require 'tensor_stream/ops'
require 'tensor_stream/trainer'

# module that exposes TensorStream top level functions
module TensorStream
  extend TensorStream::OpHelper
  extend TensorStream::Ops
  extend TensorStream::Debugging
  extend TensorStream::Utils

  def self.__version__
    TensorStream::VERSION
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
tensor_stream-1.0.0 lib/tensor_stream.rb
tensor_stream-1.0.0.pre.rc1 lib/tensor_stream.rb
tensor_stream-0.9.10 lib/tensor_stream.rb
tensor_stream-0.9.9 lib/tensor_stream.rb