<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Cold Start in Recommendation Models in Data Science</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Science/Cold-Start-in-Recommendation-Models/m-p/4909620#M1018</link>
    <description>&lt;P&gt;How can we sold cold start user issue even we have send the user cohort signals also, without penalizing other users&lt;/P&gt;</description>
    <pubDate>Mon, 29 Dec 2025 06:54:38 GMT</pubDate>
    <dc:creator>Arshi8109</dc:creator>
    <dc:date>2025-12-29T06:54:38Z</dc:date>
    <item>
      <title>Cold Start in Recommendation Models</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Science/Cold-Start-in-Recommendation-Models/m-p/4909620#M1018</link>
      <description>&lt;P&gt;How can we sold cold start user issue even we have send the user cohort signals also, without penalizing other users&lt;/P&gt;</description>
      <pubDate>Mon, 29 Dec 2025 06:54:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Science/Cold-Start-in-Recommendation-Models/m-p/4909620#M1018</guid>
      <dc:creator>Arshi8109</dc:creator>
      <dc:date>2025-12-29T06:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: Cold Start in Recommendation Models</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Science/Cold-Start-in-Recommendation-Models/m-p/4909835#M1020</link>
      <description>&lt;P class="lia-align-justify"&gt;To address the cold-start user issue without penalizing existing users, combine cohort signals with a layered strategy that blends lightweight personalization with robust default behaviors. Start with strong global or popularity-based priors to ensure high-quality baseline recommendations, then gradually personalize using implicit signals such as short-term behavioral data (clicks, dwell time, and session interactions), contextual features (device, time, and location), and content-based matching instead of relying solely on collaborative signals. Apply exploration–exploitation techniques, such as bandits, to safely test personalized options while protecting overall system performance. Use fallback models, caps on experimental exposure, and continuous monitoring so that weak personalization never degrades the broader user experience. Over time, as the user generates richer data, smoothly transition them into full recommendation models—achieving quick personalization without harming others.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Dec 2025 13:04:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Science/Cold-Start-in-Recommendation-Models/m-p/4909835#M1020</guid>
      <dc:creator>Chandhana_nm10</dc:creator>
      <dc:date>2025-12-29T13:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: Cold Start in Recommendation Models</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Science/Cold-Start-in-Recommendation-Models/m-p/4909879#M1021</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1494184" data-lia-user-login="Arshi8109" class="lia-mention lia-mention-user"&gt;Arshi8109&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please use the following approach:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Global Baseline (safe, non-personalized)&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Popularity &amp;amp; recency trends with minimal bias and diversity constraints.&lt;/LI&gt;&lt;LI&gt;Use catalog‑level controls (e.g., de-dupe, diversity by category/brand).&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Cohort‑Aware Prior (hierarchical / Bayesian flavor)&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Treat cohorts as priors on preferences, not hard filters.&lt;/LI&gt;&lt;LI&gt;Combine cohort priors with global baseline via learned weights (per cohort).&lt;/LI&gt;&lt;LI&gt;This avoids overfitting cohorts and preserves personalization as data accrues.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Content‑Based Recommendations (robust for item cold‑start too)&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Build item embeddings from metadata (text, category, attributes) and optionally image features.&lt;/LI&gt;&lt;LI&gt;Recommend via nearest neighbors in embedding space; weight by cohort priors.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Lookalike Modeling (user embedding → nearest neighbor)&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Map new users to similar existing users using shared signals (device, referrer, campaign, geography, time-of-day).&lt;/LI&gt;&lt;LI&gt;Use their top items as seed recommendations.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Contextual Bandits (controlled exploration for new users only)&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Allocate a small exploration budget (e.g., 5–10%) for new users using contextual bandits (Thompson Sampling or LinUCB).&lt;/LI&gt;&lt;LI&gt;Keep bandit scope restricted to cold‑start segment; this avoids penalizing the rest.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Hybrid Model Router&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;A router decides for each request:&lt;UL&gt;&lt;LI&gt;If user has ≥N events → warm-start (ALS/BPR/LTR).&lt;/LI&gt;&lt;LI&gt;Else → cold-start route (cohort prior + content KNN + bandit).&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;This isolation keeps warm users stable.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Graceful Handover&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;As interactions arrive, gradually shift from cold‑start mixture to warm‑start model via learned blending (e.g., a calibrated meta‑model).&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;H2&gt;Avoid “Penalizing Other Users”: Design Principles&lt;/H2&gt;&lt;OL&gt;&lt;LI&gt;Segmentation-based routing: Only new users hit the exploration policy.&lt;/LI&gt;&lt;LI&gt;Budgeted exploration: Cap exploration impressions (e.g., 1–2 items per top‑N).&lt;/LI&gt;&lt;LI&gt;Catalog‑safe baseline: Use a robust popularity baseline that does not change due to cold‑start policy shifts.&lt;/LI&gt;&lt;LI&gt;Hierarchical priors (not hard rules): Cohort influence is additive, not exclusive.&lt;/LI&gt;&lt;LI&gt;Counterfactual offline evaluation: Use IPS/SNIPS to estimate policy performance without risking production stability.&lt;/LI&gt;&lt;LI&gt;Progressive personalization: Smoothly decay cohort weights as user-specific signals grow.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps! PLease mark as a Kudos or a Solution.&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 29 Dec 2025 14:04:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Science/Cold-Start-in-Recommendation-Models/m-p/4909879#M1021</guid>
      <dc:creator>deborshi_nag</dc:creator>
      <dc:date>2025-12-29T14:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Cold Start in Recommendation Models</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Science/Cold-Start-in-Recommendation-Models/m-p/4910843#M1026</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1494184" data-lia-user-login="Arshi8109" class="lia-mention lia-mention-user"&gt;Arshi8109&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Thanks for reaching out to the Microsoft fabric community forum.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would also take a moment to thank  &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1445078" data-lia-user-login="deborshi_nag" class="lia-mention lia-mention-user"&gt;deborshi_nag&lt;/a&gt;&amp;nbsp; and &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1495098" data-lia-user-login="Chandhana_nm10" class="lia-mention lia-mention-user"&gt;Chandhana_nm10&lt;/a&gt;&amp;nbsp;, for actively participating in the community forum and for the solutions you’ve been sharing in the community forum. Your contributions make a real difference.&lt;/P&gt;
&lt;P&gt;I hope the above details help you fix the issue. If you still have any questions or need more help, feel free to reach out. We’re always here to support you .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&amp;nbsp;&lt;BR /&gt;Community Support Team&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Dec 2025 11:38:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Science/Cold-Start-in-Recommendation-Models/m-p/4910843#M1026</guid>
      <dc:creator>v-menakakota</dc:creator>
      <dc:date>2025-12-31T11:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: Cold Start in Recommendation Models</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Science/Cold-Start-in-Recommendation-Models/m-p/4912310#M1030</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1494184" data-lia-user-login="Arshi8109" class="lia-mention lia-mention-user"&gt;Arshi8109&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope the above details help you fix the issue. If you still have any questions or need more help, feel free to reach out. We’re always here to support you .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&amp;nbsp;&lt;BR /&gt;Community Support Team&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 07:30:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Science/Cold-Start-in-Recommendation-Models/m-p/4912310#M1030</guid>
      <dc:creator>v-menakakota</dc:creator>
      <dc:date>2026-01-05T07:30:48Z</dc:date>
    </item>
  </channel>
</rss>

