Skip to content
This repository has been archived by the owner on Jul 7, 2023. It is now read-only.

Releases: tensorflow/tensor2tensor

v1.15.7

17 Jun 16:10
Compare
Choose a tag to compare

v1.15.6

02 Jun 15:03
Compare
Choose a tag to compare

Added basic support for TF2 modeling in f65b5e4 thanks to @rjpower !

Other misc fixes:

  • Fixing feature encoder for tf.string variable length features.
  • adding hparam to make encoder self-attention optional.
  • Documentation update, thanks @w-hat

v1.15.5

18 Apr 18:14
Compare
Choose a tag to compare

PRs:

Some more code cleanups, regarding tf.compat.v1

v1.15.4

11 Jan 01:06
Compare
Choose a tag to compare
  • Flush out some more contrib remnants.

v1.15.3

10 Jan 22:39
Compare
Choose a tag to compare
  • Some changes to handle 1.x to 2.x for tf contrib
  • TODO(afrozm): Write more

v1.15.2

23 Nov 08:52
Compare
Choose a tag to compare

Some changes needed to be able to import problems with TF 2.0

v1.15.1

23 Nov 08:19
Compare
Choose a tag to compare
  • Move away from tf.flags to absl-py's flags.
  • Move away from std::string to tensorflow::string

v1.15.0

22 Nov 16:15
Compare
Choose a tag to compare

Final T2T major release

It is now in maintenance mode — we keep it running and welcome bug-fixes, but encourage users to use the successor library Trax.

PRs Merged

Bug Fixes

  • Fix features and decoding on TPUs by @mts42000
  • @iansimon and Kristy Choi around shape assertions and modalities
  • @superbobry fixed cases where tf.TensorShape was constructed with float dimensions

Misc

v1.14.1

03 Oct 21:04
Compare
Choose a tag to compare

PRs Merged

Docs

Problems

Models

  • Extend NeuralStack to support Dequeu by reading/writing in both directions, thanks @narphorium

TRAX

v1.14.0

21 Aug 22:03
Compare
Choose a tag to compare

Models / Layers:

  • NeuralStack and NeuralQueue added, in 838aca4 - thanks @narphorium !
  • Open Sourcing the Search Space used in EvolvedTransformer - 4ce3661
  • Masked local n-D attention added in - 2da59d2

Problems:

Bug Fixes:

  • Loss twice multiplied with loss_coef (#1627) by @davidmrau - thanks a lot David!
  • Fix log_prob accumulation during decoding, thanks @lmthang !
  • Fixed high usage of TPU HBM "Arguments" during serving
    in d38f343 thanks @ziy !
  • Should not generate summary during decoding in dot_product_relative_atention (#1618) thanks @phamthuonghai !

Misc changes:

  • Implement sequence packing as a tf.data.Dataset transformation - 560c008 thanks @robieta !
  • Lots of work on t2t_distill and model exporting by @ziy - thanks @ziy !

RL:

Introduce Rainbow. (#1607) by @konradczechowski in #1607
Changes to MBRL by @konradczechowski , @koz4k in multiple PRs.

PRs:

TRAX:

Base

  • Forked optimizers from JAX and make them objects in 1c7c10c
  • Trax layers are now stateful and support custom gradients.
  • Multi-device capability added.
  • Memory efficient trainer added in b2615aa ! Thanks Nikita Kitaev!
  • Adafactor optimizer added in TRAX - 63c015f
  • Demo Colab added in cec26db thanks @levskaya
  • Demo colab for trax layers - 7632ed0
  • Transformer, TransformerLM, Reversible Transformer, PositionLookupTransformer and Resnet50 are some of the models that TRAX now supports.

RL

  • Many PPO changes to be able to work on Atari.
  • Distributed PPO where the envs can run in multiple parallel machines using gRPC
  • SimulatedEnvProblem by @koz4k - a gym env that simulates a step taken by a trainer of a Neural Network in 2c76178
  • Implement SerializedSequenceSimulatedEnvProblem
    by @koz4k
  • Transformer can be used as a policy now, thanks to @koz4k in 33783fd !