Skip to content

Commit 439f6b4

Browse files
author
Hakan Ardo
committed
add some details to instructions
1 parent 150d525 commit 439f6b4

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,20 +35,29 @@ It is also possible to build manually:
3535
```
3636

3737
## Data Download
38-
The Spiideo SoccerNet SynLoc data can be downloaded from [research.spiideo.com](https://research.spiideo.com/) after registering. Unpack the .zip files in `data/SoccerNet/SpiideoSynLoc`. To automate the download, the [`SoccerNet`](https://pypi.org/project/SoccerNet/) pypi package can be used:
38+
The Spiideo SoccerNet SynLoc data can be downloaded from [research.spiideo.com](https://research.spiideo.com/) after registering. Unpack the .zip files in `data/SoccerNet/SpiideoSynLoc`. To automate the download, the [`SoccerNet`](https://pypi.org/project/SoccerNet/) pypi package can be used. It can be installed with:
39+
```bash
40+
pip install SoccerNet
41+
```
3942

43+
Then, the dataset can be downloaded using:
4044
```python
4145
from SoccerNet.Downloader import SoccerNetDownloader
4246
mySoccerNetDownloader=SoccerNetDownloader(LocalDirectory="data/SoccerNet")
4347
mySoccerNetDownloader.downloadDataTask(task="SpiideoSynLoc", split=["train","valid","test","challenge"])
4448
```
4549

4650
This will download full resolution 4K images. To instead download the smaller fullhd versions, use:
47-
4851
```python
4952
mySoccerNetDownloader.downloadDataTask(task="SpiideoSynLoc", split=["train","valid","test","challenge"], version="fullhd")
5053
```
5154

55+
The downloaded .zip archives then needs to be extracted:
56+
```bash
57+
cd data/SoccerNet
58+
for z in *.zip; do unzip $z; done
59+
```
60+
5261
## mAP-LocSim Evaluation
5362

5463
Tools for evaluating a solution using the proposed mAP-LocSim metrics can be found in `sskit.coco`. It's an adaption of

0 commit comments

Comments
 (0)