Skip to content

Commit

Permalink
docs: add instructions for uploading package to online environment (#27)
Browse files Browse the repository at this point in the history
* docs: add instructions for uploading package to online environment

* feat: add instructions for uploading package to online environment

* docs: update online environment URL to correct link

* docs: update online environment URL to correct link

* Update docs/submission.ja.md

Co-authored-by: taikitanaka3 <[email protected]>

* Update docs/submission.ja.md

Co-authored-by: taikitanaka3 <[email protected]>

* Update docs/submission.ja.md

Co-authored-by: taikitanaka3 <[email protected]>

* Update docs/submission.ja.md

Co-authored-by: taikitanaka3 <[email protected]>

* Update docs/submission.ja.md

Co-authored-by: taikitanaka3 <[email protected]>

* Update docs/submission.ja.md

Co-authored-by: taikitanaka3 <[email protected]>

* Update docs/submission.ja.md

Co-authored-by: taikitanaka3 <[email protected]>

* Update docs/submission.ja.md

Co-authored-by: Takagi, Isamu <[email protected]>

* Update docs/submission.ja.md

Co-authored-by: Takagi, Isamu <[email protected]>

* Update submission.ja.md file paths to use relative paths

* Update submission.ja.md file paths to use relative paths

* style: remove white space and url

* style: fix lint

* style: lint all

* style: lint remain

---------

Co-authored-by: taikitanaka3 <[email protected]>
Co-authored-by: Takagi, Isamu <[email protected]>
Co-authored-by: taikitanaka3 <[email protected]>
  • Loading branch information
4 people authored Jun 24, 2024
1 parent 489ed99 commit dcca941
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 0 deletions.
Binary file added docs/images/siteImage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
84 changes: 84 additions & 0 deletions docs/submission.ja.md
Original file line number Diff line number Diff line change
@@ -1 +1,85 @@
# 提出

## オンライン環境

本大会では、シミュレーターと自動採点機能を備えたオンライン環境を使用して採点が行われます。以下の手順に従って、作成したパッケージ群をオンライン環境にアップロードしてください。アップロード後、シミュレーションが自動で開始され、結果が表示されます。

### オンライン環境へのアップロード手順

1. 動作確認

1.1. 事前準備

`aichallenge_submit`を圧縮し、結果出力用のフォルダを生成します。

```bash
./create_submit_file.bash
```

1.2. Dockerイメージのビルド

```bash
./docker_build.sh eval
```

1.3. Dockerコンテナの起動

起動後、自動でAutowareが立ち上がり、自動運転が開始されます。

- GPU版AWSIMを使用している場合:

```bash
./docker_run.sh eval gpu
```

- CPU版AWSIMを使用している場合:

```bash
./docker_run.sh eval cpu
```

1.4. `result.json`の確認

評価完了後、`output/latest`フォルダに以下のファイルが格納されます。

- `autoware.log`
- `rosbag2_autoware`
- `capture`
- `result-summary.json`
- `result-details.json`

2. オンライン環境にアップロード

<img src="./images/siteImage.png" width="100%">

[オンライン環境]<!--(https://aichallenge-board.jsae.or.jp/)-->にアクセスし、緑色の「UPLOAD」ボタンから`aichallenge_submit.tar.gz`をアップロードしてください。アップロード後、ソースコードのビルドとシミュレーションが順に実施されます。

- 正常に終了した場合、採点完了と表示され、`result.json`がダウンロードでき、各ラップタイムが表示されます。
- シナリオ実行後、launchに失敗した等でスコアが出力されていない場合は「結果無し」と表示されます。この場合、サーバーサイドでの内部エラーの可能性があるため、再アップロードをお願いします。問題が続く場合はお問い合わせください。
- ビルドに失敗した場合は「ビルド失敗」と表示されます。手順の確認後、再度アップロードしてください。
- ランキングはこれまでの採点での最高点が適用されます。
- 採点実行中は新たなソースのアップロードはできません。
- アップロードは1日に10回まで可能で、日本時間0時に回数がリセットされます。

3. 結果の確認

オンライン環境で評価が終わると、`result.json`がダウンロード可能になります。ダウンロードして結果を確認してください。

4. 結果なしの場合

4.1. packageの依存関係に問題がないか確認

使用言語に応じて、`package.xml`、`setup.py`、または`CMakeLists.txt`に依存関係の漏れがないか確認してください。

4.2. dockerの確認

以下のコマンドでDocker内を確認し、必要なディレクトリに正しくインストール・ビルドされているか確認してください。

```bash
docker run -it aichallenge-2024-eval:latest /bin/bash
```

確認するディレクトリ:

- `/aichallenge/workspace/*`
- `/autoware/install/*`

0 comments on commit dcca941

Please sign in to comment.