All Projects → GoogleCloudPlatform → Ipython Soccer Predictions

GoogleCloudPlatform / Ipython Soccer Predictions

Licence: apache-2.0
Sample iPython notebook with soccer predictions

Projects that are alternatives of or similar to Ipython Soccer Predictions

Practical Deep Learning Book
Official code repo for the O'Reilly Book - Practical Deep Learning for Cloud, Mobile & Edge
Stars: ✭ 441 (-1.34%)
Mutual labels:  jupyter-notebook
Swiftai
Swift for TensorFlow's high-level API, modeled after fastai
Stars: ✭ 445 (-0.45%)
Mutual labels:  jupyter-notebook
Rl Portfolio Management
Attempting to replicate "A Deep Reinforcement Learning Framework for the Financial Portfolio Management Problem" https://arxiv.org/abs/1706.10059 (and an openai gym environment)
Stars: ✭ 447 (+0%)
Mutual labels:  jupyter-notebook
Tcav
Code for the TCAV ML interpretability project
Stars: ✭ 442 (-1.12%)
Mutual labels:  jupyter-notebook
Pytorch Maml
PyTorch implementation of MAML: https://arxiv.org/abs/1703.03400
Stars: ✭ 444 (-0.67%)
Mutual labels:  jupyter-notebook
3dmol.js
WebGL accelerated JavaScript molecular graphics library
Stars: ✭ 443 (-0.89%)
Mutual labels:  jupyter-notebook
Deeplearningzerotoall
TensorFlow Basic Tutorial Labs
Stars: ✭ 4,239 (+848.32%)
Mutual labels:  jupyter-notebook
D2 Net
D2-Net: A Trainable CNN for Joint Description and Detection of Local Features
Stars: ✭ 448 (+0.22%)
Mutual labels:  jupyter-notebook
Deeplearning Ahem Detector
Stars: ✭ 444 (-0.67%)
Mutual labels:  jupyter-notebook
Dynslam
Master's Thesis on Simultaneous Localization and Mapping in dynamic environments. Separately reconstructs both the static environment and the dynamic objects from it, such as cars.
Stars: ✭ 446 (-0.22%)
Mutual labels:  jupyter-notebook
Publaynet
Stars: ✭ 442 (-1.12%)
Mutual labels:  jupyter-notebook
Modsimpy
Text and supporting code for Modeling and Simulation in Python
Stars: ✭ 443 (-0.89%)
Mutual labels:  jupyter-notebook
Face Image Motion Model
Face Image Motion Model (Photo-2-Video) based on "first-order-model" repository.
Stars: ✭ 446 (-0.22%)
Mutual labels:  jupyter-notebook
Reinforcement learning tutorial with demo
Reinforcement Learning Tutorial with Demo: DP (Policy and Value Iteration), Monte Carlo, TD Learning (SARSA, QLearning), Function Approximation, Policy Gradient, DQN, Imitation, Meta Learning, Papers, Courses, etc..
Stars: ✭ 442 (-1.12%)
Mutual labels:  jupyter-notebook
Pytorch Fastcampus
PyTorch로 시작하는 딥러닝 입문 CAMP (2017.7~2017.12) 강의자료
Stars: ✭ 447 (+0%)
Mutual labels:  jupyter-notebook
Nglview
Jupyter widget to interactively view molecular structures and trajectories
Stars: ✭ 440 (-1.57%)
Mutual labels:  jupyter-notebook
Orion
A machine learning library for detecting anomalies in signals.
Stars: ✭ 445 (-0.45%)
Mutual labels:  jupyter-notebook
Course Resources Ml With Experts Budgets
Further student resources for DrivenData's 'Machine Learning with the Experts: School Budgets' DataCamp course.
Stars: ✭ 447 (+0%)
Mutual labels:  jupyter-notebook
Pytorch advanced
書籍「つくりながら学ぶ! PyTorchによる発展ディープラーニング」の実装コードを配置したリポジトリです
Stars: ✭ 448 (+0.22%)
Mutual labels:  jupyter-notebook
Jupyter tensorboard
Start Tensorboard in Jupyter Notebook
Stars: ✭ 446 (-0.22%)
Mutual labels:  jupyter-notebook

ipython-soccer-predictions

status: inactive

This project is no longer actively developed or maintained.

Machine learning applied to soccer

Sample IPython notebook with soccer predictions

We’ve had a great time giving you our predictions for the World Cup (check out our post before the quarter finals and the one before the semi-finals). So far, we’ve gotten 13 of 14 games correct. But this shouldn’t be about what we did - it’s about what you can do with Google Cloud Platform. Now, we are open-sourcing our prediction model and packaging it up so you can do your own analysis and predictions.

We have ingested raw touch-by-touch gameplay day from Opta for thousands of soccer matches using Google Cloud Dataflow and polished the raw data into predictive statistics using Google BigQuery. You can see BigQuery engineer Jordan Tigani (+JordanTigani) and developer advocate Felipe Hoffa (@felipehoffa) talk about how we did it in this video from Google I/O.

Project setup, installation, and configuration

Deploying

How to setup the deployment environment

Pre-work: Get started with the Google Cloud Platform and create a project:

Sign up at https://console.developers.google.com/, create a project, and remember to turn on the Google BigQuery API. Install the Google Cloud SDK following the instructions at https://developers.google.com/cloud/sdk/.

How to deploy

Start your instance:

gcloud compute instances create ipy-predict \
  --image https://www.googleapis.com/compute/v1/projects/google-containers/global/images/container-vm-v20140522 \
  --zone=us-central1-a --machine-type n1-standard-1 --scopes storage-ro bigquery

Ssh to your new machine:

gcutil ssh --ssh_arg "-L 8888:127.0.0.1:8888" --zone=us-central1-a ipy-predict

Download and run the docker image we prepared:

sudo docker run -p 8888:8888 fhoffa/ipython-predictions:v1

Wait until Docker downloads and runs the container, then navigate to the notebook:

http://127.0.0.1:8888/notebooks/soccer/predict/wc-final.ipynb

Contributing changes

Licensing

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].