SelfProjection is a PyTorch-based neural network layer designed to transform and project high-dimensional data.
Project description
SelfProjection Module for PyTorch
Overview
The SelfProjection
module is a PyTorch-based neural network layer designed to transform and project high-dimensional data. It is particularly useful in contexts requiring sophisticated analysis and representation of feature relationships, such as outputs from Transformer models.
Approach
The SelfProjection
module employs a dual projection mechanism to process input tensors, capturing different perspectives of the data. Key aspects include:
- Original and Permuted Projections: The module processes the input tensor in its original form and a permuted form, creating two distinct representations.
- Relational Interference: By computing relational matrices, the module captures the interplay between different projections, emphasizing the relationships between data dimensions.
- Normalization: Custom normalization steps, which involve mean subtraction and variance scaling similar to Layer Normalization, are applied to the projections, ensuring stable feature scaling and potentially improved model performance.
- Trainable Parameters: The module includes several trainable parameters, allowing it to learn optimal feature transformations during training.
Installation
Using pip:
To install the SelfProjection
module using pip, simply run the following command:
pip install self-projection
From source:
To install the SelfProjection
module, clone this repository and import the module into your PyTorch project.
git clone https://github.com/Sombressoul/self-projection ./self_projection
python -m pip install -e ./self_projection
Usage
Here's a simple example of how to use the SelfProjection
with PyTorch:
import torch
from self_projection import SelfProjection
# Define the input tensor dimensions and projection size
input_tensor = torch.randn((batch_size, sequence_length, embedding_dim))
size_projection = 128
# Initialize the SelfProjection module
self_projection = SelfProjection(size_input=input_tensor.size()[1::], size_projection=size_projection)
# Apply the module to the input tensor
projected, relations = self_projection(input_tensor)
print(projected.shape)
# >>> torch.Size([<batch_size>, 128, 128])
print(relations.shape)
# >>> torch.Size([<batch_size>, 128, 128])
Evaluation
(deleted as outdated since 20.01.2024)
Pending.
Future Directions
The ongoing development of the SelfProjection
module is a component of a personal endeavor in the field of machine learning. Future plans include conducting experiments with more complex datasets to further assess and refine the module's capabilities. These steps are aimed at exploring a broader range of applications and enhancing the module's performance in diverse settings.
This module is a reflection of my interest in contributing to the machine learning community through individual efforts and is one aspect of a larger personal project dedicated to exploring innovative approaches in the field.
Contribution
Contributions to the SelfProjection
module are welcome. Please submit a pull request or open an issue if you have suggestions or improvements.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file self-projection-0.2.1.tar.gz
.
File metadata
- Download URL: self-projection-0.2.1.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82bfa61964f0cd186e416cf511ec5f511d13a9351e726bca48c6ff15b0320100 |
|
MD5 | 563427004ffb055e881f093b9880ca7d |
|
BLAKE2b-256 | 7f6aac030db1f636431babf24969419f0b108b0c8a8a9929d498493e433d934a |
Provenance
File details
Details for the file self_projection-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: self_projection-0.2.1-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5d0c5ebb91462abdc043b75b650e710d2e6927482d0d8c406d83f56eadd5dbd |
|
MD5 | f36dbd23b0a79c78a0776693ff49a3aa |
|
BLAKE2b-256 | b4dde0c99a16f311feb253c0b90d875e470778e5882497afcc3a8f39eb1f2b73 |