Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: gpl-3.0
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: gpl-3.0
|
| 3 |
+
---
|
| 4 |
+
|
| 5 |
+
# SoccerNet Challenge 2025 - Team Ball Action Spotting
|
| 6 |
+
|
| 7 |
+
## Download the dataset
|
| 8 |
+
|
| 9 |
+
Install the huggingface_hub pip package:
|
| 10 |
+
|
| 11 |
+
```bash
|
| 12 |
+
pip install huggingface_hub[cli]
|
| 13 |
+
```
|
| 14 |
+
|
| 15 |
+
Download the dataset with the following Python code :
|
| 16 |
+
|
| 17 |
+
```python
|
| 18 |
+
from huggingface_hub import snapshot_download
|
| 19 |
+
snapshot_download(repo_id="SoccerNet/SN-BAS-2025",
|
| 20 |
+
repo_type="dataset", revision="main",
|
| 21 |
+
local_dir="SoccerNet/SN-BAS-2025")
|
| 22 |
+
```
|
| 23 |
+
|
| 24 |
+
## Unzip the dataset splits
|
| 25 |
+
|
| 26 |
+
The zipped folder contains videos from the original [SoccerNet dataset](https://www.soccer-net.org/data), which is password-protected.
|
| 27 |
+
You will receive that password after signing the [SoccerNet NDA](https://docs.google.com/forms/d/e/1FAIpQLSfYFqjZNm4IgwGnyJXDPk2Ko_lZcbVtYX73w5lf6din5nxfmA/viewform).
|