Embeddings and loss functions for different data types.
Project description
Embeddings and loss functions for different data types.
Installation
Install using pip:
pip install polytorch
Or install the latest version from GitHub:
pip install git+https://github.com/rbturnbull/polytorch.git
Data Types
This package allow you to input and output different data types in PyTorch models.
Binary Data
from polytorch import BinaryData
binary_data = BinaryData()
# Or with labels and colors
binary_data = BinaryData(labels=["no_feature", "with_feature", colors=["red", "blue"])
Categorical Data
from polytorch import CategoricalData
category_count = 5 # Number of categories
categorical_data = CategoricalData(category_count)
# Or with labels, colors and label smoothing
categorical_data = CategoricalData(
category_count=category_count,
labels=["cat", "dog", "fish", "bird", "reptile"],
colors=["red", "blue", "green", "yellow", "purple"],
label_smoothing=0.1,
)
Ordinal Data
from polytorch import OrdinalData
ordinal_data = OrdinalData()
# Or with color
ordinal_data = OrdinalData(color="pink")
Continuous Data
from polytorch import ContinuousData
continuous_data = ContinuousData()
# Or with color
continuous_data = ContinuousData(color="orange")
Hierarchical Data
from polytorch import HierarchicalData
from hiearchicalsoftmax import SoftmaxNode
root = SoftmaxNode("root")
child1 = SoftmaxNode("child1", parent=root)
child2 = SoftmaxNode("child2", parent=root)
tip1 = SoftmaxNode("tip1", parent=child1)
tip2 = SoftmaxNode("tip2", parent=child1)
tip3 = SoftmaxNode("tip3", parent=child2)
tip4 = SoftmaxNode("tip4", parent=child2)
hierarchical_data = HierarchicalData(root)
Embedding your data
from torch import nn
from polytorch import Embedding
class MyModule(nn.Module):
def __init__(self, embedding_size:int=128):
super(MyModule, self).__init__()
input_types = [binary_data, categorical_data] # for example. Could be other data types as well.
self.embedding = PolyEmbedding( input_types=input_types, embedding_size=embedding_size)
# Other modules
...
def forward(self, x_binary, x_categorical):
embedded = self.embedding( x_binary, x_categorical )
# Use the embedded features in your model
...
Outputting your data
You can also get your model to output to different data types.
from torch import nn
from polytorch import PolyLazyLinear
output_types = [
CategoricalData(category_count=5, loss_weighting=0.5), # For example, a categorical output with 5 categories
BinaryData(loss_weighting=1.0), # A binary output
ContinuousData(loss_weighting=0.1) # A continuous output
]
class MyModule(nn.Module):
def __init__(self, output_types):
super(MyModule, self).__init__()
self.output = PolyLazyLinear(output_types=output_types)
def forward(self, x):
# Your model logic
...
# Output to different data types
return self.output(x)
Then add set this as the loss:
from polytorch import PolyLoss
loss_module = PolyLoss(output_types=output_types)
# In your training loop
loss = loss_module(predictions, categorical_target, binary_target, continuous_target)
Credits
Robert Turnbull For more information contact: <robert.turnbull@unimelb.edu.au>
Created using torchapp (https://github.com/rbturnbull/torchapp).
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file polytorch-0.1.4.tar.gz.
File metadata
- Download URL: polytorch-0.1.4.tar.gz
- Upload date:
- Size: 14.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.1 CPython/3.13.1 Darwin/24.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
084b0e70865c5c6baa06cf0e89775a30dcbd235141f7697ff01bd2e8c3804d40
|
|
| MD5 |
2ed17bed8b4b77ef5472290687c1e116
|
|
| BLAKE2b-256 |
079e6d7412d385fe6a9c46ec9c4d4920fc94d712c932513161e3bf6cdf44de11
|
File details
Details for the file polytorch-0.1.4-py3-none-any.whl.
File metadata
- Download URL: polytorch-0.1.4-py3-none-any.whl
- Upload date:
- Size: 16.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.1 CPython/3.13.1 Darwin/24.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f8490a0993100983dfc04201b06e0bc005ca94708ac2068bdc23539082e1385
|
|
| MD5 |
d14e2f2008760cf7e6a81d73085464b3
|
|
| BLAKE2b-256 |
d5ce7de4290dbdef9beed296785147bdca339a9c09392895e009ec530c76b4e8
|