পরবর্তী আপপরবর্তী গাইড
এমএল মডেলের জন্য ডকার কন্টেইনার
টেকনিক্যাল
প্রযুক্তিগত গাইড
A two-tower recommender encodes a user or query and each candidate item separately into vectors, then scores a pair by vector similarity.
Because item vectors can be precomputed and indexed, two-tower models support scalable retrieval before a more detailed ranking stage.
Recommendation systems often separate candidate retrieval from ranking. Retrieval narrows a large catalog to a manageable set of potentially relevant items. A two-tower model uses one encoder for the user or query and another for candidate items. Each tower transforms its own available features into a vector in a shared embedding space. A similarity function, often a dot product or cosine score, ranks candidate pairs. The two encoders can be run independently. Item embeddings may be calculated offline and stored in a nearest-neighbor index. At request time, the user tower creates a query vector and the index returns a shortlist. This separation supports large catalogs more efficiently than evaluating a deep joint model against every item. TensorFlow Recommenders describes this architecture as retrieval with query and candidate models. The independent structure creates a tradeoff. It scales retrieval, but it cannot directly model arbitrary pairwise interactions that require seeing the user and item together, unless those interactions are represented in the embedding training objective or features. A downstream ranker can combine retrieved candidates with richer context, cross-features and operational constraints. Retrieval recall matters: a ranker cannot select an item that was never retrieved. Training often uses positive interactions and sampled or in-batch negatives to shape the embedding space. The negative sampling strategy and exposure logs affect what the model learns. Evaluation should measure recall or ranking among a realistic candidate pool and check cold-start performance. Monitor embedding freshness, index refreshes and feature-version compatibility. A high similarity is a retrieval score, not a calibrated probability or proof of user preference. Eligibility, safety, diversity and policy constraints should be applied in the system design. The architecture makes large-scale search practical, while final user experience depends on candidate coverage, ranking quality and evaluation beyond offline similarity.
আর্কিটেকচারের সিদ্ধান্তগুলি বছরের পর বছর ধরে কর্মক্ষমতা এবং অপারেটিং খরচ চালায়।
কারিগরি শিক্ষা দলগুলোকে সঠিক স্ট্যাক বেছে নিতে সাহায্য করে, শুধু নতুনটি নয়।
ভালো ইঞ্জিনিয়ারিং পছন্দ উৎপাদনে নির্ভরযোগ্যতার ঘটনা কমিয়ে দেয়।
Two-tower systems can become more useful by monitoring candidate recall, embedding freshness and latency alongside final ranking outcomes. Teams should version towers and indexes together and test feature changes before rebuilding retrieval infrastructure. As user and item populations grow, approximate search can improve scale but should be checked against exact retrieval on samples. A separate ranker can add context while preserving a clear retrieval stage. Reports should explain that similarity produces candidates, then show how later filters and ranking influence what users actually see.
A hypothetical music app encodes a listener's recent activity into a user vector and each song's metadata into an item vector. A nearest-neighbor search retrieves songs whose vectors are similar.
A retrieval service precomputes item embeddings and searches them with an approximate nearest-neighbor index, avoiding a full neural-network evaluation for every user-item pair at request time.
A ranking model then considers additional pair-specific context such as current session, freshness and business constraints, which separate towers may not capture during retrieval.
A team checks that user and item embeddings are generated from compatible versions and dimensions; mismatched preprocessing or stale item vectors can degrade similarity scores.
একটি বেঞ্চমার্ক অপ্টিমাইজ করা বৃহত্তর সিস্টেম দুর্বলতা আড়াল করতে পারে।
অবকাঠামো এবং রক্ষণাবেক্ষণের খরচ প্রায়ই অবমূল্যায়ন করা হয়।
সিস্টেমগুলি আরও জটিল হওয়ার সাথে সাথে সুরক্ষা এবং পর্যবেক্ষণযোগ্যতার ফাঁক বাড়তে পারে।
বাস্তবায়নের আগে বিলম্ব, গুণমান এবং খরচের লক্ষ্য নির্ধারণ করুন।
বাস্তবসম্মত লোড এবং ডেটা অবস্থার অধীনে বেঞ্চমার্ক।
ত্রুটি, প্রবাহ, এবং ব্যবহারকারীর প্রভাবের জন্য যন্ত্র পর্যবেক্ষণ।
স্কেল করার আগে রোলব্যাক এবং ঘটনার প্রতিক্রিয়া পাথ প্রস্তুত করুন।
Free newsletter
Three verified AI stories every weekday morning, written in plain English. Free forever, no ads.
One email each weekday. Unsubscribe in one click. We never sell or share your address.
Test yourself
Instant feedback on every answer, and a shareable certificate with a verifiable ID once you pass a course.
Support free AI education. AI Understanding is a 501(c)(3) nonprofit — no ads, no paywall, ever. Make a donation
A two-tower recommender encodes a user or query and each candidate item separately into vectors, then scores a pair by vector similarity. Because item vectors can be precomputed and indexed, two-tower models support scalable retrieval before a more detailed ranking stage.
The two encoders independently map query-side and candidate-side features into a shared vector space.
Because item vectors are computed independently, they can be generated offline and indexed.
Vector indexes support similarity search over precomputed item embeddings.
Downstream rankers only see candidates returned by retrieval, so missed candidates cannot be recovered there.
Independent encoding favors scale but may not capture rich interactions requiring both sides jointly.
শিখতে থাকুন
এই বিষয়ের জন্য বাছাই করা আরও গাইড
পরবর্তী আপপরবর্তী গাইড
এমএল মডেলের জন্য ডকার কন্টেইনার
টেকনিক্যাল