/nlpsig

Package for constructing paths of embeddings obtained from transformers.

Primary LanguagePythonBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

nlpsig

Actions Status Documentation Status PyPI version PyPI platforms

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:

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:

python3 -m venv .venv
source ./.venv/bin/activate
pip install -v -e .
  • For using within Jupyter, you can create a kernel with:
python -m ipykernel install --user --name nlpsig

See CONTRIBUTING.md for more information on running the test suite using nox.