Translating customer reviews to French
A global e-commerce company is analyzing customer feedback from its English-speaking users. To support its French customer support team, the company needs to translate these reviews into French. As part of the NLP pipeline, your role is to automate the translation of reviews using the Hugging Face pipeline.
This exercise is part of the course
Natural Language Processing (NLP) in Python
Exercise instructions
- Create a
translator
pipeline using the"Helsinki-NLP/opus-mt-en-fr"
model. - Translate the provided
review
from English to French.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
from transformers import pipeline
# Create the translation pipeline
translator = pipeline(task="____", model="____")
review = "The hotel was clean and the staff were very friendly."
# Translate the review
translation = ____
print(translation)