Skip to content
Snippets Groups Projects
Select Git revision
  • 2657d166cdc62a8e52a38c332efff8c9ce90f49e
  • main default protected
  • airflow-2.7.0 protected
  • airflow253 protected
  • air251
  • test_docker_op
  • airflow225
  • mptest
  • https-deployment
  • datacat_integration protected
  • datacatalog-integration
  • stable-2.2.2 protected
  • stable-2.2.1 protected
  • stable-2.2.0 protected
  • stable-2.1.4 protected
  • stable-2.1.3 protected
  • stable-2.1.2 protected
  • stable-2.1.1 protected
  • stable-2.1.0 protected
  • stable-2.0.2 protected
  • stable-2.0.1 protected
  • stable-2.0.0 protected
  • stable-1.0.1 protected
  • stable-1.0 protected
  • stable-0.1 protected
25 results

taskflow.py

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 ..