> ## Documentation Index
> Fetch the complete documentation index at: https://doc.lucidworks.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Users-for-Item Recommendations

export const LwTemplate = ({title = "Key questions to get you started", icon = "sparkles", cta = "Powered by Agent Studio", linkHref = "https://lucidworks.com/demo/?utm_source=docs&utm_medium=referral&utm_campaign=docs_cta_ai"}) => {
  const [isLoaded, setIsLoaded] = useState(false);
  useEffect(() => {
    const timer = setTimeout(() => {
      setIsLoaded(true);
    }, 500);
    return () => clearTimeout(timer);
  }, []);
  return <div className="lw-template-container">
      <Card title={title} icon={icon}>
        {isLoaded && <span dangerouslySetInnerHTML={{
    __html: `<lw-template id="a029c1a9-28be-427e-b0e1-5d918920246a"></lw-template
            >`
  }} />}
        <Link href={linkHref} className="agent-studio-link text-left text-gray-600 gap-2 dark:text-gray-400 text-sm font-medium flex flex-row items-center hover:text-primary dark:hover:text-primary-light group-hover:text-primary group-hover:dark:text-primary-light">Powered by Lucidworks Agent Studio</Link>
      </Card>
    </div>;
};

[localhost link]: http://localhost:3000/docs/5/fusion/getting-data-out/query-enhancement/recommendations/users-for-item

[mintlify link]: https://doc.lucidworks.com/docs/5/fusion/getting-data-out/query-enhancement/recommendations/users-for-item

[old doc.lw link]: https://doc.lucidworks.com/fusion/5.9/478

Users-for-item recommendations retrieve the set of users who have interacted with an item, weighted by the number of interactions. This can be useful for community-driven use cases or for marketing campaigns. For example, on your organization’s intranet, clicking a search result could display the item plus a list of colleagues who have interacted with the same item.

This is one type of [collaborative recommendation](/docs/5/fusion/getting-data-out/query-enhancement/recommendations/recommendation-methods#content-based-vs-collaborative-recommendations).

<LwTemplate />

## Learn more

<Accordion title="Enable User-for-item Recommendations">
  To enable this recommendation method, you only need to create a new collection and modify the configuration of the default recommender job, as explained below.

  1. How to enable users-for-item recommendations
  2. Navigate to **Collections** > **Collections Manager**.
  3. Click **New**
  4. Enter a collection name, such as `<main-collection>_users_for_item_recommendations`.
  5. Click **Save Collection**.
     <Tip> You can safely disable signals for this new collection.</Tip>
  6. In your main collection, verify that signals and recommendations are enabled.
  7. Navigate to **Collections** > **Jobs**.
  8. Open the `COLLECTION_NAME_item_recommendations` job.\
     Alternatively, you can create a BPR Recommender job.
  9. Click **Advanced**.
  10. In the **Users-for-items Recommendation Collection** field, enter the collection name `COLLECTION_NAME_users_for_item_recommendations`.
  11. Click **Save**.
</Accordion>
