Upload 7 files
Browse files- LICENSE +21 -0
- README.md +75 -0
- card.png +0 -0
- data/train.jsonl +0 -0
- dataset.csv +0 -0
- dataset_infos.json +60 -0
- metadata.json +12 -0
LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2026 WebXOS Research
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in all
|
| 13 |
+
copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 21 |
+
SOFTWARE.
|
README.md
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
task_categories:
|
| 5 |
+
- reinforcement-learning
|
| 6 |
+
tags:
|
| 7 |
+
- human-demonstrations
|
| 8 |
+
- atari-like
|
| 9 |
+
- browser-game
|
| 10 |
+
- rl-dataset
|
| 11 |
+
license: mit
|
| 12 |
+
pretty_name: ARACHNID RL Dataset
|
| 13 |
+
size_categories:
|
| 14 |
+
- n<1K
|
| 15 |
+
config_name: default
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# ARACHNID RL Dataset
|
| 19 |
+
|
| 20 |
+
## Dataset Description
|
| 21 |
+
|
| 22 |
+
This dataset contains reinforcement learning transitions collected from human gameplay of ARACHNID RL, a 2D Atari-inspired space shooter.
|
| 23 |
+
|
| 24 |
+
### Game Description
|
| 25 |
+
Players control a spider-like ship to destroy asteroids and aliens while collecting diamonds.
|
| 26 |
+
|
| 27 |
+
### Dataset Structure
|
| 28 |
+
The main dataset is in `data/train.jsonl` in JSON Lines format.
|
| 29 |
+
|
| 30 |
+
### Data Format
|
| 31 |
+
Each line in `data/train.jsonl` is a JSON object with:
|
| 32 |
+
- `state`: Game state (JSON string containing position, velocity, lives, score, nearby objects)
|
| 33 |
+
- `action`: Player action (left, right, up, down, shoot, boost, none)
|
| 34 |
+
- `reward`: Immediate reward
|
| 35 |
+
- `next_state`: Next game state (JSON string)
|
| 36 |
+
- `done`: Episode termination flag
|
| 37 |
+
- `event_type`: Type of event
|
| 38 |
+
- `event_details`: Additional metadata (JSON string)
|
| 39 |
+
|
| 40 |
+
### Usage
|
| 41 |
+
```python
|
| 42 |
+
from datasets import load_dataset
|
| 43 |
+
import json
|
| 44 |
+
|
| 45 |
+
# Load the dataset
|
| 46 |
+
dataset = load_dataset('json', data_files={'train': 'data/train.jsonl'})
|
| 47 |
+
|
| 48 |
+
# Parse state strings to dictionaries
|
| 49 |
+
def parse_state(example):
|
| 50 |
+
example['state'] = json.loads(example['state'])
|
| 51 |
+
example['next_state'] = json.loads(example['next_state'])
|
| 52 |
+
if example['event_details']:
|
| 53 |
+
example['event_details'] = json.loads(example['event_details'])
|
| 54 |
+
return example
|
| 55 |
+
|
| 56 |
+
dataset = dataset.map(parse_state)
|
| 57 |
+
|
| 58 |
+
# Access data
|
| 59 |
+
print(f"Number of samples: {len(dataset['train'])}")
|
| 60 |
+
print(dataset['train'][0])
|
| 61 |
+
```
|
| 62 |
+
|
| 63 |
+
### Citation
|
| 64 |
+
```bibtex
|
| 65 |
+
@misc{arachnid_rl_2026,
|
| 66 |
+
title = {ARACHNID RL Dataset},
|
| 67 |
+
author = {WebXOS Research},
|
| 68 |
+
year = {2026}
|
| 69 |
+
}
|
| 70 |
+
```
|
| 71 |
+
|
| 72 |
+
### License
|
| 73 |
+
MIT License
|
| 74 |
+
|
| 75 |
+
© 2026 WebXOS Research
|
card.png
ADDED
|
data/train.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
dataset.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
dataset_infos.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"default": {
|
| 3 |
+
"description": "ARACHNID RL Dataset - Human gameplay demonstrations for reinforcement learning",
|
| 4 |
+
"citation": "@misc{arachnid_rl_2026, title = {ARACHNID RL Dataset}, author = {WebXOS Research}, year = {2026}}",
|
| 5 |
+
"homepage": "",
|
| 6 |
+
"license": "mit",
|
| 7 |
+
"features": {
|
| 8 |
+
"timestamp": {
|
| 9 |
+
"dtype": "int64",
|
| 10 |
+
"_type": "Value"
|
| 11 |
+
},
|
| 12 |
+
"session_id": {
|
| 13 |
+
"dtype": "string",
|
| 14 |
+
"_type": "Value"
|
| 15 |
+
},
|
| 16 |
+
"player_id": {
|
| 17 |
+
"dtype": "string",
|
| 18 |
+
"_type": "Value"
|
| 19 |
+
},
|
| 20 |
+
"event_type": {
|
| 21 |
+
"dtype": "string",
|
| 22 |
+
"_type": "Value"
|
| 23 |
+
},
|
| 24 |
+
"action": {
|
| 25 |
+
"dtype": "string",
|
| 26 |
+
"_type": "Value"
|
| 27 |
+
},
|
| 28 |
+
"reward": {
|
| 29 |
+
"dtype": "float64",
|
| 30 |
+
"_type": "Value"
|
| 31 |
+
},
|
| 32 |
+
"done": {
|
| 33 |
+
"dtype": "bool",
|
| 34 |
+
"_type": "Value"
|
| 35 |
+
},
|
| 36 |
+
"state": {
|
| 37 |
+
"dtype": "string",
|
| 38 |
+
"_type": "Value"
|
| 39 |
+
},
|
| 40 |
+
"next_state": {
|
| 41 |
+
"dtype": "string",
|
| 42 |
+
"_type": "Value"
|
| 43 |
+
},
|
| 44 |
+
"event_details": {
|
| 45 |
+
"dtype": "string",
|
| 46 |
+
"_type": "Value"
|
| 47 |
+
}
|
| 48 |
+
},
|
| 49 |
+
"splits": {
|
| 50 |
+
"train": {
|
| 51 |
+
"name": "train",
|
| 52 |
+
"num_bytes": 1829758,
|
| 53 |
+
"num_examples": 2831
|
| 54 |
+
}
|
| 55 |
+
},
|
| 56 |
+
"download_size": 1829758,
|
| 57 |
+
"dataset_size": 1829758,
|
| 58 |
+
"config_name": "default"
|
| 59 |
+
}
|
| 60 |
+
}
|
metadata.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"game": "ARACHNID_RL",
|
| 3 |
+
"version": "1.0.0",
|
| 4 |
+
"framework": "KeenTech_Inspired",
|
| 5 |
+
"timestamp": "2026-01-08T21:09:46.421Z",
|
| 6 |
+
"session_id": "session_1767906586421",
|
| 7 |
+
"player_id": "anonymous_5100",
|
| 8 |
+
"session_start": "2026-01-08T21:09:49.692Z",
|
| 9 |
+
"session_duration": 331,
|
| 10 |
+
"final_score": 3503,
|
| 11 |
+
"samples_collected": 2831
|
| 12 |
+
}
|