Metadata-Version: 2.1
Name: nlpsig
Version: 0.2.0
Summary: Path signatures for Natural Language Processing.
Project-URL: Homepage, https://github.com/datasig-ac-uk/nlpsig
Project-URL: Bug Tracker, https://github.com/datasig-ac-uk/nlpsig/issues
Project-URL: Discussions, https://github.com/datasig-ac-uk/nlpsig/discussions
Project-URL: Changelog, https://github.com/datasig-ac-uk/nlpsig/releases
Author-email: Ryan Chan <rchan@turing.ac.uk>, Talia Tseriotou <t.tseriotou@qmul.ac.uk>, Kasra Hosseini <khosseini@turing.ac.uk>, Nathan Simpson <nsimpson@turing.ac.uk>
License-File: LICENSE
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Scientific/Engineering
Requires-Python: <3.9,>=3.8
Requires-Dist: datasets>=2.6.1
Requires-Dist: distinctipy>=1.2.2
Requires-Dist: evaluate>=0.4.0
Requires-Dist: matplotlib>=3.6.2
Requires-Dist: pandas>=1.5.1
Requires-Dist: scikit-learn>=1.1.3
Requires-Dist: sentence-transformers>=2.2.2
Requires-Dist: tdqm>=0.0.1
Requires-Dist: torch>=1.9.0
Requires-Dist: transformers>=4.27.3
Requires-Dist: umap-learn>=0.5.3
Provides-Extra: dev
Requires-Dist: pytest-cov>=3; extra == 'dev'
Requires-Dist: pytest>=6; extra == 'dev'
Provides-Extra: docs
Requires-Dist: furo; extra == 'docs'
Requires-Dist: myst-parser>=0.13; extra == 'docs'
Requires-Dist: sphinx-book-theme>=0.1.0; extra == 'docs'
Requires-Dist: sphinx-copybutton; extra == 'docs'
Requires-Dist: sphinx>=4.0; extra == 'docs'
Provides-Extra: test
Requires-Dist: pytest-cov>=3; extra == 'test'
Requires-Dist: pytest>=6; extra == 'test'
Description-Content-Type: text/markdown

# nlpsig

[![Actions Status][actions-badge]][actions-link]
[![Documentation Status][rtd-badge]][rtd-link]
[![PyPI version][pypi-version]][pypi-link]
[![PyPI platforms][pypi-platforms]][pypi-link]

<!-- [![Conda-Forge][conda-badge]][conda-link] -->

<!-- [![GitHub Discussion][github-discussions-badge]][github-discussions-link]
[![Gitter][gitter-badge]][gitter-link] -->

<!-- prettier-ignore-start -->
[actions-badge]:            https://github.com/datasig-ac-uk/nlpsig/workflows/CI/badge.svg
[actions-link]:             https://github.com/datasig-ac-uk/nlpsig/actions
[conda-badge]:              https://img.shields.io/conda/vn/conda-forge/nlpsig
[conda-link]:               https://github.com/conda-forge/nlpsig-feedstock
[github-discussions-badge]: https://img.shields.io/static/v1?label=Discussions&message=Ask&color=blue&logo=github
[github-discussions-link]:  https://github.com/datasig-ac-uk/nlpsig/discussions
[gitter-badge]:             https://badges.gitter.im/https://github.com/datasig-ac-uk/nlpsig/community.svg
[gitter-link]:              https://gitter.im/https://github.com/datasig-ac-uk/nlpsig/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge
[pypi-link]:                https://pypi.org/project/nlpsig/
[pypi-platforms]:           https://img.shields.io/pypi/pyversions/nlpsig
[pypi-version]:             https://img.shields.io/pypi/v/nlpsig
[rtd-badge]:                https://readthedocs.org/projects/nlpsig/badge/?version=latest
[rtd-link]:                 https://nlpsig.readthedocs.io/en/latest/?badge=latest
<!-- prettier-ignore-end -->

## Installation

```
pip install nlpsig
```

### From source:

In the root directory of this repository, perform a verbose, editable install
with pip into a new virtual environment. For example using `conda`:

```bash
git clone git@github.com:datasig-ac-uk/nlpsig.git
cd nlpsig
conda create -n nlpsig python=3.8
conda activate nlpsig
pip install -v -e .
```

Or with `venv`:

```bash
python3 -m venv .venv
source ./.venv/bin/activate
pip install -v -e .
```

- For using within Jupyter, you can create a kernel with:

```bash
python -m ipykernel install --user --name nlpsig
```

See [CONTRIBUTING.md](CONTRIBUTING.md) for more information on running the test
suite using `nox`.
