|
1 | | -# SoccerTrack |
| 1 | +.. rubric:: SoccerTrack |
2 | 2 |
|
3 | 3 | [](https://soccertrack.readthedocs.io/en/latest/?badge=latest) |
4 | 4 |
|
5 | 5 |
|
6 | | -SoccerTrack is a dataset for tracking soccer players and balls. |
7 | 6 |
|
8 | | -Project Organization |
9 | | ------------- |
| 7 | +## What is SoccerTrack? |
10 | 8 |
|
11 | | - ├── LICENSE |
12 | | - ├── Makefile <- Makefile with commands like `make data` or `make train` |
13 | | - ├── README.md <- The top-level README for developers using this project. |
14 | | - ├── data |
15 | | - │ ├── external <- Data from third party sources. |
16 | | - │ ├── interim <- Intermediate data that has been transformed. |
17 | | - │ ├── processed <- The final, canonical data sets for modeling. |
18 | | - │ └── raw <- The original, immutable data dump. |
19 | | - │ |
20 | | - ├── docs <- A default Sphinx project; see sphinx-doc.org for details |
21 | | - │ |
22 | | - ├── models <- Trained and serialized models, model predictions, or model summaries |
| 9 | +SoccerTrack is a dataset and for tracking soccer players and balls. |
| 10 | + |
| 11 | + |
| 12 | +## Project Organization |
| 13 | + |
| 14 | +This project was based on the [cookiecutter data science template](https://drivendata.github.io/cookiecutter-data-science/), but some folders were removed. Below is a brief overview of the current project structure. |
| 15 | + |
| 16 | +``` |
23 | 17 | │ |
24 | | - ├── notebooks <- Jupyter notebooks. Naming convention is a number (for ordering), |
25 | | - │ the creator's initials, and a short `-` delimited description, e.g. |
26 | | - │ `1.0-jqp-initial-data-exploration`. |
| 18 | + ├── docs <- Sphinx project. |
27 | 19 | │ |
28 | | - ├── references <- Data dictionaries, manuals, and all other explanatory materials. |
| 20 | + ├── notebooks <- Jupyter notebooks for example usage. |
29 | 21 | │ |
30 | | - ├── reports <- Generated analysis as HTML, PDF, LaTeX, etc. |
31 | | - │ └── figures <- Generated graphics and figures to be used in reporting |
| 22 | + ├── reports <- Generated analysis including references |
32 | 23 | │ |
33 | | - ├── requirements.txt <- The requirements file for reproducing the analysis environment, e.g. |
34 | | - │ generated with `pip freeze > requirements.txt` |
| 24 | + ├── soccertrack <- Source code. See API Refence. |
35 | 25 | │ |
36 | | - ├── setup.py <- makes project pip installable (pip install -e .) so src can be imported |
37 | | - ├── src <- Source code for use in this project. |
38 | | - │ ├── __init__.py <- Makes src a Python module |
39 | | - │ │ |
40 | | - │ ├── data <- Scripts to download or generate data |
41 | | - │ │ └── make_dataset.py |
42 | | - │ │ |
43 | | - │ ├── features <- Scripts to turn raw data into features for modeling |
44 | | - │ │ └── build_features.py |
45 | | - │ │ |
46 | | - │ ├── models <- Scripts to train models and then use trained models to make |
47 | | - │ │ │ predictions |
48 | | - │ │ ├── predict_model.py |
49 | | - │ │ └── train_model.py |
50 | | - │ │ |
51 | | - │ └── visualization <- Scripts to create exploratory and results oriented visualizations |
52 | | - │ └── visualize.py |
| 26 | + ├── data <- (Only minimum stuff on github). |
| 27 | + │ ├── external <- Data from third party sources. |
| 28 | + │ ├── interim <- Intermediate data that has been transformed. |
| 29 | + │ ├── processed <- The final, canonical data sets for modeling. |
| 30 | + │ └── raw <- The original, immutable data dump. |
53 | 31 | │ |
54 | | - └── tox.ini <- tox file with settings for running tox; see tox.readthedocs.io |
55 | | - |
| 32 | + └── models <- Trained model weights (only minimum stuff on github). |
| 33 | +``` |
56 | 34 |
|
57 | 35 | -------- |
58 | | - |
59 | | -<p><small>Project based on the <a target="_blank" href="https://drivendata.github.io/cookiecutter-data-science/">cookiecutter data science project template</a>. #cookiecutterdatascience</small></p> |
0 commit comments