-
Notifications
You must be signed in to change notification settings - Fork 11
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
adapt preprocessing #163
Merged
adapt preprocessing #163
Conversation
This file contains 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
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.
This pull request includes several updates to the
README.md
file and new functionalities in themambular/arch_utils
directory. The most important changes include the addition of a new CNN block, enhancements to the batch ensemble layer, and the introduction of a multi-head attention module with batch ensembling.Documentation Updates:
README.md
: Removed the "Results" section, including detailed results, average rank table, and related content.README.md
: Corrected the description of "Periodic Linear Encoding (PLE)" to "Piecewise Linear Encodings (PLE)" in the preprocessing tools section.New Functionalities:
mambular/arch_utils/cnn_utils.py
: Added a newCNNBlock
class that allows for configurable convolutional, pooling, and dropout layers.Enhancements to Batch Ensemble Layer:
mambular/arch_utils/layer_utils/batch_ensemble_layer.py
: Added the option for "normal" initialization in thereset_parameters
method. [1] [2] [3]mambular/arch_utils/layer_utils/batch_ensemble_layer.py
: Introduced a newMultiHeadAttentionBatchEnsemble
class, which implements multi-head attention with batch ensembling.Minor Configurations:
mambular/arch_utils/layer_utils/embedding_layer.py
: Changed the defaultembedding_type
to "linear" and added anembedding_bias
attribute.