This repository was archived by the owner on Jul 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
v1.3.1 #451
Merged
Merged
v1.3.1 #451
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
20c7e41
Discrete autoencoder with VQ-VAE as in https://arxiv.org/abs/1711.00937.
a-googler c9144df
Packed datasets - combine examples to constant length for efficient T…
nshazeer 7f3ef1e
Make Parallelism object use reuse=True by default. Solves tpu checkp…
nshazeer 01030eb
Remove TranslateEndeWmtBpe32kPacked. We have TranslateEndeWmt32kPacked.
nshazeer 24c1fd7
Clean up transformer_vae and add refining.
aa2c0b7
T2T depends on TF 1.4+, daisy_chain_getter bug fix, some Eager-mode i…
b1abcf4
v1.3.1
c93a188
New BLEU cleanup and small correction to VAE.
e133a1a
Enable Transformer fast decoding in eager mode
654f74e
Fix decoding and training issues in external colab.
889fc84
TF Eager improvements for T2TModel
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setup( | ||
name='tensor2tensor', | ||
version='1.3.0', | ||
version='1.3.1', | ||
description='Tensor2Tensor', | ||
author='Google Inc.', | ||
author_email='[email protected]', | ||
|
@@ -15,16 +15,14 @@ | |
package_data={ | ||
'tensor2tensor.data_generators': ['test_data/*'], | ||
'tensor2tensor.visualization': [ | ||
'attention.js', | ||
'TransformerVisualization.ipynb' | ||
'attention.js', 'TransformerVisualization.ipynb' | ||
], | ||
}, | ||
scripts=[ | ||
'tensor2tensor/bin/t2t-trainer', | ||
'tensor2tensor/bin/t2t-datagen', | ||
'tensor2tensor/bin/t2t-decoder', | ||
'tensor2tensor/bin/t2t-make-tf-configs', | ||
'tensor2tensor/bin/t2t-bleu', | ||
], | ||
install_requires=[ | ||
'bz2file', | ||
|
@@ -35,8 +33,8 @@ | |
'six', | ||
], | ||
extras_require={ | ||
'tensorflow': ['tensorflow>=1.3.0'], | ||
'tensorflow_gpu': ['tensorflow-gpu>=1.3.0'], | ||
'tensorflow': ['tensorflow>=1.4.0'], | ||
'tensorflow_gpu': ['tensorflow-gpu>=1.4.0'], | ||
'tests': ['pytest', 'h5py', 'mock'], | ||
}, | ||
classifiers=[ | ||
|
@@ -46,4 +44,5 @@ | |
'License :: OSI Approved :: Apache Software License', | ||
'Topic :: Scientific/Engineering :: Artificial Intelligence', | ||
], | ||
keywords='tensorflow machine learning',) | ||
keywords='tensorflow machine learning', | ||
) |
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the deletion of t2t-bleu intentional?
(I can understand it, if yes.)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for noticing that. No, it was not intentional and likely due to a bad internal merge of the PR.