-
Notifications
You must be signed in to change notification settings - Fork 1.6k
tl.layers API Refactoring and various modifications #667
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
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
# Conflicts: # CHANGELOG.md
why we put |
If this is fine with you, this PR can be merged. No hurry anyway ;) |
@zsdonghao The idea was to remove redundant code that was everywhere. Maybe it is not the best idea, I can change it, if its a problem. The idea is to design one systematic manner to handle dictionary arguments |
zsdonghao
approved these changes
Jun 2, 2018
luomai
pushed a commit
that referenced
this pull request
Nov 21, 2018
* Decorators API Refactored * extra_requires `all`, `all_cpu` and `all_gpu` added * Error fix * YAPF Formating Correction * Test for private method decorator added * Test Logging Verbosity Fixed to Debug when runned individually * YAPF corrections applied * Changelog Added * Changelog updated * PR number changed * First Refactoring Pass done * cleaning second pass * Refactoring 3rd pass * Refactoring 4th Pass * Code Error fix * YAPF Formating Fix * Arguments now using self * YAPF error correction * Bug Fix in Decorator * act name bug fix * Error Correction * YAPF formating fix * Useless tf.identity removed * Error Fix * Changelog Updated * Error fix in tl.activation * Documentation error fix * Lazy Import added * Import Refactoring with LazyImport when necessary * Changelog Updated * Gitter Removed * Fixed proposed by @zsdonghao * Documentation updated * Missing requirements added * Update to TensorLayer 1.8.6rc1 * Requirements error fix * Docker Files updated
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Changelog
Added
tl.lazy_imports.LazyImport
to import heavy libraries only when necessary (by @DEKHTIARJonathan in tl.layers API Refactoring and various modifications #667)Changed
tf.identity
as activation is ignored, thus reducing the size of the graph by removing useless operation (by @DEKHTIARJonathan in tl.layers API Refactoring and various modifications #667)Layer
Base Class (by @DEKHTIARJonathan in tl.layers API Refactoring and various modifications #667)Deprecated
tl.layers.TimeDistributedLayer
argurmentargs
is deprecated in favor oflayer_args
(by @DEKHTIARJonathan in tl.layers API Refactoring and various modifications #667)Removed
assert()
calls remove and replaced byraise AssertionError()
(by @DEKHTIARJonathan in tl.layers API Refactoring and various modifications #667)tl.identity
is rFixed
private_method
(by @DEKHTIARJonathan in tl.layers API Refactoring and various modifications #667)