tensorflow 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -44,7 +44,7 @@ module TensorFlow
44
44
 
45
45
  def inspect
46
46
  value = read_value
47
- inspection = %w(value shape dtype).map { |v| "#{v}: #{value.send(v).inspect}"}
47
+ inspection = %w(numo shape dtype).map { |v| "#{v}: #{value.send(v).inspect}"}
48
48
  "#<#{self.class} #{inspection.join(", ")}>"
49
49
  end
50
50
 
@@ -1,3 +1,3 @@
1
1
  module TensorFlow
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tensorflow
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-09-20 00:00:00.000000000 Z
11
+ date: 2019-09-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: numo-narray
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: npy
29
43
  requirement: !ruby/object:Gem::Requirement
@@ -118,16 +132,35 @@ files:
118
132
  - LICENSE.txt
119
133
  - README.md
120
134
  - lib/tensorflow.rb
135
+ - lib/tensorflow/audio.rb
136
+ - lib/tensorflow/bitwise.rb
121
137
  - lib/tensorflow/context.rb
138
+ - lib/tensorflow/data/batch_dataset.rb
139
+ - lib/tensorflow/data/dataset.rb
140
+ - lib/tensorflow/data/shuffle_dataset.rb
141
+ - lib/tensorflow/data/tensor_slice_dataset.rb
122
142
  - lib/tensorflow/ffi.rb
143
+ - lib/tensorflow/image.rb
144
+ - lib/tensorflow/io.rb
145
+ - lib/tensorflow/keras/datasets/boston_housing.rb
146
+ - lib/tensorflow/keras/datasets/cifar10.rb
147
+ - lib/tensorflow/keras/datasets/cifar100.rb
148
+ - lib/tensorflow/keras/datasets/fashion_mnist.rb
149
+ - lib/tensorflow/keras/datasets/imdb.rb
123
150
  - lib/tensorflow/keras/datasets/mnist.rb
151
+ - lib/tensorflow/keras/datasets/reuters.rb
124
152
  - lib/tensorflow/keras/layers/dense.rb
125
153
  - lib/tensorflow/keras/layers/dropout.rb
126
154
  - lib/tensorflow/keras/layers/flatten.rb
155
+ - lib/tensorflow/keras/metrics/mean.rb
127
156
  - lib/tensorflow/keras/models/sequential.rb
157
+ - lib/tensorflow/keras/utils.rb
158
+ - lib/tensorflow/linalg.rb
128
159
  - lib/tensorflow/math.rb
160
+ - lib/tensorflow/nn.rb
129
161
  - lib/tensorflow/ops.rb
130
162
  - lib/tensorflow/raw_ops.rb
163
+ - lib/tensorflow/strings.rb
131
164
  - lib/tensorflow/tensor.rb
132
165
  - lib/tensorflow/utils.rb
133
166
  - lib/tensorflow/variable.rb