Code Monkey home page Code Monkey logo

data-mining-learn's Introduction

data-mining-learn

Knowledge base for data mining

Affinity Analysis

Compare the different data mining algorithms for affinity analysis, especially apriori and eclat. Repo here.

CRISP-DM

Cross Industry Standard Practice for Data Mining. Try to implement the full steps.

Frequent Itemsets

Use frequent itemsets for food recommendation, create packages (food, drink and misc.), log the most frequently purchased and perform recommendations.

Mining high-utility itemsets in transaction database

Take a look into the algorithms and see how to apply it.

https://www.philippe-fournier-viger.com/spmf/mHUIMiner.php

Frecency

https://developer.mozilla.org/en-US/docs/Mozilla/Tech/Places/Frecency_algorithm

one way is to bucket the counter for each time the request hit, e.g. hourly

hour 24: 10 hour 23: 50 hour 22: 3 โ€ฆ

then, take the last N buckets to determine the ranking of the item. Another way is to add them in buckets with different range of data:

4 days bucket, weight: 100 14 days bucket: weight: 70 31 days bucket: weight 50 90 days bucket: weight 30 rest, 10:

The more frequent and recent ones will have a higher score. How can we do this with redis set?

Another easier way is just to check the usage in the last seven days. day 7 * 100 day 6 * 80 day 5 * 60 day 4 * 40 day 3 * 20 day 2 * 10 day 1 * 5 the sum of the scores is the recency score. Create fake data to check the distribution.

References

data-mining-learn's People

Contributors

alextanhongpin avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.