SilvioGiancola
commited on
Commit
•
ce84ee7
1
Parent(s):
64ee6ae
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,22 @@
|
|
1 |
-
---
|
2 |
-
license: gpl-3.0
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: gpl-3.0
|
3 |
+
---
|
4 |
+
|
5 |
+
# SoccerNet Challenge 2025 - Game State Reconstruction
|
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-GSR-2025",
|
20 |
+
repo_type="dataset", revision="main",
|
21 |
+
local_dir="SoccerNet/SN-GSR-2025")
|
22 |
+
```
|