yrqiao commited on
Commit
8073cf9
·
verified ·
1 Parent(s): ebebb05

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +58 -1
README.md CHANGED
@@ -16,6 +16,48 @@ license: other
16
 
17
  # Dataset Card: Live Streaming Room Risk Assessment (May/June 2025)
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  ## Dataset Summary
20
  This dataset contains **live-streaming room interaction logs** for **room-level risk assessment** under **weak supervision**. Each example corresponds to a single live-streaming room and is labeled as **risky (> 0)** or **normal (= 0)**.
21
 
@@ -56,9 +98,24 @@ The paper uses two datasets (“May” and “June”), each with train/val/test
56
  | June test | 11,116 | 725 | 37 | 29.1 |
57
 
58
  ## Quickstart
 
 
 
59
  Below we provide a simple example showing how to load the dataset.
60
 
61
- We use LMDB to store and organize the data. Please install the Python package first:
 
 
 
 
 
 
 
 
 
 
 
 
62
  ```
63
  pip3 install lmdb
64
  ```
 
16
 
17
  # Dataset Card: Live Streaming Room Risk Assessment (May/June 2025)
18
 
19
+ ---
20
+ license: cc-by-4.0
21
+ pretty_name: "Live or Lie — Live Streaming Room Risk Assessment (May/June 2025)"
22
+ language:
23
+ - zh
24
+ tags:
25
+ - live-streaming
26
+ - risk-assessment
27
+ - fraud-detection
28
+ - weak-supervision
29
+ - multiple-instance-learning
30
+ - behavior-sequence
31
+ ---
32
+
33
+
34
+ ## Dataset Summary
35
+ This dataset contains **live-streaming room interaction logs** for **room-level risk assessment** under **weak supervision**. Each example corresponds to a single live-streaming room and is labeled as **risky (> 0)** or **normal (= 0)**.
36
+
37
+ The task is designed for early detection: each room’s action sequence is **truncated to the first 30 minutes**, and can be structured into **user–timeslot capsules** for models such as AC-MIL.
38
+
39
+ ## File Structure
40
+ The dataset is organized into two time-indexed subsets (May and June). Large LMDB data files are provided in multiple `.part` chunks to comply with storage limits.
41
+
42
+ ```text
43
+ .
44
+ ├── final_May_hard1_masked_encoded.lmdb/
45
+ │ ├── data.mdb.00.part
46
+ │ ├── data.mdb.01.part
47
+ │ ├── data.mdb.02.part
48
+ │ ├── data.mdb.03.part
49
+ │ └── lock.mdb
50
+ ├── final_June_hard1_masked_encoded.lmdb/
51
+ │ ├── data.mdb.00.part
52
+ │ ├── data.mdb.01.part
53
+ │ └── lock.mdb
54
+ ├── May_train.csv
55
+ ├── May_val.csv
56
+ ├── May_test.csv
57
+ ├── June_train.csv
58
+ ├── June_val.csv
59
+ └── June_test.csv
60
+
61
  ## Dataset Summary
62
  This dataset contains **live-streaming room interaction logs** for **room-level risk assessment** under **weak supervision**. Each example corresponds to a single live-streaming room and is labeled as **risky (> 0)** or **normal (= 0)**.
63
 
 
98
  | June test | 11,116 | 725 | 37 | 29.1 |
99
 
100
  ## Quickstart
101
+
102
+ 1. Reconstruct the LMDB files
103
+ Before loading the data, you must merge the split parts back into a single data.mdb file for each subset. Run the following commands in your terminal:
104
  Below we provide a simple example showing how to load the dataset.
105
 
106
+ ```
107
+ # Reconstruct May Dataset
108
+ cd final_May_hard1_masked_encoded.lmdb
109
+ cat data.mdb.*.part > data.mdb
110
+ cd ..
111
+
112
+ # Reconstruct June Dataset
113
+ cd final_June_hard1_masked_encoded.lmdb
114
+ cat data.mdb.*.part > data.mdb
115
+ cd ..
116
+ ```
117
+
118
+ 2. We use LMDB to store and organize the data. Please install the Python package first:
119
  ```
120
  pip3 install lmdb
121
  ```