templates/home/callCompetitions.html.twig line 1

Open in your IDE?
  1. {% extends 'baseFront.html.twig' %}
  2. {% block title %}Hello HomeController!{% endblock %}
  3. {% block body %}
  4.     <main>
  5.         <div class="container px-1 ">
  6.             <section id="compcall">
  7.                 <h1>Call for Competition Proposal</h1>
  8.                 <p>The ICPR 2026 Organizing Committee invites proposals for competitions that aim at evaluating the performance of
  9.                     algorithms and methods related to pattern recognition. You are cordially invited to submit a proposal, that
  10.                     should contain the following information: </p>
  11.                 <ul>
  12.                     <li> Contest title and abstract </li>
  13.                     <li> A brief description of the competition, including what the particular task under evaluation is, why this
  14.                         competition is of interest to the ICPR community, and the expected number of participants </li>
  15.                     <li> An outline of the competition schedule </li>
  16.                     <li> Description of the dataset to be used, and the evaluation process and metrics for submitted methods </li>
  17.                     <li> The names, contact information, and brief CVs of the competition organizers, outlining previous experience
  18.                         in performance evaluation and/or organizing competitions </li>
  19.                 </ul>
  20.                 <p> The following rules shall apply to the accepted Competitions </p>
  21.                 <ul>
  22.                     <li>The name of the competition must be standardized by starting with "ICPR 2026" e.g. "ICPR 2026 Competition on
  23.                         …" or "ICPR 2026 … Competition. </li>
  24.                     <li> Datasets used in the competitions must be made available after the end of the competitions. Specifically,
  25.                         the training data and ground truth must be publicly released and there must be a way to evaluate performance
  26.                         on a test set. This could take the form of an evaluation server, or the test data, ground truth, and
  27.                         evaluation script could be made publicly available. </li>
  28.                     <li> Evaluation methodologies and metrics used must be described in detail so that results can be replicated
  29.                         later. Evaluation scripts must be released afterwards. </li>
  30.                     <li> Each competition has to be presented with a poster at a prominent place at the conference venue, and some
  31.                         good competitions may be selected for oral presentation during ICPR 2026. </li>
  32.                     <li> Competitions must have a sufficient number of participants (greater or equal to 3) to be able to draw
  33.                         meaningful conclusions. </li>
  34.                     <li> Reports (full papers) on each competition will be reviewed and, if accepted (the competition ran according
  35.                         to plan, attracted a minimum level of participation and is appropriately described), will be published in the
  36.                         ICPR 2026 conference proceedings. </li>
  37.                     <li> Participants should not have access to the ground-truth test dataset until the end of the competition. The
  38.                         evaluation should be done by the organizers. </li>
  39.                 </ul>
  40.                 <h2> Submission Guidelines &amp; Inquiries </h2>
  41.                 <p>All proposals should be submitted by electronic mail to the
  42.                     Competition Chairs (Alceu de Souza Brito Jr, Made Windu Antara
  43.                     Kesiman, Thierry Paquet) via: <a href="mailto:competition@icpr2026.org">competition@icpr2026.org</a>.
  44.                     We encourage competition proposals with a solid plan to remain active
  45.                     and challenging for the community over and above ICPR 2026. For any
  46.                     inquiries you may have regarding the competitions, please contact us
  47.                     via above email.</p>
  48.                 <table>
  49.                     <tbody><tr>
  50.                         <th colspan="2">Important dates (CET)</th>
  51.                     </tr>
  52.                     <tr>
  53.                         <td class="date">November 1st, 2025</td>
  54.                         <td>Competition Proposal Due</td>
  55.                     </tr>
  56.                     <tr>
  57.                         <td class="date">December 1st, 2025</td>
  58.                         <td>Competition Acceptance Notification</td>
  59.                     </tr>
  60.                     <tr>
  61.                         <td class="date">December 15, 2025</td>
  62.                         <td>Individual Competition Websites are Live</td>
  63.                     </tr>
  64.                     <tr>
  65.                         <td class="date">March 1st, 2026</td>
  66.                         <td>Deadline for competition participants</td>
  67.                     </tr>
  68.                     <tr>
  69.                         <td class="date">April 1st, 2026</td>
  70.                         <td>Initial Submission of Competition Reports Deadline</td>
  71.                     </tr>
  72.                     <tr>
  73.                         <td class="date">May, 2026</td>
  74.                         <td>Camera-Ready Papers Due</td>
  75.                     </tr>
  76.                     <tr>
  77.                         <td class="date">June, 2026</td>
  78.                         <td>Communicate Winners to Chairs</td>
  79.                     </tr>
  80.                     <tr>
  81.                         <td class="date">August 17–21, 2026</td>
  82.                         <td>Presentation at ICPR Conference</td>
  83.                     </tr>
  84.                     </tbody></table>
  85.                 <h2>Flyers of Call for Competition </h2>
  86.                 The main flyer of the call for competition is available here:
  87.                 <div class="text-center">
  88.                     <a href="https://icpr2026.org/files/callForCompetitionProposal.pdf">
  89.                         <picture class="flyer-container">
  90.                             <!-- Version WebP -->
  91.                             <source srcset="{{ asset('assetFront/images/flyerCompetitionProposal.webp') }}" type="image/webp">
  92.                             <!-- Fallback PNG -->
  93.                             <img src="{{ asset('assetFront/images/flyerCompetitionProposal.webp') }}" alt="ICPR 2026 Conference flyer Call for competition preview" class="img-fluid flyer">
  94.                         </picture>
  95.                     </a>
  96.                 </div>
  97.             </section></div>
  98.     </main>
  99. {% endblock %}