XiaoBB commited on
Commit
413e6d9
·
verified ·
1 Parent(s): 0a4d647

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +4 -33
README.md CHANGED
@@ -12,35 +12,6 @@ tags:
12
  - marked-temporal-point-process
13
  size_categories:
14
  - n<1K
15
- configs:
16
- - config_name: default
17
- data_files:
18
- - split: test
19
- path: data/test-*
20
- dataset_info:
21
- features:
22
- - name: seq_idx
23
- dtype: int64
24
- - name: seq_len
25
- dtype: int64
26
- - name: description
27
- dtype: string
28
- - name: metadata
29
- dtype: string
30
- - name: time_since_start
31
- list: float64
32
- - name: time_since_last_event
33
- list: float64
34
- - name: type_event
35
- list: string
36
- - name: type_text
37
- list: string
38
- splits:
39
- - name: test
40
- num_bytes: 11948848
41
- num_examples: 373
42
- download_size: 3797582
43
- dataset_size: 11948848
44
  ---
45
 
46
  # GitHub Repository Event Streams
@@ -65,9 +36,9 @@ Each record is a dictionary with 8 fields:
65
  | `seq_idx` | int | Sequence index |
66
  | `seq_len` | int | Number of events in the sequence |
67
  | `description` | str | Repository name, description, language, stars, and event window |
68
- | `metadata` | str (JSON) | `repo_name`, `stars`, `language`, `actors` |
69
- | `time_since_start` | list[float] | Hours since the first event in the sequence |
70
- | `time_since_last_event` | list[float] | Hours since the previous event |
71
  | `type_event` | list[str] | Event type labels (see below) |
72
  | `type_text` | list[str] | Natural language description of each event |
73
 
@@ -110,7 +81,7 @@ Sequences are selected to represent moderately active, well-maintained repositor
110
  "seq_idx": 0,
111
  "seq_len": 68,
112
  "description": "GitHub repository example/repo: A web framework for building APIs (Python, 1,234 stars) Event window: June 01 - 07, 2024.",
113
- "metadata": "{\"repo_name\": \"example/repo\", \"stars\": \"1234\", \"language\": \"Python\", \"actors\": [\"alice\", \"bob\", \"charlie\"]}",
114
  "time_since_start": [0.0, 0.123, ...],
115
  "time_since_last_event": [0.0, 0.123, ...],
116
  "type_event": ["pr_opened", "comment", "pr_reviewed", ...],
 
12
  - marked-temporal-point-process
13
  size_categories:
14
  - n<1K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  ---
16
 
17
  # GitHub Repository Event Streams
 
36
  | `seq_idx` | int | Sequence index |
37
  | `seq_len` | int | Number of events in the sequence |
38
  | `description` | str | Repository name, description, language, stars, and event window |
39
+ | `metadata` | str (JSON) | `repo_name`, `stars`, `language`, `actors`, `time_unit` |
40
+ | `time_since_start` | list[float] | Time since the first event (in `time_unit`, default hours) |
41
+ | `time_since_last_event` | list[float] | Time since the previous event (in `time_unit`, default hours) |
42
  | `type_event` | list[str] | Event type labels (see below) |
43
  | `type_text` | list[str] | Natural language description of each event |
44
 
 
81
  "seq_idx": 0,
82
  "seq_len": 68,
83
  "description": "GitHub repository example/repo: A web framework for building APIs (Python, 1,234 stars) Event window: June 01 - 07, 2024.",
84
+ "metadata": "{\"repo_name\": \"example/repo\", \"stars\": \"1234\", \"language\": \"Python\", \"actors\": [\"alice\", \"bob\", \"charlie\"], \"time_unit\": \"hours\"}",
85
  "time_since_start": [0.0, 0.123, ...],
86
  "time_since_last_event": [0.0, 0.123, ...],
87
  "type_event": ["pr_opened", "comment", "pr_reviewed", ...],