Skip to main content

Collaborative Filtering with multi-process parallelism.

Project description

Usage Sample ''''''''''''

.. code:: python

from cf import CollFilter

if __name__ == '__main__':
    data = read_data('file_path')
    data = pre_process(data)  # return [(user_id: Any, item_id: Any, float),]
    cf = CollFilter(data)

    ucf = cf.user_cf()  # return {user_id: [(item_id, score),],}
    icf = cf.item_cf()  # return {user_id: [(item_id, score),],}

    recommend = cf.recommend(user_id, recall_num=5) # return [(item_id, score),]
    recommends = cf.recommends(user_ids, recall_num=5) # return {user_id: [(item_id, score),],}

    cf.release()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

coll-filter-1.2.8.tar.gz (7.1 kB view details)

Uploaded Source

File details

Details for the file coll-filter-1.2.8.tar.gz.

File metadata

  • Download URL: coll-filter-1.2.8.tar.gz
  • Upload date:
  • Size: 7.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.18

File hashes

Hashes for coll-filter-1.2.8.tar.gz
Algorithm Hash digest
SHA256 052f07f925743221b95e0cc3340337de6468b573b6a2d9f691f0dc00a4dfce51
MD5 048290a3485d26e12fb17b408c439aef
BLAKE2b-256 36eff58e7105e91ac4731b0913ba1916a3f72c1dc964efcfe527657cf088ea06

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page