Dataset Viewer
The dataset viewer is not available for this split.
The number of columns (1795) exceeds the maximum supported number of columns (1000). This is a current limitation of the datasets viewer. You can reduce the number of columns if you want the viewer to work.
Error code: TooManyColumnsError
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
RecordMe App Switch
Desktop window-focus events from a single Windows machine. One record is written each time the foreground window changes.
Recorded with RecordMe.
Questions: getzpz@qq.com
Size and span
| Records | 139,157 |
| Period | 2024-04-01 → 2024-08-31 |
| Days with data | 152 |
| Distinct window titles | 5,365 |
| File size | 41.6 MB |
Structure
JSON Lines. In each object the first key is the window title and its value is the timestamp; the remaining keys are ipinfo.io geolocation fields for the machine's public IP at that moment.
{"ChatGPT - Google Chrome": "2024-08-06 12:33:25",
"ip": "138.246.3.201", "hostname": "dhcp-138-246-3-201.dynamic.eduroam.mwn.de",
"city": "Munich", "region": "Bavaria", "country": "DE",
"loc": "48.1374,11.5755", "org": "AS12816 Leibniz-Rechenzentrum",
"postal": "80333", "timezone": "Europe/Berlin"}
To read the title, take the one key that is not in
{ip, hostname, city, region, country, loc, org, postal, timezone, redacted}.
GEO = {"ip", "hostname", "city", "region", "country",
"loc", "org", "postal", "timezone", "redacted"}
for line in open("data/train.jsonl", encoding="utf-8"):
d = json.loads(line)
title = [k for k in d if k not in GEO][0]
timestamp = d[title]
Some records carry an extra redacted field; on those the title key holds the
application name instead of the window title.
- Downloads last month
- 35