https://github.com/pedrosfaria2/match_predictor_models
Soccer match prediction models
https://github.com/pedrosfaria2/match_predictor_models
css css3 flask html html5 javascript modeling modeling-and-simulation python python3 scikit-learn simulation test-automation test-driven-development testing
Last synced: 3 months ago
JSON representation
Soccer match prediction models
- Host: GitHub
- URL: https://github.com/pedrosfaria2/match_predictor_models
- Owner: pedrosfaria2
- Created: 2024-05-09T01:52:18.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-10T01:29:58.000Z (over 1 year ago)
- Last Synced: 2025-01-05T19:23:08.945Z (9 months ago)
- Topics: css, css3, flask, html, html5, javascript, modeling, modeling-and-simulation, python, python3, scikit-learn, simulation, test-automation, test-driven-development, testing
- Language: Python
- Homepage:
- Size: 216 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Match predictor
The Match Predictor codebase contains an app with several predictors for football results.
## Local development
Follow the instructions below to get the app up and running on your machine.
1. Install Python 3.10 and a recent version of NPM.
1. Install dependencies and run tests.
```shell
make install test
```
1. View the list of available tasks
```shell
make
```## Backend
Here are a few tasks that are useful when running the backend app.
Make sure they all run on your machine.1. Run tests
```shell
make backend/test1. Run model measurement tests
```shell
make backend/measure
```1. Run server
```shell
make backend/run
```1. Run an accuracy report
```shell
make backend/report
```## Frontend
Here are a few tasks that are useful when running the frontend app.
Make sure they all run on your machine.1. Run tests
```shell
make frontend/test
```1. Run server
```shell
make frontend/run
```## Integration tests
If it's helpful, you may want to run integration tests during development.
Do so with the tasks below.1. Run tests
```shell
make integration/test
```1. Interactive mode
```shell
make integration/run
```