Skip to content
Snippets Groups Projects
Select Git revision
  • 9d5b086c2a8339996237a6473ed2ea3eba186702
  • develop default
  • Blockage
  • GuidoBasten
  • Anticipation_Model
  • tgf19ts
  • 313-waiting-behaviour
  • tgf19mc
  • wa_testing
  • trajectories
  • 287-waitingarea
  • 320-one-sided-closed-doors
  • kapakrit-anna
  • 311-improve-ff
  • 306-schedule-for-was
  • 294-events
  • 307-temp-close
  • 302-external-files
  • split_files
  • 298-sources
  • 293-statistics-crossings
  • v0.8.4
  • v0.8.3
  • v0.8.2
  • v0.8.1
  • v0.8
  • v0.7
  • v0.6
  • v0.5-alpha
  • v0.5-alpha1
  • v0.4
31 results

RoutingEngine.cpp

Blame
  • run.sh 1.06 KiB
    #!/bin/bash
    
    # Please edit this script
    # it should create the following archives:
    # 1) evaluation_script.zip (already done, no need to modify)
    # 2) challenge_config.zip (arleady done, no need to modify), this is the file you upload to the challenge frontend to create a new challenge
    # 3) data_public_leaderboard_phase.zip  (archive to download for the users for the public leaderboard phase)
    # 4) data_private_leaderboard_phase.zip (archive to download for the users for the private leaderboard phase)
    
    # Remove already existing zip files
    rm -f *.zip *.tar.gz
    
    # Create new zip configuration according the updated code
    zip -r -j evaluation_script.zip evaluation_script/*  -x "*.DS_Store"
    zip -r challenge_config.zip *  -x "*.DS_Store" -x "evaluation_script/*" -x "*.git" -x "run.sh" -x "raw/*" -x "annotations/train/*" -x "annotations/valid/*" -x "annotations/test/*"
    
    cd annotations
    zip -r -j ../data_public_leaderboard_phase.zip train.csv train/ valid/ submission_valid.csv README.md
    zip -r -j ../data_private_leaderboard_phase.zip test test.csv submission_test.csv README.md
    cd ..