File size: 474 Bytes
0d3a58d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
license: gpl-3.0
---

# SoccerNet Challenge 2025 - Monocular Depth Estimation

## Download the dataset

Install the huggingface_hub pip package:

```bash
pip install huggingface_hub[cli]
```

Download the dataset with the following Python code :

```python
from huggingface_hub import snapshot_download
snapshot_download(repo_id="SoccerNet/SN-Depth-2025",
                  repo_type="dataset", revision="main",
                  local_dir="SoccerNet/SN-Depth-2025")
```