diff --git a/index.html b/index.html index 960a655..60aaa14 100644 --- a/index.html +++ b/index.html @@ -141,16 +141,6 @@

Ensembling Prioritized Hybrid Policies - - -
-
-
- EPH Overview -
-
-
- @@ -188,10 +178,12 @@

Abstract

+
-

Contributions

+

Contributions

+ EPH Overview

We propose EPH (Ensembling Prioritized Hybrid Policies), a Q-learning-based MARL-MAPF solver with communication. Our key contributions include:

  1. Selective Communication: Enhanced communication block using Transformer-inspired improvements for better information extraction.
  2. @@ -205,8 +197,8 @@

    Contributions

    -

    EPH

    +

    EPH

    EPH. EPH can be divided into two parts, as shown in the above picture. The upper part shows the neural network structure of EPH, and how local partial observations are transformed into Q vectors. The lower part shows that instead of getting action by directly applying \( a^t_i = \text{argmax} (q^t_i) \), several inference techniques, as mentioned in the Contributions, can be used to improve actions quality and avoid collisions.

    Training Method. The Q value for agent \(i\) is obtained via:

    @@ -240,8 +232,8 @@

    EPH

    -

    Inference Techniques

    +

    Inference Techniques

    Hybrid Expert Guidance

    @@ -268,8 +260,8 @@

    Inference Techniques

    -

    Experimental Results

    +

    Experimental Results

    Success Rate @@ -327,9 +319,12 @@

    Videos

    -
    -
    +
    +
    +
    +

    BibTeX

    + If you find this work useful, please consider citing it. We will appreciate it!
    @inproceedings{tang2024eph,
             title={Ensembling Prioritized Hybrid Policies for Multi-agent Pathfinding},
    @@ -350,18 +345,48 @@ 

    BibTeX

    Copy to clipboard
    +
    +
    - - + + diff --git a/static/css/code.css b/static/css/code.css index eb28a75..505307f 100644 --- a/static/css/code.css +++ b/static/css/code.css @@ -4,7 +4,7 @@ border-radius: 6px; padding: 1rem 2.5rem 0rem 1rem; margin-top: 1rem; - border: 1px solid #f3f3f3; + border: 1px solid #000000; overflow-x: auto; overflow-y: hidden; } diff --git a/static/css/index.css b/static/css/index.css index 3a68e37..612208c 100644 --- a/static/css/index.css +++ b/static/css/index.css @@ -235,4 +235,46 @@ img { height: 75vh; /* Set a large fixed height for larger screens */ padding-top: 0; /* Remove padding-top for larger screens */ } -} \ No newline at end of file +} + + +.logos-section { + padding: 2em 0; + background-color: #ffffff; /* Optional: Add background color for the section */ +} + + +.logos-container { + display: flex; + justify-content: space-between; + align-items: center; + flex-wrap: nowrap; +} + +.logo-item { + flex: 1; + display: flex; + justify-content: center; + padding: 0 1em; +} + +.logo-item img { + max-height: 100px; + max-width: 100%; + object-fit: contain; + transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition for transform and shadow */ + will-change: transform, filter; /* Optimizes animation performance */ + filter: none; /* No shadow when not hovered */ +} + +/* Hover effect with pop-up and shadow */ +.logo-item:hover img { + transform: scale(1.1); /* Slightly enlarge the logo */ + filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.4)); /* Only add shadow on hover */ +} + +/* Optional: Press effect on click */ +.logo-item:active img { + transform: scale(1.05); /* Slight press-down effect */ + filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.2)); /* Lighter shadow on click */ +} diff --git a/static/images/logos/IROS-24-Logo.jpg b/static/images/logos/IROS-24-Logo.jpg new file mode 100644 index 0000000..a053bfa Binary files /dev/null and b/static/images/logos/IROS-24-Logo.jpg differ diff --git a/static/images/logos/ai4co.png b/static/images/logos/ai4co.png new file mode 100644 index 0000000..1392466 Binary files /dev/null and b/static/images/logos/ai4co.png differ diff --git a/static/images/logos/iros2024.png b/static/images/logos/iros2024.png new file mode 100644 index 0000000..788c5f9 Binary files /dev/null and b/static/images/logos/iros2024.png differ diff --git a/static/images/logos/kaist_logo.png b/static/images/logos/kaist_logo.png new file mode 100644 index 0000000..6bdfe23 Binary files /dev/null and b/static/images/logos/kaist_logo.png differ diff --git a/static/images/logos/omelet.png b/static/images/logos/omelet.png new file mode 100644 index 0000000..414ee6c Binary files /dev/null and b/static/images/logos/omelet.png differ