Skip to content

Commit

Permalink
Update debug launch file plus adding configuration for AIvsAI evaluation
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpalms committed May 7, 2024
1 parent e295ab6 commit a511b9a
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"configurations": [
{
"name": "[Agents] Basic Agents (venv:diambra-arena)",
"type": "python",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/basic/${input:basic_agent}",
"args": [
Expand All @@ -17,7 +17,7 @@
},
{
"name": "[Agents] SB Agents (venv:diambra-arena-sb)",
"type": "python",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/stable_baselines/agent.py",
"args": [
Expand All @@ -31,7 +31,7 @@
},
{
"name": "[Agents] SB3 Examples (venv:diambra-arena-sb3)",
"type": "python",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/stable_baselines3/${input:SB3_example_script}",
"console": "integratedTerminal",
Expand All @@ -41,7 +41,7 @@
},
{
"name": "[Agents] SB3 Training (venv:diambra-arena-sb3)",
"type": "python",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/stable_baselines3/training.py",
"args": [
Expand All @@ -54,7 +54,7 @@
},
{
"name": "[Agents] SB3 Agents (venv:diambra-arena-sb3)",
"type": "python",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/stable_baselines3/agent.py",
"args": [
Expand All @@ -68,7 +68,7 @@
},
{
"name": "[Agents] Ray RL Lib Agents (venv:diambra-arena-ray)",
"type": "python",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/ray_rllib/agent.py",
"args": [
Expand All @@ -89,7 +89,8 @@
"default": "0.0.0.0:50052",
"options": [
{ "label": "Normal", "value": "0.0.0.0:50051" },
{ "label": "Via Proxy Server (Evaluator)", "value": "0.0.0.0:50052" }
{ "label": "Via Proxy Server (Evaluator - 1P / 2P-P1)", "value": "0.0.0.0:50052" },
{ "label": "Via Proxy Server (Evaluator - 2P-P2)", "value": "0.0.0.0:50053" }
],
},
{
Expand Down

0 comments on commit a511b9a

Please sign in to comment.