IniziaInizia gratis

Building a Q&A pipeline

In the previous exercise, we extracted text from a multi-page document using PyPDF and prepared it as a single string.

Now, you’ll build a question-answering pipeline using Hugging Face to retrieve specific answers from the document.

Both the pipeline module and document_text have been preloaded for you.

Questo esercizio fa parte del corso

Working with Hugging Face

Visualizza il corso

Istruzioni dell'esercizio

  • Initialize a question-answering pipeline with the correct task and model.
  • Pass the question and document_text to the pipeline.
  • Print the result to view the answer.

Esercizio pratico interattivo

Prova a risolvere questo esercizio completando il codice di esempio.

# Load the question-answering pipeline
qa_pipeline = pipeline(task="____", model="distilbert-base-cased-distilled-squad")

question = "What is the notice period for resignation?"

# Get the answer from the QA pipeline
result = qa_pipeline(question=____, context=____)

# Print the answer
print(f"Answer: {result['____']}")
Modifica ed esegui il codice