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

  • 相关阅读:
    WebAPI的文件上传与下载
    cefSharp框架中的C#方法和Web项目中的JS方法相互调用
    C# 引用类型的对象克隆(深拷贝)。
    C++模板特化
    一、JavaScript高级程序设计-----JavaScript简介
    二、C#图解教程第七章--类和继承
    C#IDIspose接口的使用
    CLR via C# 可空值类型
    WPF数据绑定
    计算机网路基础
  • 原文地址:https://www.cnblogs.com/shenxiaolin/p/7691076.html
Copyright © 2011-2022 走看看