Update README.md
Browse files
README.md
CHANGED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Stipra Dataset
|
2 |
+
|
3 |
+
The **Stipra Dataset** consists of 1273 short videos of regular people disposing household products into the garbage. Each video is up to 1 second long and is fully anonymized. This dataset is open source, making it freely available for use in any project, for any purpose.
|
4 |
+
|
5 |
+
## Dataset Overview
|
6 |
+
|
7 |
+
- **Number of Videos**: 1273
|
8 |
+
- **Video Format**: MP4
|
9 |
+
- **Video Duration**: Up to 1 second per video
|
10 |
+
- **Content**: Regular people disposing of household items in the garbage
|
11 |
+
- **Anonymization**: All individuals in the videos have been anonymized to protect privacy
|
12 |
+
- **License**: Open Source (Free to use for any purpose)
|
13 |
+
|
14 |
+
## Dataset Usage
|
15 |
+
|
16 |
+
This dataset is ideal for training models on tasks such as:
|
17 |
+
- Object detection (e.g., recognizing household items)
|
18 |
+
- Action recognition (e.g., identifying the action of disposing items)
|
19 |
+
- Gesture or movement detection
|
20 |
+
|
21 |
+
Since the dataset is fully open source, you can use it for any purpose, whether personal or commercial.
|
22 |
+
|
23 |
+
## Downloading the Dataset
|
24 |
+
|
25 |
+
To access and download the dataset, use the following command:
|
26 |
+
|
27 |
+
```bash
|
28 |
+
# Install the Hugging Face datasets library
|
29 |
+
pip install datasets
|
30 |
+
|
31 |
+
# Download the Stipra dataset
|
32 |
+
from datasets import load_dataset
|
33 |
+
dataset = load_dataset("stipra")
|