tensor_stream 0.9.9 → 0.9.10

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d311558fd0e0503d46170a6e0d206cfa9eb3d3612143a1b42ef760b548155640
4
- data.tar.gz: 5539763e003def63ee40417b9801b10c2694f08cf09f1be10ea3d7fd03cc0a4d
3
+ metadata.gz: e57a53a50a03509858b23387c5b82c114168c519aba871f04b86ddda9d5ed58d
4
+ data.tar.gz: 7a1e662d373c57caa997e7c1d7031e7757576c93eddda016a3cc714608f88ef3
5
5
  SHA512:
6
- metadata.gz: 1918a785288e1f25fd75798f5743c924d71e4d7bd63012acdb18df41c5d3ee36b15a66a65fff18740885454b8683479d3e733d4111cbbd3e11fd81cec4fc4765
7
- data.tar.gz: fe48b102afb40c36d77f92a3a53ffc155db108a705c01d5fd3cfab5e84d88dfd5c1b7a41f19322430e43335d225a526cf63c757030f7e4ac27f1cc2440797f2f
6
+ metadata.gz: c284011b3fc7ff7bafeb82a994bffbe4963d0300fb771b5f16fa3bedbc5afeef1c4f44f55e8f9801f9b6410866b5b93fcddabdc5ce797931c599be57f6dda539
7
+ data.tar.gz: 8a83b49f4d7bde1612466a1db8348114a899058b5dc744041478649972005b59ce773b84714d0023761615b04f1966ae37afd0f1cc25ab3d4a9686be4c73ab6f
data/CHANGELOG.md CHANGED
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [0.9.10] - 2019-01-02
8
+ - [BUG FIX] - remove pry-byebug include (Thanks @samgooi4189)
9
+ - Update Changelog for 0.9.9
10
+
11
+ ## [0.9.9] - 2019-01-01
12
+ - Basic Object mixins for Integer, Float, Array to improve model syntax
13
+ - Internal code changes to improve model serialization
14
+
7
15
  ## [0.9.8] - 2018-11-25
8
16
  - [BUG FIX] - conv2d, conv2d_backprop_filter, conv2d_backprop_input -> stride support bug fixes
9
17
 
@@ -1,4 +1,4 @@
1
- require 'pry-byebug'
1
+ # require 'pry-byebug'
2
2
  module TensorStream
3
3
  # various monkey patches to FixNum types
4
4
  module MonkeyPatch
@@ -1,5 +1,5 @@
1
1
  module TensorStream
2
- VERSION = '0.9.9'.freeze
2
+ VERSION = '0.9.10'.freeze
3
3
 
4
4
  def self.version
5
5
  VERSION
data/samples/multigpu.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  require "bundler/setup"
2
2
  require 'tensor_stream'
3
3
  require 'tensor_stream/evaluator/opencl/opencl_evaluator'
4
- require 'pry-byebug'
4
+ # require 'pry-byebug'
5
5
 
6
6
  ts = TensorStream
7
7
 
data/samples/rnn.rb CHANGED
@@ -8,7 +8,7 @@
8
8
  require "bundler/setup"
9
9
  require 'tensor_stream'
10
10
  # require 'tensor_stream/opencl'
11
- require 'pry-byebug'
11
+ # require 'pry-byebug'
12
12
 
13
13
 
14
14
  tf = TensorStream
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tensor_stream
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.9
4
+ version: 0.9.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joseph Emmanuel Dayo
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-12-28 00:00:00.000000000 Z
11
+ date: 2019-01-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler