Metadata-Version: 2.3
Name: PolyTorch
Version: 0.1.4
Summary: Embeddings and loss functions for different data types.
License: Apache-2.0
Keywords: pytorch,deep learning,command-line interface
Author: Robert Turnbull
Author-email: robert.turnbull@unimelb.edu.au
Requires-Python: >=3.10,<4.0
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: attrs (>=19)
Requires-Dist: hierarchicalsoftmax (>=1.4.1)
Requires-Dist: kaleido (==0.2.1)
Requires-Dist: plotly (>=5.15.0)
Requires-Dist: scikit-learn (>=1.0.2)
Requires-Dist: torch (>=1.10.2)
Project-URL: Documentation, https://rbturnbull.github.io/polytorch
Project-URL: Homepage, https://github.com/rbturnbull/polytorch/
Project-URL: Repository, https://github.com/rbturnbull/polytorch/
Description-Content-Type: text/x-rst

================================================================
polytorch
================================================================

.. start-badges

|pypi badge| |testing badge| |coverage badge| |docs badge| |black badge| 

.. |pypi badge| image:: https://img.shields.io/pypi/v/polytorch?color=blue
   :alt: PyPI - Version
   :target: https://pypi.org/project/polytorch/

.. |testing badge| image:: https://github.com/rbturnbull/polytorch/actions/workflows/testing.yml/badge.svg
    :target: https://github.com/rbturnbull/polytorch/actions

.. |docs badge| image:: https://github.com/rbturnbull/polytorch/actions/workflows/docs.yml/badge.svg
    :target: https://rbturnbull.github.io/polytorch
    
.. |black badge| image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/psf/black
    
.. |coverage badge| image:: https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/rbturnbull/f84ac74436887cd42d77fbe2246d1f57/raw/coverage-badge.json
    :target: https://rbturnbull.github.io/polytorch/coverage/
    
.. end-badges

.. start-quickstart

Embeddings and loss functions for different data types.

Installation
==================================

Install using pip:

.. code-block:: bash

    pip install polytorch

Or install the latest version from GitHub:

.. code-block:: bash

    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
----------------------------------------

.. code-block:: python

    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
----------------------------------------

.. code-block:: python

    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
----------------------------------------

.. code-block:: python

    from polytorch import OrdinalData

    ordinal_data = OrdinalData()
    
    # Or with color
    ordinal_data = OrdinalData(color="pink")
    
Continuous Data
----------------------------------------

.. code-block:: python

    from polytorch import ContinuousData

    continuous_data = ContinuousData()

    # Or with color
    continuous_data = ContinuousData(color="orange")


Hierarchical Data
----------------------------------------


.. code-block:: python

    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
==================================

.. code-block:: python

    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
            ...            

.. warning:: 

    The ``HierarchicalData`` type is not yet supported by the ``PolyEmbedding`` class.

Outputting your data
==================================

You can also get your model to output to different data types.

.. code-block:: python

    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:

.. code-block:: python

    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)

.. end-quickstart


Credits
==================================

.. start-credits

Robert Turnbull
For more information contact: <robert.turnbull@unimelb.edu.au>

Created using torchapp (https://github.com/rbturnbull/torchapp).

.. end-credits


