25 lines
483 B
TOML
25 lines
483 B
TOML
[project]
|
|
name = "sec-cybert-train"
|
|
version = "0.1.0"
|
|
description = "SEC-cyBERT training pipeline: DAPT, TAPT, fine-tuning, and evaluation"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"torch>=2.11",
|
|
"transformers",
|
|
"datasets",
|
|
"accelerate",
|
|
"pyyaml",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
flash = ["flash-attn"]
|
|
decoder = ["unsloth"]
|
|
|
|
[project.scripts]
|
|
sec-cybert = "main:main"
|
|
|
|
[[tool.uv.index]]
|
|
url = "https://pypi.org/simple/"
|
|
default = true
|