0
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?

robloxでassistant その173

Last updated at Posted at 2025-03-08

概要

robloxでassistantやってみた。
ニューラルネットワーク、見つけたのでやってみた。

参考にしたページ

写真

image.png

調査

agentが全体でtrain
envはgame
actorはmodel
modelはnn.Sequential
入力01で goalUp goalDown goalRight goalLeft dangerUp dangerDown dangerRight dangerLeft
入力8、隠れ層256、出力4
オプチマイザーは、SGD

  • nn.Linear(8, 256)
  • nn.ReLU()
  • nn.Linear(256, 4)
  • nn.Softmax()

出力01で UP DOWN RIGHT LEFT
50回でupdate、resetボタンでストップ
ウェイト、バイアスの出力無くて、DataStoreServiceに保存
やる程、賢くなる。

以上。

0
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
0
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?