Software Development
NCA-GENL · 72 questions
- A city parks clerk pastes a trail-closure notice into a local Hugging Face script, and the model rejects the raw Unicode string. What must the script produce before a forward pass?
- A water-meter office sends three inspection notes of different lengths in one GPU call so the card is not woken three times. How does that batch become one rectangular tensor?
- A ferry-terminal kiosk needs a closed set of delay labels on incoming radio logs, not a drafted paragraph. Which architecture should the app load?
- A municipal archives desk computes a numeric vector for each new ordinance summary and stores that vector for later lookup. What role does that embedding play in the app?
- A fire-watch radio hut is short on GPU memory, and a colleague suggests serving the same refined weights at half precision. What kind of choice is that?
- A public-works help desk concatenates a year of pothole notes into one prompt, and the local model errors on input size. What constraint did the client ignore?
- A city animal-shelter clerk has two hundred labeled intake notes. A volunteer starts a random-weight network to be original. What transfer-learning first step should the script take?
- A municipal compost site wants food, yard, or contamination labels on hauler emails. How should transfer learning be wired in the script?
- A beach-permit booth's pretrained sentiment head already sorts compliment versus complaint mail well enough for Saturday traffic. A researcher wants a multi-week PEFT study before launch. What should the associate do?
- A historic-district newsletter classifier trained on open-web reviews keeps treating lot as a parking space when staff mean a parcel. How should the app fix that mismatch?
- A rec-center swim desk has a GPU that overheats when every layer is updated on forty labeled shift notes. Which associate transfer-learning knob should the script use?
- A city tree-nursery shop can either load a small encoder on the workshop GPU or POST text to a hosted NIM-style chat endpoint. When should the project stay on-box?
- A town-band festival intern loads model weights from checkpoint A and a tokenizer from checkpoint B because both listings look similar. Token IDs come back garbled. What framework rule was broken?
- A city food-pantry inventory script loads a transformer and then crawls, even though the machine has a GPU the process never used. What is the framework-project fix?
- A municipal bike-share desk is about to hand-parse a public CSV of repair notes for a Hugging Face project. What is the associate way to pull a named split?
- A city pond-census intern fine-tunes a small head on Friday and cannot find the weights on Monday when Triton should serve them. What handoff did the project miss?
- A city weather-kiosk helper mixes regex, a forward pass, and email sending in one long function. How should that framework project be split?
- A civic-center kiln desk has a refined classifier, and a colleague opens NVIDIA NeMo to serve it. Where should the finished artifact actually run?
- A city-orchard gleaning desk copies weights into a random home directory and Triton reports the model missing. What deploy unit does Triton expect?
- A community-band library app is a short Python script; the ticketing service is another backend that already speaks gRPC. Both need the same Triton-served encoder. How should each client connect?
- A municipal water-billing desk posts each meter note to Triton as its own request, and the GPU stays underused between arrivals. Which Triton feature lets nearby requests share one forward pass so throughput rises?
- After a parks-and-rec field-reservation helper raised Triton’s max queue delay so batches could grow, residents say replies feel stickier. What does that queue delay control?
- A building-permits counter needs a text classifier and a small summarizer live on the same GPU workstation. What is the associate way to host both?
- A transit lost-and-found page starts posting inferences the instant the Triton container process appears, and the first wave of lookups fail while weights still load. What should the client wait for?
- A snow-route dispatch desk exported the same refined encoder as a PyTorch checkpoint, an ONNX graph, and a TensorRT engine. How should they choose the Triton backend?
- A housing-inspection counter places a refined classifier into the live Triton repository, but the lobby kiosk still sends the old tensor names. How do they roll forward without breaking that kiosk?
- A poll-worker help page piles up while a volunteer keeps a laptop predict.py loop open and pastes questions by hand. Why move the model onto Triton?
- A tree-trimming request app tokenizes on the phone and sends IDs to Triton; another team wants the server to accept raw street notes. What is true about those two designs?
- A 311 call-center Triton config sets max batch size to an enormous number for speed, and a storm-day spike exhausts GPU memory. What is max batch size actually for?
- A marriage-license counter needs names and dates pulled from clerk notes before the desk closes today. What is the fastest associate Hugging Face entry point?
- A city-archives labeling script imports a hard-coded BertForSequenceClassification class, then the Hub checkpoint switches to another encoder family. Which loaders keep the same few lines working?
- An animal-shelter intake desk downloads the largest LLM on the Hub to label vaccination notes as complete or missing. What should they check first so the transformers API can run that job?
- A zoning-counter helper must return one closed land-use label for a short parcel note, not a generated paragraph. Which transformers call matches that head?
- A wastewater-lab intern loads a public notes split with Hugging Face datasets and maps a tokenizer over it before a small head update. What pairing is that?
- A cemetery-plot office helper must demo on a staff laptop with no GPU this weekend, then later call the county NIM endpoint. How should the app be structured?
- A tax-assessor chat helper concatenates User: lines by hand, and the instruct model replies like a raw completion. What should the code apply?
- A harbor-master log helper works with a Hub pipeline for a handful of clerks, then stalls when fifty concurrent lookups arrive. What is the associate next step?
- A public-library hold desk receives short notes that must be labeled hold-ready, fine-dispute, or room-booking. Which solution fits?
- A public-health clinic paste-bin of signup lines is free text, and the booking form needs name, date, and site fields. Which task fills those structured slots?
- A city-council minutes desk has five known speechwriters and a stack of unlabeled drafts. How should author attribution be implemented?
- A town-hall lobby plaque is 180 words about the 1912 clock tower. A visitor asks when the tower was dedicated, and the desk wants that year taken from the plaque rather than guessed. What kind of question answering should the app run?
- A public-works yard tags every field note as close, reopen, or inspect, and a vendor quotes a 70-billion-parameter chat model for that three-label job. What should the software team pick?
- A little-league registration desk runs a token classifier and then prints raw B-PER and I-PER strings on the parent receipt. What should the app do before the UI?
- A parks-permit office first needs the document type, then the applicant names, then an answer to a clerk question from that same text. How should the app compose those official NLP tasks?
- A historic-district intern scores an extractive QA helper with ordinary classification accuracy and reports the model broken. What smoke-check should the developer use?
- A veterans-memorial kiosk sends raw English bytes into a TensorRT-LLM-optimized engine that expects token IDs, then prints integer IDs to the visitor. What is missing from the live pipeline?
- A 311 chat window needs the first sentence quickly, while a nightly job must classify twelve thousand work-order lines. How should serving be tuned?
- A historical-society desk is handed a running NVIDIA NIM container and a base URL. How should the volunteer call the model?
- The permitting backend already speaks gRPC, while the public web form already calls the same live model over REST. What should the service-side caller do?
- A flood-watch office waits eight seconds on a blank box while a long briefing generates. What should the interactive path do?
- A city-council minutes chatbot appends every past turn until the endpoint returns a length error. Where is the fix?
- A public-works work-order summarizer is accurate in Hugging Face generate but misses the city's latency target on the same GPU. What is the associate implementation sequence?
- A community-college tutoring app already has working OpenAI-style client code and must stay on-prem. How should it call a local model?
- A cemetery-plot weekend import must embed two thousand short blurbs, while the visitor kiosk has one guest. How should batching be set?
- A trail-head weather helper freezes when the serving box is busy. What must the client add?
- A youth-makerspace copies a TensorRT-LLM engine built for the county H100 onto a classroom laptop GPU and it will not load. Why, and what should they keep?
- The regional transit HQ H100 is memory-tight on a larger decoder. Official additional material names TensorRT-LLM converting weights toward FP8 on H100. What should the team choose?
- A 4-H club helper needs a system preamble, two tools, and short memory. A volunteer wants twenty separate HTTP posts. What should the team pick?
- A community-theater playbill job embeds this week's show name in scattered string concatenations, and one file drops the no-ticket-prices rule. What should the code use?
- A planetarium lobby kiosk stores the whole conversation as one growing paragraph and the model loses who said what. How should chat memory be kept?
- A city parks desk pastes a weather-service bulletin into a helper that must return a short trail-closure checklist. Which application sequence should the developer implement?
- A rec-center membership desk needs a helper that greets a visitor, asks one clarifying question, then drafts a day-pass note. What should the application code do?
- A river-ferry helper should call a tide-table tool only when a rider names a dock and a departure window; otherwise it should answer from standing rules. Which application pattern fits that branch?
- A civic-garden hotline already has a plot-rules index built by another team. The chatbot must fetch the nearest three blurbs for watering on a holiday. What should the application code call?
- A food-pantry hours bot already received three similar hits from its vector client. A volunteer prints those hits to the terminal and never calls the model. What should the application do next?
- A community-pool bot should look up tonight's lap-lane hours from a small internal function when a swimmer asks when the lanes open. How should the orchestrator handle that?
- A town-clerk intern copies the same headers, retry loop, and message assembly into every feature branch for chatbot, summarizer, and extractor work. What should a reviewer ask for instead?
- A volunteer-fire board wants a weekend demo of newsletter Q&A and has nobody to own a model repository. How should the team kickstart?
- A school-cafeteria menu helper works on one intern laptop GPU and stalls when a class lines up. What should the team add before public lunch hours?
- A transit-shelter kiosk swaps hub checkpoints daily and nobody can say why answers drifted. What should the kickoff pin first?
- A city-minutes comment box accepts a whole novel and twenty browsers hit generate at once, and the GPU box falls over. Which software limits should the app set?
- A watershed-district office shipped this path: a local Hugging Face prototype, then an optional TensorRT-LLM optimize for a later decoder, then Triton or NIM in front, with LangChain only on the chatbot feature. Which reading of that stack is correct?