|
3 | 3 |
|
4 | 4 | MAJOR = 0 |
5 | 5 | MINOR = 2 |
6 | | -PATCH = 0 |
7 | | -PRE_RELEASE = '' |
| 6 | +PATCH = 1 |
| 7 | +PRE_RELEASE = "" |
8 | 8 |
|
9 | 9 | # Use the following formatting: (major, minor, patch, pre-release) |
10 | 10 | VERSION = (MAJOR, MINOR, PATCH, PRE_RELEASE) |
11 | 11 |
|
12 | | -__shortversion__ = '.'.join(map(str, VERSION[:3])) |
13 | | -__version__ = '.'.join(map(str, VERSION[:3])) + ''.join(VERSION[3:]) |
| 12 | +__shortversion__ = ".".join(map(str, VERSION[:3])) |
| 13 | +__version__ = ".".join(map(str, VERSION[:3])) + "".join(VERSION[3:]) |
14 | 14 |
|
15 | | -__package_name__ = 'megatron_fsdp' |
16 | | -__contact_names__ = 'NVIDIA' |
17 | | -__contact_emails__ = 'nemo-toolkit@nvidia.com' # use NeMo Email |
18 | | -__homepage__ = 'https://docs.nvidia.com/megatron-core/developer-guide/latest/user-guide/index.html' |
19 | | -__repository_url__ = 'https://github.com/NVIDIA/Megatron-LM/tree/main/megatron/core' |
20 | | -__download_url__ = 'https://github.com/NVIDIA/Megatron-LM/releases' |
| 15 | +__package_name__ = "megatron_fsdp" |
| 16 | +__contact_names__ = "NVIDIA" |
| 17 | +__contact_emails__ = "nemo-toolkit@nvidia.com" # use NeMo Email |
| 18 | +__homepage__ = "https://docs.nvidia.com/megatron-core/developer-guide/latest/user-guide/index.html" |
| 19 | +__repository_url__ = "https://github.com/NVIDIA/Megatron-LM/tree/main/megatron/core" |
| 20 | +__download_url__ = "https://github.com/NVIDIA/Megatron-LM/releases" |
21 | 21 | __description__ = ( |
22 | | - 'Megatron Core - a library for efficient and scalable training of transformer based models' |
| 22 | + "Megatron Core - a library for efficient and scalable training of transformer based models" |
23 | 23 | ) |
24 | | -__license__ = 'BSD-3' |
| 24 | +__license__ = "BSD-3" |
25 | 25 | __keywords__ = ( |
26 | | - 'deep learning, machine learning, gpu, NLP, NLU, language, transformer, nvidia, pytorch, torch' |
| 26 | + "deep learning, machine learning, gpu, NLP, NLU, language, transformer, nvidia, pytorch, torch" |
27 | 27 | ) |
0 commit comments