Coder Social home page Coder Social logo

run-dmc's People

Contributors

aleximmer avatar fapaul avatar fawind avatar kryptokommunist avatar nikriek avatar wgierke avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Forkers

fawind drimalla

run-dmc's Issues

Time variant features

currently we only use basic features based on date. Group a or b are working on more connected features. We should try implementing a few ourselves and see how they perform.

Do we need polynomial features

depending on Cor(returnQuantity, x), x might be fitted better having it as polynomial feature. THat especially holds if we use strictly linear models.

Uniform size codes

Currently we have:
{'100', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '36', '38', '40', '42', '44', '75', '80', '85', '90', '95', 'A', 'I', 'L', 'M', 'S', 'XL', 'XS'}

Consider Markov Models

We're currently only looking at what's the overall return rate for a customer/size/color/...
Let's have a look at how likely it is that a product is returned in case the customer already returned a product before/a product with this color/size was returned before/ ... Buzz Word: Markov Chain/Markov Model

Improve training/testing split

Currently we work on randomized samples. This makes sense only to a specific extent. It is indeed possible to have the same order split up in test and training set which should be impossible with respect to the final task.

Bug: days assigned to wrong season

Please have a look at our season feature again

def date_to_season(date):
    if date.month <= 3 and date.day <= 22:
        return 1
    if date.month <= 6 and date.day <= 22:
        return 2
    if date.month <= 9 and date.day <= 22:
        return 3
    if date.month <= 12 and date.day <= 22:
        return 4
    return 1

and consider cases like month=12 & day=23
-> assigned to season 1

Bins for colorCode

it turns out that colorcodes often fill gaps or are noisy in the target dataset. It would thus be helpful to define bins and learn on those. This can easily be done using entropy. Further, ideally we would have many prefix bins because we assume that colors starting with 1 are different than colors starting with 2 e.g..

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.