Skip to content
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

feat: Adding Nvidia model training components. #6920

Open
wants to merge 47 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
3ca503c
Adding Nvidia model training components.
maheshrajamani Mar 4, 2025
73b0964
[autofix.ci] apply automated fixes
autofix-ci[bot] Mar 4, 2025
2a8a0d6
Merge branch 'main' into model-training
maheshrajamani Mar 4, 2025
a5b4561
Fix for issue reported by the code style check
maheshrajamani Mar 5, 2025
96b0d47
Fixed merge conflict
maheshrajamani Mar 5, 2025
8b48662
[autofix.ci] apply automated fixes
autofix-ci[bot] Mar 5, 2025
026ef14
Fixed the error returned for evaluator code styling
maheshrajamani Mar 5, 2025
1f371c0
Merge branch 'model-training' of https://github.com/maheshrajamani/la…
maheshrajamani Mar 5, 2025
69c69ab
Fixed the error returned for evaluator code styling
maheshrajamani Mar 5, 2025
d14e365
[autofix.ci] apply automated fixes
autofix-ci[bot] Mar 5, 2025
2b0c71b
Revert changes to package-lock.json
maheshrajamani Mar 5, 2025
5dc0bc8
Revert changes to package-lock.json
maheshrajamani Mar 5, 2025
89112d9
[autofix.ci] apply automated fixes
autofix-ci[bot] Mar 5, 2025
1c3d260
Merge branch 'model-training' of https://github.com/maheshrajamani/la…
maheshrajamani Mar 5, 2025
7de5e23
Merge branch 'main' into model-training
maheshrajamani Mar 5, 2025
c02879f
Fixed as per code style suggestion
maheshrajamani Mar 5, 2025
9c7b610
[autofix.ci] apply automated fixes
autofix-ci[bot] Mar 5, 2025
36d5aa8
Fixed the code style to handle continue in else block
maheshrajamani Mar 5, 2025
e8d8604
[autofix.ci] apply automated fixes
autofix-ci[bot] Mar 5, 2025
3c8dd28
Fixing code style issues
maheshrajamani Mar 5, 2025
02fe481
[autofix.ci] apply automated fixes
autofix-ci[bot] Mar 5, 2025
927b47c
Fix for code style issues
maheshrajamani Mar 5, 2025
4339b95
Fixed as per review comments
maheshrajamani Mar 6, 2025
d450165
[autofix.ci] apply automated fixes
autofix-ci[bot] Mar 6, 2025
bfcd8cd
Fixed as per review comments
maheshrajamani Mar 6, 2025
6441142
Merge branch 'model-training' of https://github.com/maheshrajamani/la…
maheshrajamani Mar 6, 2025
0ccc2af
Code improvement to evaluator based on reviews from yesterday.
maheshrajamani Mar 6, 2025
fdf3aaf
[autofix.ci] apply automated fixes
autofix-ci[bot] Mar 6, 2025
a71b7ad
Code improvement to customizer:
maheshrajamani Mar 10, 2025
4252d6e
Merge branch 'model-training' of https://github.com/maheshrajamani/la…
maheshrajamani Mar 10, 2025
d60a04b
[autofix.ci] apply automated fixes
autofix-ci[bot] Mar 10, 2025
88f0943
Refactored eval code for similar code changes done to evaluator.
maheshrajamani Mar 10, 2025
4e665c2
Merge branch 'model-training' of https://github.com/maheshrajamani/la…
maheshrajamani Mar 10, 2025
f38b292
[autofix.ci] apply automated fixes
autofix-ci[bot] Mar 10, 2025
b712ca1
Reordered the import for "I001 Import block is un-sorted or un-format…
maheshrajamani Mar 10, 2025
47923b1
Merge branch 'model-training' of https://github.com/maheshrajamani/la…
maheshrajamani Mar 10, 2025
4859cb0
Change the get_repo_id to create_namespace
maheshrajamani Mar 10, 2025
20d387d
[autofix.ci] apply automated fixes
autofix-ci[bot] Mar 10, 2025
cd464ba
Fixed the rtpo
maheshrajamani Mar 10, 2025
35c540e
Merge branch 'model-training' of https://github.com/maheshrajamani/la…
maheshrajamani Mar 10, 2025
b775581
Changes based on feedback
maheshrajamani Mar 11, 2025
9acbf7f
[autofix.ci] apply automated fixes
autofix-ci[bot] Mar 11, 2025
510c35a
Used settings for nemo url's
maheshrajamani Mar 12, 2025
594270a
Merge branch 'model-training' of https://github.com/maheshrajamani/la…
maheshrajamani Mar 12, 2025
a7a16a9
[autofix.ci] apply automated fixes
autofix-ci[bot] Mar 12, 2025
9d2b1b1
Changed the component result as `Job Info`
maheshrajamani Mar 12, 2025
db296da
Merge branch 'model-training' of https://github.com/maheshrajamani/la…
maheshrajamani Mar 12, 2025
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
2 changes: 1 addition & 1 deletion src/backend/base/langflow/components/nvidia/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .nvidia_ingest import NvidiaIngestComponent
from .nvidia_rerank import NvidiaRerankComponent

__all__ = ["NvidiaIngestComponent", "NvidiaRerankComponent"]
__all__ = ["NvidiaCustomizerComponent", "NvidiaEvaluatorComponent", "NvidiaIngestComponent", "NvidiaRerankComponent"]
Loading
Loading