1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

自動運転シミュレーション その4

Last updated at Posted at 2023-10-01

概要

自動運転シミュレーションを開発している。
server,client方式に変更する。
構想編。

理由

agentの開発をelixirで、やりたいから。

方針

  • プラットホームは、plunker。
  • 言語は、javascript。
  • 通信は、websocket。
  • agentがserver。
  • やり取りは、json

server->client

{
    "observation": {
        "s0": "0.78", 
        "s1": "0.56", 
        "s2": "0.12", 
        "s3": "0.09", 
        "s4": "0.08"
    },
    "reward": "1.0",
    "done": "false"
}

client->server

{
"action": 2
}
  • ポート番号は、50002

以上。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?