HUANG1993 commited on
Commit
d59e1b8
1 Parent(s): bd20334

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -12
README.md CHANGED
@@ -4,36 +4,37 @@ pipeline_tag: reinforcement-learning
4
  tags:
5
  - Deep Reinforcement Learning
6
  - Combinatorial Optimization
7
- - Reinforcement Learning
8
  - Vehicle Routing Problem
9
  ---
10
 
11
- ![](./images/GREEDRL-Logo-Original-640.png)
12
 
13
 
14
  # 🤠GreedRL
15
 
 
16
  ## Overview
17
 
18
- - GreedRL is a Deep Reinforcement Learning(DRL) based solver that can solve various types of problems, such as TSP, VRPs(CVRP, VRPTW, VRPPD etc), Order Batching Problem, Knapsack Problem etc.
19
 
20
- - GreedRL achieves very high performance by accelerated by GPU while generating high qulity solutions. **1200 times faster** than [Google OR-Tools](https://developers.google.com/optimization) for large-scale (>=1000 nodes) CVRP, and the solution quality is improved by **about 3%**.
 
21
 
22
  ## 🏆Award
23
 
24
- [INFORMS 2021 Franz Edelman Award finalists](https://www.informs.org/Resource-Center/Video-Library/Edelman-Competition-Videos/2021-Edelman-Competition-Videos/2021-Edelman-Finalist-Alibaba) for Achievement in Operations Research and the Management Sciences (recognized for our work on Cainiao Network VRP algorithm).
25
-
26
 
27
  ## Editions
28
 
29
- We provide an open source Community Edition and an Enterprise Edition of our 🤠GreedRL for users.
30
 
31
- - **The Community Edition** is now released and available to [download](https://huggingface.co/Cainiao-AI/GreedRL).
32
- - **The Enterprise Edition** has a high-performance implementation that achives a faster computing speed, especially when solving larg-scale COPs. For more informations, please contact <a href="mailto:jiangwen.wjw@alibaba-inc.com">us</a>.
33
 
34
 
35
  ## Architecture
36
- ![](./images/GREEDRL-Framwork_en.png)
37
 
38
  ## COPs Modeling examples
39
 
@@ -359,7 +360,7 @@ class Objective:
359
 
360
  ### Realistic Business Scenario
361
  <details>
362
- <summary>real-time Dynamic Pickup and Delivery Problem (DPDP)</summary>
363
 
364
  ```python
365
  from greedrl.feature import *
@@ -554,7 +555,7 @@ class Objective:
554
  We are delighted to release 🤠GreedRL Community Edition, as well as example of training and testing scripts for the standard Capacitated VRP (CVRP), you can download it and get started.
555
 
556
  ## Test environment
557
- 🤠GreedRL Community Edition has been tested on Ubuntu 18.04 with GCC compiler v7.5.0 and CUDA version 11.4, and a [Miniconda](https://docs.conda.io/en/latest/miniconda.html#system-requirements) distribution with Python 3.8. We recommend using a similar configuration to avoid any possiblem compilation issue.
558
 
559
  ## Installation
560
  First, clone the repository.
 
4
  tags:
5
  - Deep Reinforcement Learning
6
  - Combinatorial Optimization
 
7
  - Vehicle Routing Problem
8
  ---
9
 
10
+ ![](./images/GREEDRL-Logo-Original-640.png)
11
 
12
 
13
  # 🤠GreedRL
14
 
15
+
16
  ## Overview
17
 
18
+ - GreedRL is a Deep Reinforcement Learning (DRL) based solver that can solve various types of problems, such as TSP, VRPs (CVRP, VRPTW, VRPPD etc), Order Batching Problem, Knapsack Problem etc.
19
 
20
+ - GreedRL achieves very high performance by running on GPU while generating high quality solutions.
21
+ **1200 times faster** than [Google OR-Tools](https://developers.google.com/optimization) for large-scale (>=1000 nodes) CVRP, and the solution quality is improved by **about 3%**.
22
 
23
  ## 🏆Award
24
 
25
+ - Entering the finalists of [INFORMS 2021 Franz Edelman Award](https://www.informs.org/Resource-Center/Video-Library/Edelman-Competition-Videos/2021-Edelman-Competition-Videos/2021-Edelman-Finalist-Alibaba)
26
+ - Obtain [The Second Class Prize of Scientific and Technological Progress Award](https://www.ccf.org.cn/Awards/Awards/2022-11-08/776110.shtml).
27
 
28
  ## Editions
29
 
30
+ We have deliveried the following two editions of GreedRL for users.
31
 
32
+ - **The Community Edition** is open source and available to [download](https://huggingface.co/Cainiao-AI/GreedRL).
33
+ - **The Enterprise Edition** has a higher performance implementation than **The Community Edition** (about 50 times faster), especially when solving larg-scale problems. For more informations, please contact <a href="mailto:jiangwen.wjw@alibaba-inc.com">us</a>.
34
 
35
 
36
  ## Architecture
37
+ ![](./images/GREEDRL-Framwork_en.png)
38
 
39
  ## COPs Modeling examples
40
 
 
360
 
361
  ### Realistic Business Scenario
362
  <details>
363
+ <summary>Instant Pickup and Delivery Service Problem (PDP)</summary>
364
 
365
  ```python
366
  from greedrl.feature import *
 
555
  We are delighted to release 🤠GreedRL Community Edition, as well as example of training and testing scripts for the standard Capacitated VRP (CVRP), you can download it and get started.
556
 
557
  ## Test environment
558
+ 🤠GreedRL Community Edition has been tested on Ubuntu 18.04 with GCC compiler v7.5.0 and CUDA version 11.4, and a [Miniconda](https://docs.conda.io/en/latest/miniconda.html#system-requirements) distribution with Python 3.8. We recommend using a similar configuration to avoid any possiblem compilation issue.
559
 
560
  ## Installation
561
  First, clone the repository.