mirror of
https://github.com/pese-git/llm-arch-research.git
synced 2026-01-23 13:00:54 +00:00
- Replace deprecated torch.uint8 and .byte() with torch.bool in GPT.generate - Add save/load methods to BPETokenizer for proper merges and vocab_list serialization - Update dependencies in pyproject.toml
25 lines
488 B
TOML
25 lines
488 B
TOML
[project]
|
|
name = "llm"
|
|
version = "0.1.0"
|
|
description = "Research library for LLM architectures"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Sergey Penkovsky", email = "sergey.penkovsky@gmail.com" }
|
|
]
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"torch>=2.3.0",
|
|
"numpy>=1.24.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"pytest>=7.0.0",
|
|
"pytest-cov>=4.0.0",
|
|
"pytest-mock>=3.0.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.8.22,<0.9.0"]
|
|
build-backend = "uv_build"
|