Coder Social home page Coder Social logo

trip-optimizer's Introduction

Trip Optimizer

An automated trip planner given the restaurants and recreational spots data. This program solves three problems: Choosing the restaurants, choosing the recreational spots, and scheduling the routes.

The inputs for this program are:

  • Number of days
  • Number of people
  • Food budget
  • Recreation budget

Columns for restaurants data: (name, cost_per_person, rating, num_reviewer, location_x, location_y)

Columns for recreations data: (name, rating, num_reviewer, cost, location_x, location_y, time_spent)

Run the Program

To run the program, use main.py scripts or open the Trip Optimizer.ipynb notebook on jupyter.

Sample result:

Plot result

Requirements

To install the requirements, follow these steps:

  1. Create new virtual environment named venv (it's on the gitignore): python -m venv venv
  2. Activate the virtual environment:
    1. On Windows: .\venv\Scripts\activate
      • Note that if there's an error in execution of scripts, run Set-ExecutionPolicy Unrestricted -Scope Process before activating environment.
    2. On Mac: source venv/bin/activate
  3. Install the packages from requirements.txt: pip install -r requirements.txt

Additional Comments

The current data are hand-generated data, they can be substituted with the real data as long as the required columns are available. The variables location_x and location_y are randomly generated from 0 to 100. These variables can be substituted with the geospatial data (latitute and longitude). To choose the restaurants and recreational spots, the new satisfaction metric is created by multiplying rating with the log of number reviewer.

The program used the hybrid optimization framework: Integer Programming and Network Flow Problem. To see the formulation, go to the formulation directory.

trip-optimizer's People

Contributors

kelvinc123 avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.