This repository stores the codes of our CGPP Framework
- Run the
python main_train.pycommand to train the model. - The training result will be saved in the
Output_model/XXX.pklfile.
Run the python main_test.py command to test the model.
The dataset used in this project is map data, including map data and user origin-destination data. We provide a sample dataset:
- [Map data](edge.csv, node.csv)
- [User origin-destination data] (initial_query_test)
edge.csv
| Column Name | Data Type | Description |
|---|---|---|
| start_node | int | Starting location |
| end_node | int | Ending location |
| distance | float | Distance between the starting and ending locations |
| ... | ... | ... |
node.csv
| Column Name | Data Type | Description |
|---|---|---|
| ID | int | The ID of each node |
| X | float | Longitude |
| X | float | Latitude |
| ... | ... | ... |