Metadata-Version: 2.1
Name: mokka
Version: 1.0.1
Summary: A machine learning toolbox for communications engineering
Keywords: communications engineering,machine learning
Author-email: Andrej Rode <rode@kit.edu>, Shrinivas Chimmalgi <shrinivas.chimmalgi@kit.edu>, Benedikt Geiger <benedikt.geiger@kit.edu>, Laurent Schmalen <laurent.schmalen@kit.edu>
Maintainer-email: Andrej Rode <rode@kit.edu>, Shrinivas Chimmalgi <shrinivas.chimmalgi@kit.edu>, Benedikt Geiger <benedikt.geiger@kit.edu>
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: attrs
Requires-Dist: numpy
Requires-Dist: torch
Requires-Dist: matplotlib
Requires-Dist: scipy
Requires-Dist: pyqtgraph
Requires-Dist: pre-commit ; extra == "dev"
Requires-Dist: pytest ; extra == "dev"
Requires-Dist: black ; extra == "dev"
Requires-Dist: flake8 ; extra == "dev"
Requires-Dist: pylint ; extra == "dev"
Requires-Dist: python-lsp-server[all] ; extra == "dev"
Requires-Dist: pyls-flake8 ; extra == "dev"
Requires-Dist: python-lsp-black ; extra == "dev"
Requires-Dist: sphinx ; extra == "dev"
Requires-Dist: sphinx-pyproject ; extra == "dev"
Requires-Dist: sphinx_rtd_theme ; extra == "dev"
Requires-Dist: wandb ; extra == "remotelog"
Requires-Dist: sionna ; extra == "tf"
Requires-Dist: torch ; extra == "torch"
Requires-Dist: torchaudio ; extra == "torch"
Provides-Extra: dev
Provides-Extra: remotelog
Provides-Extra: tf
Provides-Extra: torch

# Machine Learning and Optimization for Communications (MOKka) 
(german: **M**aschinelles Lernen und **O**ptimierung für **K**ommuni**ka**tionssysteme)

This Python package is intended to provide signal and information processing blocks in popular machine learning frameworks.
Most of the functionality currently is provided for the PyTorch machine learning framework. Some parts are already implemented to interface with the Sionna Python package.

## Prerequisites

This package works best if it is installed in a Python virtualenvironment, either provided by `python -m venv` or `conda`.
To leverage GPU for training with PyTorch and/or latest features of the PyTorch nightly version follow https://pytorch.org/get-started/locally/ to
install PyTorch from the PyTorch repositories and avoid installing the PyPI provided general-purpose version of PyTorch.

## Installation

To install `mokka` with functionality to work with PyTorch clone this repository and install (in a virtual environment):
```
pip install '.[torch]'
```

Several more optional dependencies are provided to support Sionna (and tensorflow) `[tf]` or for formatting and more development tools `[dev]`.
The popular machine learning reporting and experiment tracking tool weights & biases can be installed with `[remotelog]`.
For all possible optional dependencies enabled e.g.:
```
pip install '.[torch,tf,dev,remotelog]'
```

## Usage

This package provides a range of modules, covering a range of functions within a communication system.
To access functionality within a specific module first `import mokka` and then access of modules is possible, e.g. `mokka.mapping.torch` provides
constellation mappers and demappers implemented with and compatible to the PyTorch framework.

