Upload SUBMISSION_DESC.md with huggingface_hub
Browse files- SUBMISSION_DESC.md +40 -6
SUBMISSION_DESC.md
CHANGED
|
@@ -1,8 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
Quick Start: Running husim_server Locally
|
| 2 |
|
| 3 |
This guide walks you through how to run the husim_server locally. If you can complete this setup on your machine, the same approach will work in the competition environment.
|
| 4 |
|
| 5 |
-
1. Clone the Repository
|
| 6 |
|
| 7 |
Clone server code:
|
| 8 |
|
|
@@ -10,7 +43,7 @@ Clone server code:
|
|
| 10 |
git clone --branch hf-competitions --single-branch git@github.com:longxiaofei/HUGSIM.git
|
| 11 |
```
|
| 12 |
|
| 13 |
-
2. Build the Docker Image
|
| 14 |
|
| 15 |
Navigate to the project directory and build the Docker image:
|
| 16 |
|
|
@@ -18,7 +51,7 @@ Navigate to the project directory and build the Docker image:
|
|
| 18 |
docker build . -f ./docker/web_server_dockerfile -t hugsim_server:local
|
| 19 |
```
|
| 20 |
|
| 21 |
-
3. Run the Docker Container
|
| 22 |
|
| 23 |
Run the server locally on port 7860:
|
| 24 |
|
|
@@ -27,7 +60,7 @@ docker run -d -p 7860:7860 --name hugsim_server hugsim_server:local
|
|
| 27 |
```
|
| 28 |
|
| 29 |
|
| 30 |
-
4. Install the Client
|
| 31 |
|
| 32 |
Install the hugsim_client package:
|
| 33 |
|
|
@@ -36,7 +69,7 @@ pip install --upgrade hugsim_client
|
|
| 36 |
```
|
| 37 |
|
| 38 |
|
| 39 |
-
5. Using the Client
|
| 40 |
|
| 41 |
```python
|
| 42 |
from hugsim_client import HugsimClient
|
|
@@ -53,4 +86,5 @@ client.reset_env()
|
|
| 53 |
client.execute_action(xxx)
|
| 54 |
```
|
| 55 |
|
| 56 |
-
The full example: [ltf_e2e.py](https://huggingface.co/Libra-1995/navsim/blob/main/ltf_e2e.py)
|
|
|
|
|
|
| 1 |
+
4. 提供local dev的docker image和指导文档
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
7. 用户报名可以修改excel和team name,正式提交后不能修改excel,可以修改team name,报名时添加一列信息:email。
|
| 5 |
+
|
| 6 |
+
|
| 7 |
+
|
| 8 |
+
-------------------------
|
| 9 |
+
|
| 10 |
+
1. LeaderBoard需不需要分private、public?
|
| 11 |
+
直接默认使用team历史提交最高分作为LeaderBoard上的分数。
|
| 12 |
+
|
| 13 |
+
2. 一次提交如果同时提交多个场景,目前每个场景有各自的分数,LeaderBoard是分场景排名还是计算一个总分?
|
| 14 |
+
LeaderBoard rc和hdscore平均
|
| 15 |
+
后续可以提供多个场景得分的json打包下载。
|
| 16 |
+
|
| 17 |
+
3. 提交失败,可以让参赛者看到报错信息。
|
| 18 |
+
报错信息。使用api不用sdk
|
| 19 |
+
|
| 20 |
+
5. 是否允许参赛者能够看到提交完成的其他数据(如video)
|
| 21 |
+
不要
|
| 22 |
+
|
| 23 |
+
6. 报名后,由我们自己控制什么时候可以开始提交。
|
| 24 |
+
team_id白名单
|
| 25 |
+
|
| 26 |
+
8. 每次活跃后,超过某个阈值就Shutdown client,20s。
|
| 27 |
+
暂时不做
|
| 28 |
+
|
| 29 |
+
9. 仿真器本身添加总的步长。
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
|
| 34 |
Quick Start: Running husim_server Locally
|
| 35 |
|
| 36 |
This guide walks you through how to run the husim_server locally. If you can complete this setup on your machine, the same approach will work in the competition environment.
|
| 37 |
|
| 38 |
+
**1. Clone the Repository**
|
| 39 |
|
| 40 |
Clone server code:
|
| 41 |
|
|
|
|
| 43 |
git clone --branch hf-competitions --single-branch git@github.com:longxiaofei/HUGSIM.git
|
| 44 |
```
|
| 45 |
|
| 46 |
+
**2. Build the Docker Image**
|
| 47 |
|
| 48 |
Navigate to the project directory and build the Docker image:
|
| 49 |
|
|
|
|
| 51 |
docker build . -f ./docker/web_server_dockerfile -t hugsim_server:local
|
| 52 |
```
|
| 53 |
|
| 54 |
+
**3. Run the Docker Container**
|
| 55 |
|
| 56 |
Run the server locally on port 7860:
|
| 57 |
|
|
|
|
| 60 |
```
|
| 61 |
|
| 62 |
|
| 63 |
+
**4. Install the Client**
|
| 64 |
|
| 65 |
Install the hugsim_client package:
|
| 66 |
|
|
|
|
| 69 |
```
|
| 70 |
|
| 71 |
|
| 72 |
+
**5. Using the Client**
|
| 73 |
|
| 74 |
```python
|
| 75 |
from hugsim_client import HugsimClient
|
|
|
|
| 86 |
client.execute_action(xxx)
|
| 87 |
```
|
| 88 |
|
| 89 |
+
The full example: [ltf_e2e.py](https://huggingface.co/Libra-1995/navsim/blob/main/ltf_e2e.py)
|
| 90 |
+
|