Booking.com uses supervised fine-tuning with LoRA/QLoRA to achieve 3x faster travel destination recommendations
Travelers increasingly express vacation needs in unstructured, nuanced natural language that traditional ML models struggle to handle, while prompt-based LLM solutions raise privacy concerns and cannot leverage Booking.com's proprietary behavioral data.
The baseline production system — a prompt-based proprietary LLM accessed via external API combined with a traditional ML model — had slower inference and could not safely incorporate sensitive user data due to external processing requirements.
The fine-tuned open-weight model reduced p99 inference latency by 67% (about 3x faster) over the baseline, improved Hit@5 by 8% from incorporating user location context, and delivered strong improvements in recommendation quality validated via A/B test, while keeping all user data internal.
Frequently asked questions
What did this team achieve with this AI workflow?
The fine-tuned open-weight model reduced p99 inference latency by 67% (about 3x faster) over the baseline, improved Hit@5 by 8% from incorporating user location context, and delivered strong improvements in recommenda…
What tools did this team use?
LoRA, QLoRA, LLM as a judge, AWS.
What results were reported?
P99 inference latency reduction: 67%; Inference speed vs baseline: about 3x faster; Hit@5 improvement from user location context: 8%; Recommendation quality vs production baseline: strong improvements (source-reported, not independently verified).
What failed first in this deployment?
The baseline production system — a prompt-based proprietary LLM accessed via external API combined with a traditional ML model — had slower inference and could not safely incorporate sensitive user data due to externa…
How is this ecommerce ops AI workflow structured?
User submits travel request → User context incorporation → Fine-tuned LLM generates recommendations → LLM judge validates alignment → Behavioral signals feed training labels → K recommendations delivered.