Skip to main content

Tensorless

Tensorless trains small native NumPy models with sensible defaults. It supports text generation, text classification, tabular classification, and regression.

Install

pip install -e .

Train on your data

import tensorless as tl

model = tl.train("./corpus.txt", task="text-generation")
print(model.generate("The", max_new_tokens=40))

Text files are trained as next-token language models. BPE is the default tokenizer; use tokenizer="char" for a character-level model. Tensorless derives model size, batch size, epochs, validation, device, and BPE vocabulary size from the data, while every setting can be overridden.

Long text is tokenized lazily and fed through the native engine in fixed-size batches. The automatic batch size uses a token budget; reduce batch_size if your available memory is limited.

English starter pretraining

import tensorless as tl

model = tl.pretrain(out="english.tl", epochs=20, max_seq_len=128)
print(model.generate("A complete sentence", max_new_tokens=30))

This offline starter corpus contains English prose and grammar examples. It is for demos and smoke tests, not a replacement for a large language dataset. For real pretraining, pass your own .txt corpus to tl.train() and increase the training settings as your hardware allows.

Other tasks

tl.train("reviews/", task="text-classification")
tl.train("housing.csv", task="regression")

Tabular preprocessing automatically handles numeric values, ISO dates, and high-cardinality categories. Missing and rare values are handled using the fitted training data, and the same preprocessing is stored in the .tl file.

Models are saved as .tl files and can be loaded later:

model = tl.load("model.tl")
print(model.info())

See the documentation for data formats, configuration, checkpointing, and the command-line interface.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tensorless-0.4.0.tar.gz (75.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tensorless-0.4.0-py3-none-any.whl (57.3 kB view details)

Uploaded Python 3

File details

Details for the file tensorless-0.4.0.tar.gz.

File metadata

  • Download URL: tensorless-0.4.0.tar.gz
  • Upload date:
  • Size: 75.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.1

File hashes

Hashes for tensorless-0.4.0.tar.gz
Algorithm Hash digest
SHA256 96edad15e7b950162a90215de44bee95a1705053fc771a8777e1de396446d2bc
MD5 88b91e2d94734cf74fcc2b479cba026e
BLAKE2b-256 51c33ef1abeb67032663dbedc54bfb82587acf5757ffd170c48141eb2b9af69f

See more details on using hashes here.

File details

Details for the file tensorless-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: tensorless-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 57.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.1

File hashes

Hashes for tensorless-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 968da322d264d202458a18d3ba13879b9e7f9433cd31839b3be38ab8e5d0b059
MD5 b972bdfed6519306cef444aedb26e621
BLAKE2b-256 e50914398da9ab5b887df07cdbb4538e1edb7dc234b58e7ba992f6cffb0527ea

See more details on using hashes here.

Release history Release notifications | RSS feed

0.9.3

2 files

0.9.2

2 files

0.9.1

2 files

0.9.0

2 files

0.8.0

2 files

0.7.0

2 files

0.6.0

2 files

0.5.0

2 files

This release

0.4.0 This release

2 files

0.3.0

2 files

0.2.0

2 files

0.1.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page