Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ authors = [
]
dependencies = [
# Core ML/AI frameworks
"torch",
"torch>=2.8.0",
"torchaudio",
"transformers==4.55.2",
"lightning",
Expand Down Expand Up @@ -84,13 +84,13 @@ cu128 = [] # CUDA 12.8 with PyTorch 2.7
# Defaults to CUDA 12.8 for Linux if no extra is specified
torch = [
{ index = "pytorch-cpu", marker = "sys_platform == 'darwin'" },
{ index = "pytorch-cuda-124", marker = "sys_platform == 'linux' and extra == 'cu124'" },
{ index = "pytorch-cuda-128", marker = "sys_platform == 'linux' and extra == 'cu124'" },
{ index = "pytorch-cuda-128", marker = "sys_platform == 'linux' and extra != 'cu124'" },
]

torchaudio = [
{ index = "pytorch-cpu", marker = "sys_platform == 'darwin'" },
{ index = "pytorch-cuda-124", marker = "sys_platform == 'linux' and extra == 'cu124'" },
{ index = "pytorch-cuda-128", marker = "sys_platform == 'linux' and extra == 'cu124'" },
{ index = "pytorch-cuda-128", marker = "sys_platform == 'linux' and extra != 'cu124'" },
]
nemo_text_processing = [
Expand Down
Loading