zoukankan      html  css  js  c++  java
  • RecSys Challenge 2015

    【The Task】

    Given a sequence of click events performed by some user during a typical session in an e-commerce website, the goal is to predict whether the user is going to buy something or not, and if he is buying, what would be the items he is going to buy. The task could therefore be divided into two sub goals:

    1. Is the user going to buy items in this session? Yes|No
    2. If yes, what are the items that are going to be bought?

    【The Data】

    Training Data Files

     The training data comprises two different files:

    1. yoochoose-clicks.dat - Click events. Each record/line in the file has the following fields:
      1. Session ID – the id of the session. In one session there are one or many clicks.
      2. Timestamp – the time when the click occurred.
      3. Item ID – the unique identifier of the item.
      4. Category – the category of the item.
    2. yoochoose-buys.dat - Buy events. Each record/line in the file has the following fields:
      1. Session ID - the id of the session. In one session there are one or many buying events.
      2. Timestamp - the time when the buy occurred.
      3. Item ID – the unique identifier of item.
      4. Price – the price of the item.
      5. Quantity – how many of this item were bought.

    The Session ID in yoochoose-buys.dat will always exist in the yoochoose-clicks.dat file – the records with the same Session ID together form the sequence of click events of a certain user during the session. The session could be short (few minutes) or very long (few hours), it could have one click or hundreds of clicks. All depends on the activity of the user.

    Test File

    The Test data is one file:

    1. yoochoose-test.dat - identically structured as the yoochoose-clicks.dat of the training data
      1. Session ID
      2. Timestamp
      3. Item ID
      4. Category

    via:  http://2015.recsyschallenge.com/challenge.html

  • 相关阅读:
    COGS727 [网络流24题] 太空飞行计划
    Bzoj1692 洛谷P2870 [Usaco2007 Dec]队列变换
    Bzoj1029 [JSOI2007]建筑抢修
    Bzoj3168 [Heoi2013]钙铁锌硒维生素
    Bzoj4566 [Haoi2016]找相同字符
    Bzoj4771 七彩树
    Bzoj2597 [Wc2007]剪刀石头布
    Bzoj4773 负环
    HDU5772 String problem
    Bzoj1324 Exca王者之剑
  • 原文地址:https://www.cnblogs.com/shenxiaolin/p/7691076.html
Copyright © 2011-2022 走看看