-
Notifications
You must be signed in to change notification settings - Fork 342
updated per bug review #1621
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
updated per bug review #1621
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 |
|---|---|---|
|
|
@@ -184,7 +184,8 @@ The following examples demonstrate how to extract text, charts, tables, and imag | |
| <a id="ingest_python_example"></a> | ||
| ```python | ||
| import logging, os, time | ||
| from nv_ingest_client.client import Ingestor, NvIngestClient | ||
| from nv_ingest_client.client.interface import Ingestor | ||
| from nv_ingest_client.client import NvIngestClient | ||
| from nv_ingest_client.util.process_json_files import ingest_json_results_to_blob | ||
| client = NvIngestClient( | ||
| message_client_port=7670, | ||
|
|
@@ -535,7 +536,7 @@ docker compose \ | |
|
|
||
| ## Specify MIG slices for NIM models | ||
|
|
||
| When you deploy the pipeline with NIM models on MIG‑enabled GPUs, MIG device slices are requested and scheduled through the `values.yaml` file for the corresponding NIM microservice. For IBM Content-Aware Storage (CAS) deployments, this allows NIM pods to land only on nodes that expose the desired MIG profiles [raw.githubusercontent](https://raw.githubusercontent.com/NVIDIA/nv-ingest/main/helm/README.md). | ||
| When you deploy NeMo Retriever Library with NIM models on MIG‑enabled GPUs, MIG device slices are requested and scheduled through the `values.yaml` file for the corresponding NIM microservice. For IBM Content-Aware Storage (CAS) deployments, this allows NeMo Retriever Library NIM pods to land only on nodes that expose the desired MIG profiles [raw.githubusercontent](https://raw.githubusercontent.com/NVIDIA/NeMo-Retriever/main/helm/README.md). | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Line 539 ends with a Unicode zero-width space character ( Prompt To Fix With AIThis is a comment left during a code review.
Path: docs/docs/extraction/quickstart-guide.md
Line: 539
Comment:
**Zero-width space at end of line**
Line 539 ends with a Unicode zero-width space character (`U+200B`) after the closing `]` of the link. This invisible character can cause broken rendering in some Markdown processors and may appear as an unexpected character in raw text views. It should be removed.
How can I resolve this? If you propose a fix, please make it concise. |
||
|
|
||
| To target a specific MIG profile—for example, a 3g.20gb slice on an A100, which is a hardware-partitioned virtual GPU instance that gives your workload a fixed mid-sized share of the A100’s compute plus 20 GB of dedicated GPU memory and behaves like a smaller independent GPU—for a given NIM, configure the `resources` and `nodeSelector` under that NIM’s values path in `values.yaml`. | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This
!!! importantblock was updated to read "RIVA ASR NIM microservice", but the rest of the page (title paragraph at lines 3–5, overview paragraph at lines 25–26, and the second!!! importantat line 44–46) still uses "parakeet-1-1b-ctc-en-us ASR NIM microservice". RIVA and Parakeet are distinct products, so readers will encounter two different names for what appears to be the same component. Either the remaining references should be updated to RIVA or this block should revert to Parakeet.Prompt To Fix With AI