📙
StarCraft2-RL-Agent-Tutorial
  • Starcraft2-RL-Agent-Tutorial
  • handling-pysc2
    • Basic about pysc2
      • Welcome to pysc2
      • How to select your SCV!?
      • Build Marine! and Attack!
  • Mini-Game environment
    • CollectMineralShards
    • DefeatZerglingsAndBanelings
  • Solve-Mini-Game
    • Mini-Game
      • CollectMineralShards
      • CollectMineralShards backup
  • Advenced-Handling-Pysc2
  • Defeat-AI
    • Untitled
      • Untitled
Powered by GitBook
On this page

Was this helpful?

  1. Solve-Mini-Game
  2. Mini-Game

CollectMineralShards

이번장에서는 CollectMineralShards를 해결해보겠습니다. 위의 Mini-Game environment 섹션에서 CollectMineralShards를 풀기위한 정의를 그대로 가져와보겠습니다.

  • Environment Definition :

    • State : 2 * 32(screen_size) * 32(screen_size)

      • feature_screen : 2 * 32 * 32

        • is_selected : 1 * 32 * 32

        • player_relative : 1 * 32 * 32

    • Action :

      • screen : 1 * 32 * 32

    • Reward :

      • mineral : 0 ~ n (미네랄 한개당 1)

  • Agent Definition :

    • Algorithm :

      • PPO + GAE

    • Network :

      • CNN + MLP

j

j

j

j

j

j

j

PreviousMini-GameNextCollectMineralShards backup

Last updated 4 years ago

Was this helpful?