File size: 911 Bytes
d303b8b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | [build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "predictlm"
version = "11.1.0"
description = "Compact distilled tabular foundation model for in-context regression and classification."
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [{ name = "ZeroOne Research" }]
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"torch>=2.0",
"numpy>=1.24",
"scikit-learn>=1.2",
]
[project.optional-dependencies]
hub = ["huggingface_hub>=0.20"]
[project.urls]
Homepage = "https://huggingface.co/zerooneresearch/predictlm-mini-13m"
Repository = "https://github.com/zerooneresearch/predictlm-v11"
[tool.setuptools.packages.find]
include = ["predictlm_v11*"]
|