Challenge Project

Routenplaner für die nächste Woche

Wir nutzten ein Long short-term memory neuronales Netztwerk um alle Routen der nächsten Woche in Google Maps zu planen

OST SML

⛶  Fullscreen ↓  Download 📂 Demo

Für den Google Drive Link muss man den Link eventuell in einem separaten Fenster öffnen.

Open Data Hack 2023

Initial Goal 🎯

Use an LSTM AI model to predict the fill levels of recycling stations in St. Gallen and create a pathfinding algorithm that finds the ideal routes for city employees, for the next work week.

Components 🧩

1) AI model that predicts future fill levels based on historic data 2) Pathfinding algorithm that finds the optimal order of recycling stations based on the predicted fill levels and location 3) Visualization of the optimal route via a web app

Our Result 🤗

This is how our application can be used: 1. The user enters the web app via the browser and sees the location of all glass containers that are equipped with sensors. Start Page 2. On the left side the user can set values that steer the calculation of the path finding algorithm and the prediction: - Leeren ab Füllstand: Threshold that defines the level (in percentage) of the containers that should be emptied. Containers with a lower level of glass contained are being ignore by the path finding algorithm. - Dauer der Tour: Number of working hours that the resulting path should occupy (0-8). - Glasarten: Which types of glass (white, brown, green) should be considered in the resulting path. 3. After clicking Predict, the path finding algorithm is called via a REST API that works in the background: a) The (driving) distances between the containers are calculated in a preliminary step upon startup of the REST API using Google Maps API. The distances are then saved in a file and loaded whenever needed. b) The costs are being calculated as a mixture of a greedy algorithm and a nearest neighbor algorithm. The distances between containers (nearest neighbor) are weighted by the level they are filled (greedy). c) The algorithm then starts at station0 which is fixed at the "Kehrrichtheizkraftwerk St. Gallen" and then takes on the path that has the smallest cost. d) When the most containers of a path are found, we implemented a refining step. In this step we aim to minimize the driving time by reorganizing the order of the containers in the path. 4. The calculated path is being displayed to the user with all the necessary infos. - A selection for a date in the next 5 days to show the route for - Query information of the beforehand input - The locations of the tour with the expected fill level of each container Sidebar - Location of the container - Fill Level of of the container - Glass type of the container Overlay - The overall route of the path Result

Details

Prediction for 5 days into the future

The model is trained in sequences of 5 days to predict the 6. day. Therefore, the last 5 days of data are being considered in order to calculate the predicted value for tomorrow. In order to calculate the predictions for the day after tomorrow, the previous preidiction of tomorrow is being used in a feedback loop.

 Path Refinement

As from our rough tests, the path refinement results in a reduced driving time of approximately 5-10 minutes per path.

Path Constraint

In order to make it as realistic as possible, we have defined two constraints for the path: 1. The path should be calculated such that it fits into 1 working day (8h, adjustable via UI) 2. The fillment level of a trough should not be exceeded (currently set to 10 containers = 1 fillment of a trough, also it is not yet distinguished between volume per glass type)

We then start at station0 (Heizkraftwerk St. Gallen) and we continuously add containers until eiher the time is excceeded (inclusive time to get back to station0) or the trough is full. The needed time is calculated by summing up the driving times and the time per emptying (fixed at 15 Minutes per container - some extra time included for gradual delays) per container.

Currently, we don't consider emptying nearby containers of other glass types which are below the set threshold but in reality, this would be a reasonable extension to the application.

Future Ideas ✨

Ideas that can be explored if there is time: - [ ] Host on a server - [ ] Improve the model by adding more influencing parameters such as weekday, season or fill levels of nearby ALU sensors - [ ] Edge case handling - [ ] Torough testing - [ ] Vary the number of inputs, the timeranges, the number of outputs... - [ ] Add sensor noise threshold - [ ] Test if training on single sensors is better

Setup

Create a conda environment with conda create --name <env> --file requirements.txt. We recommend using python version 3.9.

Create a Google Maps API key and save it for later steps (you can easily find the documentation online).

Run the bash script download-data.sh. This will download the data to the data folder. Afterwards run preprocessing.py directly which will create a single csv file from all the 3 datasets.

 Alternative Setup:

Download the files below into the data folder: - Füllstandsensoren Glassammelstellen (Weissglas) - Füllstandsensoren Glassammelstellen (Grünglas) - Füllstandsensoren Glassammelstellen (Braunglas)

Train the model

To train the model, the datasets must be available and merged (as done in the Setup step). The file must be available under data/days_merged.csv. Afterwards, you can execute main.py in the project root which will train the model and save a snapshot to the trained-models/ folder.

API

The Google Maps API key must be saved under as MAPS_KEY=<key> in a .env file in the project root.

In order to use the model, the datasets must be available and merged (as done in the Setup step). Also, the model must be trained. Afterwards, the command flask --app lib/api run can be executed from the project root.

UI

The Google Maps API key must be saved in a second location as REACT_APP_GOOGLE_MAPS_API_KEY=<key> in a .env file in the predictor-app/ folder.

The UI is located in the predictor-app/ folder. First run npm install in the given folder, the start it using npm run start.

This content is a preview from an external site.
 

Repository updated

05.12.2023 10:43 ~ gaston_wey

Project

Edited (version 11)

05.12.2023 10:42 ~ gaston_wey

Edited (version 10)

05.12.2023 09:51 ~ gaston_wey

Edited (version 9)

05.12.2023 09:50 ~ gaston_wey

Event finished

Edited (version 7)

03.12.2023 04:01 ~ patrick_wissiak

Edited (version 6)

03.12.2023 04:01 ~ patrick_wissiak

Edited (version 5)

03.12.2023 03:58 ~ patrick_wissiak

Edited (version 4)

03.12.2023 03:58 ~ patrick_wissiak

Revert changes (@Wissiak)

Update readme (@Wissiak)

fix bug in path calculation (@Wissiak)

Update readme (@Wissiak)

Changes to frontend for route (@Norukh)

Fix bug in path finder (@Wissiak)

Update readme, download-data script and tidy up (@Wissiak)

Improve path refining (@Wissiak)

Fix bugs in path finder (@Wissiak)

Add redux for predicted route (@Norukh)

Add predictions for next n days (@Wissiak)

Use new data (@Wissiak)

fix bugs (@Wissiak)

Load new model data (@Wissiak)

Tour functionality added (@Norukh)

Joined the team

02.12.2023 20:53 ~ patrick_wissiak

Project

Add cors implementation for flask webservice (@Norukh)

changes in frontend and redux store implement (@Norukh)

Update readme.md (@peterkuhn-s)

Edited (version 3)

02.12.2023 19:37 ~ peter_kuhn

Project

Edited (version 2)

02.12.2023 19:36 ~ peter_kuhn

Edited (version 1)

02.12.2023 18:16 ~ peter_kuhn

Joined the team

02.12.2023 18:15 ~ peter_kuhn

Add to gitignore (@Norukh)

Rebuild flask api for python project (@Norukh)

Hightlight next 5 days available for prediction (@Norukh)

Small changes (@Wissiak)

Add api to get path (@Wissiak)

Implement refine path (@Wissiak)

Init flask backend (@Wissiak)

Added predictor frontend app without backend connection (@Norukh)

add error when path to model is empty (@kevinloeffler)

Merge remote-tracking branch 'origin/master'

Conflicts:

.gitignore (@kevinloeffler)

add abstract model class (api) (@kevinloeffler)

Move path finder in class (@Wissiak)

Presave distances once and calculate costs per day (@Wissiak)

Challenge

Event started

 
All attendees, sponsors, partners, volunteers and staff at our hackathon are required to agree with the Hack Code of Conduct. Organisers will enforce this code throughout the event. We expect cooperation from all participants to ensure a safe environment for everybody.

Creative Commons LicenceThe contents of this website, unless otherwise stated, are licensed under a Creative Commons Attribution 4.0 International License.