ppc64le/linux/: outlines-core-0.1.26 metadata and description

Simple index

Structured Text Generation in Rust

author Outlines Developers
classifiers
  • Development Status :: 5 - Production/Stable
  • Intended Audience :: Developers
  • Intended Audience :: Information Technology
  • Intended Audience :: Science/Research
  • Operating System :: OS Independent
  • Programming Language :: Python :: 3
  • Topic :: Scientific/Engineering :: Artificial Intelligence
  • Environment :: MetaData :: IBM Python Ecosystem
description_content_type text/markdown
dynamic license-file
keywords machine learning,deep learning,language models,structured generation
license Apache-2.0
license_file LICENSE
project_urls
  • homepage, https://github.com/dottxt-ai/outlines-core
  • documentation, https://dottxt-ai.github.io/outlines-core/
  • repository, https://github.com/dottxt-ai/outlines-core
provides_extras test
requires_dist
  • interegular
  • jsonschema
  • pre-commit; extra == "test"
  • pydantic; extra == "test"
  • pytest; extra == "test"
  • pytest-benchmark; extra == "test"
  • pytest-cov; extra == "test"
  • pytest-mock; extra == "test"
  • coverage[toml]>=5.1; extra == "test"
  • diff-cover; extra == "test"
  • accelerate; extra == "test"
  • beartype<0.16.0; extra == "test"
  • huggingface_hub; extra == "test"
  • torch; extra == "test"
  • numpy; extra == "test"
  • scipy; extra == "test"
  • transformers; extra == "test"
  • datasets; extra == "test"
  • pillow; extra == "test"
  • asv; extra == "test"
  • psutil; extra == "test"
  • setuptools-rust; extra == "test"
requires_python >=3.8
File Tox results History
outlines_core-0.1.26-cp312-cp312-linux_ppc64le.whl
Size
380 KB
Type
Python Wheel
Python
3.12

Outlines-core Logo

Contributors

Structured generation (in Rust).

This package provides the core functionality for structured generation, formerly implemented in Outlines, with a focus on performance and portability.

Install

We provide bindings to the following languages:

The latest release of the Python bindings is available on PyPi using pip:

pip install outlines-core

The current development branch of outlines-core can be installed from GitHub, also using pip:

pip install git+https://github.com/outlines-dev/outlines-core

Or install in a rust project with cargo:

cargo add outlines-core

How to contribute?

Setup

First, fork the repository on GitHub and clone the fork locally:

git clone [email protected]/YourUserName/outlines-core.git
cd outlines-core

Create a new virtual environment:

python -m venv .venv
source .venv/bin/activate

Then install the dependencies in editable mode, and install the pre-commit hooks:

pip install -e ".[test]"
pre-commit install

Before pushing your code

Run the tests:

pytest

And run the code style checks:

pre-commit run --all-files