-
Notifications
You must be signed in to change notification settings - Fork 15
Added easy venv creation using uv. Also updated PyTorch version. #431
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,16 +1,17 @@ | ||||||
| [project] | ||||||
| name = "modalities" | ||||||
| version = "0.5.0" | ||||||
| requires-python = ">=3.10,<=3.13" | ||||||
| requires-python = ">=3.10,<3.14" | ||||||
BlueCrescent marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
| description = "Modalities, a PyTorch-native framework for distributed and reproducible foundation model training." | ||||||
| readme = "README.md" | ||||||
| dependencies = [ | ||||||
| "numpy", | ||||||
| "torch", | ||||||
| "torch<2.11.0", | ||||||
| "ninja", | ||||||
BlueCrescent marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
| "packaging", | ||||||
| "tqdm", | ||||||
| "pyyaml", | ||||||
| "transformers", | ||||||
| "transformers>=4.57.4,<5.0.0", | ||||||
| "datasets", | ||||||
| "protobuf", | ||||||
| "SentencePiece", | ||||||
|
|
@@ -24,6 +25,7 @@ dependencies = [ | |||||
| "matplotlib", | ||||||
| "wandb", | ||||||
| "einops>=0.7.0", | ||||||
| "flash-attn==2.8.3; platform_system != 'Darwin' and platform_machine != 'aarch64'", | ||||||
|
||||||
| "flash-attn==2.8.3; platform_system != 'Darwin' and platform_machine != 'aarch64'", | |
| "flash-attn==2.8.3; platform_system != 'Darwin' and platform_machine != 'aarch64'", # Exclude macOS (Darwin) and ARM64 because flash-attn requires NVIDIA CUDA and wheels are not available on these platforms |
Uh oh!
There was an error while loading. Please reload this page.