Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -26,3 +26,73 @@ configs:
|
|
| 26 |
- split: train
|
| 27 |
path: data/train-*
|
| 28 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
- split: train
|
| 27 |
path: data/train-*
|
| 28 |
---
|
| 29 |
+
|
| 30 |
+
# Screen Recording Datasets
|
| 31 |
+
|
| 32 |
+
This dataset contains **screen recordings of user interactions across multiple consumer applications**.
|
| 33 |
+
|
| 34 |
+
The recordings capture workflows such as:
|
| 35 |
+
|
| 36 |
+
* browsing products
|
| 37 |
+
* searching items
|
| 38 |
+
* selecting services
|
| 39 |
+
* booking hotels or flights
|
| 40 |
+
* ordering food
|
| 41 |
+
* purchasing products
|
| 42 |
+
|
| 43 |
+
The dataset is designed to support **AI systems that understand digital user interactions and UI workflows**.
|
| 44 |
+
|
| 45 |
+
---
|
| 46 |
+
|
| 47 |
+
# Dataset Structure
|
| 48 |
+
|
| 49 |
+
Each example contains:
|
| 50 |
+
|
| 51 |
+
| Column | Description |
|
| 52 |
+
| --------- | ----------------------------------- |
|
| 53 |
+
| video | Screen recording video |
|
| 54 |
+
| file_name | Unique identifier for the video |
|
| 55 |
+
| type | Category of application interaction |
|
| 56 |
+
|
| 57 |
+
---
|
| 58 |
+
|
| 59 |
+
# Application Categories
|
| 60 |
+
|
| 61 |
+
The dataset includes recordings from the following app categories:
|
| 62 |
+
|
| 63 |
+
* **ecommerce**
|
| 64 |
+
* **food_delivery**
|
| 65 |
+
* **hotel_booking**
|
| 66 |
+
* **flight_booking**
|
| 67 |
+
* **quick_commerce**
|
| 68 |
+
|
| 69 |
+
---
|
| 70 |
+
|
| 71 |
+
# Potential Use Cases
|
| 72 |
+
|
| 73 |
+
This dataset can support research in:
|
| 74 |
+
|
| 75 |
+
* UI interaction understanding
|
| 76 |
+
* video-based action recognition
|
| 77 |
+
* multimodal AI systems
|
| 78 |
+
* workflow prediction
|
| 79 |
+
* automated UI testing
|
| 80 |
+
* human-computer interaction (HCI)
|
| 81 |
+
|
| 82 |
+
---
|
| 83 |
+
|
| 84 |
+
# Loading the Dataset
|
| 85 |
+
|
| 86 |
+
```python
|
| 87 |
+
from datasets import load_dataset
|
| 88 |
+
|
| 89 |
+
dataset = load_dataset("humyn-labs/ScreenRecording-Datasets")
|
| 90 |
+
|
| 91 |
+
print(dataset["train"][0])
|
| 92 |
+
```
|
| 93 |
+
|
| 94 |
+
---
|
| 95 |
+
|
| 96 |
+
# License
|
| 97 |
+
|
| 98 |
+
This dataset is released under the **CC BY 4.0 License**.
|