kickscore-kdd19
Code for reproducing the results of the kickscore paper (KDD 2019).
File Explorer
- __init__.py
- base.py
- basketball.py
- chess.py
- football.py
- starcraft.py
- tennis.py
- baselines.py
- plotting.py
- regression.py
- utils.py
- .gitignore
- setup.py
- dataset-basketball.ipynb
- dataset-chess-full.ipynb
- dataset-chess-small.ipynb
- dataset-football.ipynb
- dataset-starcraft-hots.ipynb
- dataset-starcraft-wol.ipynb
- dataset-tennis.ipynb
- fig-covariances.ipynb
- fig-improvement.ipynb
- fig-scalability.ipynb
- fig-scores.ipynb
- fig-starcraft.ipynb
- mean-field-assumption.ipynb
- condor-gen.py
- condor-run.py
- example-input.json
- condor-gen.py
- condor-run.py
- example-input.json
- parse-condor-results.py
- cb18.go
- preprocess.py
- README.md
- .gitignore
- README.md
- requirements.txt
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
jupyter
View Details ▼
jupyter
Web application to create and share documents that contain code, visualizations, and notes.
Primarily used for data analysis, scientific computing, and machine learning.
jupyter notebook
Start a Jupyter notebook server in the current directory:
jupyter notebook {{path/to/file}}.ipynb
Open a specific Jupyter notebook:
jupyter nbconvert --to {{html|markdown|pdf|script|...}} {{path/to/file}}.ipynb
Export a specific Jupyter notebook into another format:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
tar
View Details ▼
tar
Archiving utility.
Often combined with a compression method, such as `gzip` or `bzip2`.
tar cf {{path/to/target.tar}} {{path/to/file1 path/to/file2 ...}}
[c]reate an archive and write it to a [f]ile:
tar czf {{path/to/target.tar.gz}} {{path/to/file1 path/to/file2 ...}}
[c]reate a g[z]ipped archive and write it to a [f]ile:
tar czf {{path/to/target.tar.gz}} {{[-C|--directory]}} {{path/to/directory}} .
[c]reate a g[z]ipped (compressed) archive from a directory using relative paths:
