nvidia-nat-nemo-customizer 1.4.0a20251223__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- nat/meta/pypi.md +23 -0
- nat/plugins/customizer/__init__.py +43 -0
- nat/plugins/customizer/dpo/__init__.py +44 -0
- nat/plugins/customizer/dpo/config.py +360 -0
- nat/plugins/customizer/dpo/register.py +157 -0
- nat/plugins/customizer/dpo/trainer.py +424 -0
- nat/plugins/customizer/dpo/trainer_adapter.py +550 -0
- nat/plugins/customizer/dpo/trajectory_builder.py +767 -0
- nat/plugins/customizer/register.py +23 -0
- nvidia_nat_nemo_customizer-1.4.0a20251223.dist-info/METADATA +45 -0
- nvidia_nat_nemo_customizer-1.4.0a20251223.dist-info/RECORD +16 -0
- nvidia_nat_nemo_customizer-1.4.0a20251223.dist-info/WHEEL +5 -0
- nvidia_nat_nemo_customizer-1.4.0a20251223.dist-info/entry_points.txt +2 -0
- nvidia_nat_nemo_customizer-1.4.0a20251223.dist-info/licenses/LICENSE-3rd-party.txt +5478 -0
- nvidia_nat_nemo_customizer-1.4.0a20251223.dist-info/licenses/LICENSE.md +201 -0
- nvidia_nat_nemo_customizer-1.4.0a20251223.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# SPDX-FileCopyrightText: Copyright (c) 2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
2
|
+
# SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
"""
|
|
16
|
+
Registration entry point for NeMo Customizer plugin.
|
|
17
|
+
|
|
18
|
+
This module imports all registration modules to ensure components are
|
|
19
|
+
registered with NAT when the plugin is loaded.
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
# Import DPO trajectory builder registration
|
|
23
|
+
from .dpo import register # noqa: F401
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: nvidia-nat-nemo-customizer
|
|
3
|
+
Version: 1.4.0a20251223
|
|
4
|
+
Summary: Subpackage for NeMo Customizer integration in NeMo Agent toolkit
|
|
5
|
+
Author: NVIDIA Corporation
|
|
6
|
+
Maintainer: NVIDIA Corporation
|
|
7
|
+
License: Apache-2.0
|
|
8
|
+
Project-URL: documentation, https://docs.nvidia.com/nemo/agent-toolkit/latest/
|
|
9
|
+
Project-URL: source, https://github.com/NVIDIA/NeMo-Agent-Toolkit
|
|
10
|
+
Keywords: ai,finetuning
|
|
11
|
+
Classifier: Programming Language :: Python
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
15
|
+
Requires-Python: <3.14,>=3.11
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
License-File: LICENSE-3rd-party.txt
|
|
18
|
+
License-File: LICENSE.md
|
|
19
|
+
Requires-Dist: nvidia-nat==v1.4.0a20251223
|
|
20
|
+
Requires-Dist: nemo-microservices~=1.4
|
|
21
|
+
Dynamic: license-file
|
|
22
|
+
|
|
23
|
+
<!--
|
|
24
|
+
SPDX-FileCopyrightText: Copyright (c) 2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
25
|
+
SPDX-License-Identifier: Apache-2.0
|
|
26
|
+
|
|
27
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
28
|
+
you may not use this file except in compliance with the License.
|
|
29
|
+
You may obtain a copy of the License at
|
|
30
|
+
|
|
31
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
32
|
+
|
|
33
|
+
Unless required by applicable law or agreed to in writing, software
|
|
34
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
35
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
36
|
+
See the License for the specific language governing permissions and
|
|
37
|
+
limitations under the License.
|
|
38
|
+
-->
|
|
39
|
+
|
|
40
|
+

|
|
41
|
+
|
|
42
|
+
# NVIDIA NeMo Agent Toolkit Subpackage
|
|
43
|
+
This is a subpackage for NeMo Customizer integration in NeMo Agent toolkit.
|
|
44
|
+
|
|
45
|
+
For more information about the NVIDIA NeMo Agent toolkit, please visit the [NeMo Agent toolkit GitHub Repo](https://github.com/NVIDIA/NeMo-Agent-Toolkit).
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
nat/meta/pypi.md,sha256=aNAniC4GXGgmL6EWBN31-73EWtFg0pepvGX-KW170bI,1115
|
|
2
|
+
nat/plugins/customizer/__init__.py,sha256=g5CPzGygU3F6vdf8Zity7YazeyRhRs8-eDOCtE3T_gk,1631
|
|
3
|
+
nat/plugins/customizer/register.py,sha256=uTD4-Tr8hmkMnQ2m0Q_dWFDA2cmvHOBLKL25Ef5g5cs,945
|
|
4
|
+
nat/plugins/customizer/dpo/__init__.py,sha256=icxglvByi8qgxGf0N5Ek84kh3NaIrUAN84WTsPYfj3E,1746
|
|
5
|
+
nat/plugins/customizer/dpo/config.py,sha256=wRvGev32ZajcCiVtqIOtUl5f7_QRhW_eCUDiFL3xbF0,13224
|
|
6
|
+
nat/plugins/customizer/dpo/register.py,sha256=I6KCGCNLRVZvc6QoK22FOFdQulwd34MzhWpBFvvhl30,5586
|
|
7
|
+
nat/plugins/customizer/dpo/trainer.py,sha256=tAIjz9zhiqMqKRQdue-Y9QziR4TfhdCjmVWQH_7dbIk,16686
|
|
8
|
+
nat/plugins/customizer/dpo/trainer_adapter.py,sha256=rNcMgYk23xdoMBGh-crX6IvpAoVIHjqt0g82Ej44Uus,21854
|
|
9
|
+
nat/plugins/customizer/dpo/trajectory_builder.py,sha256=QRPp_JraX7e06_BjKYZ3lMKYiAOMVXfVR1j-nx8Bu3Y,28241
|
|
10
|
+
nvidia_nat_nemo_customizer-1.4.0a20251223.dist-info/licenses/LICENSE-3rd-party.txt,sha256=fOk5jMmCX9YoKWyYzTtfgl-SUy477audFC5hNY4oP7Q,284609
|
|
11
|
+
nvidia_nat_nemo_customizer-1.4.0a20251223.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
12
|
+
nvidia_nat_nemo_customizer-1.4.0a20251223.dist-info/METADATA,sha256=yi6_IgG1SyInVwVpPz6tnd8u3x14Dg6AVUuX1lQXS9Y,1948
|
|
13
|
+
nvidia_nat_nemo_customizer-1.4.0a20251223.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
14
|
+
nvidia_nat_nemo_customizer-1.4.0a20251223.dist-info/entry_points.txt,sha256=tnRfUX9ZevqksGFltxBOVhmDgc80P_ckkNNT4_6hz6E,63
|
|
15
|
+
nvidia_nat_nemo_customizer-1.4.0a20251223.dist-info/top_level.txt,sha256=8-CJ2cP6-f0ZReXe5Hzqp-5pvzzHz-5Ds5H2bGqh1-U,4
|
|
16
|
+
nvidia_nat_nemo_customizer-1.4.0a20251223.dist-info/RECORD,,
|