File size: 15,669 Bytes
7b5e094 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 |
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using UnityEngine;
[Serializable]
public enum Action
{
Up,
Down,
Left,
Right,
None
}
[Serializable]
public class Agent : MonoBehaviour
{
#region Fields
[SerializeField]
private int _step;
[SerializeField]
private int _iteration;
[SerializeField]
private int _currentGridX;
[SerializeField]
private int _currentGridY;
[SerializeField]
private (int,int)? _previousState = null;
[SerializeField]
private Action? _previousAction = null;
[SerializeField]
private float? _previousReward = null;
[SerializeField]
private GUIController _gUIController;
[SerializeField]
[Range(0f, 1f)]
private float _learningRate;
[SerializeField]
[Range(0f, 1f)]
private float _discountingFactor;
//For exploration(shorten gain vs curiosity)
[SerializeField]
private int _mimumumStateActionPairFrequencies;
[SerializeField]
private float _estimatedBestPossibleRewardValue;
[SerializeField]
private Coroutine _waitThenActionCoroutine;
[SerializeField]
private bool _isPause;
[SerializeField]
[Range(0.001f, 30f)]
private float _restTime;
[SerializeField]
private GameObject _roadBlock;
[SerializeField]
private GameObject _Goodies;
public int Step { get => _step; set => _step = value; }
public int Iteration { get => _iteration; set => _iteration = value; }
public int CurrentGridX { get => _currentGridX; set => _currentGridX = value; }
public int CurrentGridY { get => _currentGridY; set => _currentGridY = value; }
public (int, int)? PreviousState { get => _previousState; set => _previousState = value; }
public Action? PreviousAction { get => _previousAction; set => _previousAction = value; }
public float? PreviousReward { get => _previousReward; set => _previousReward = value; }
public GUIController GUIController { get => _gUIController; set => _gUIController = value; }
public float LearningRate { get => _learningRate; set => _learningRate = value; }
public float DiscountingFactor { get => _discountingFactor; set => _discountingFactor = value; }
public int MimumumStateActionPairFrequencies { get => _mimumumStateActionPairFrequencies; set => _mimumumStateActionPairFrequencies = value; }
public float EstimatedBestPossibleRewardValue { get => _estimatedBestPossibleRewardValue; set => _estimatedBestPossibleRewardValue = value; }
public Coroutine WaitThenActionCoroutine { get => _waitThenActionCoroutine; set => _waitThenActionCoroutine = value; }
public bool IsPause { get => _isPause; set => _isPause = value; }
public float RestTime { get => _restTime; set => _restTime = value; }
public GameObject RoadBlock { get => _roadBlock; set => _roadBlock = value; }
public GameObject Goodies { get => _Goodies; set => _Goodies = value; }
public (int,int) StartState;
public (int,int) FinalState = (7,9);
public int StartX;
public int StartY;
public int GrizSizeX;
public int GrizSizeY;
public Dictionary<((int,int),Action),float> StateActionPairQValue { get; set; }
//public Dictionary<((int,int), Action),int> StateActionPairFrequencies;
public Dictionary<(int, int), float> StateRewardGrid { get; set; }
public Dictionary<Action, System.Action> ActionDelegatesDictonary { get; set; }
#endregion
#region Q_Learning_Agent
private Action Q_Learning_Agent((int,int) currentState, float rewardSignal)
{
UpdateStep();
if (PreviousState == FinalState)
{
StateActionPairQValue[(PreviousState.Value, Action.None)] = rewardSignal;
}
if (PreviousState.HasValue)
{
((int, int), Action) stateActionPair = (PreviousState.Value, PreviousAction.Value);
//Had issue
//StateActionPairFrequencies[stateActionPair]++;
//StateActionPairQValue[stateActionPair] += LearningRate * (StateActionPairFrequencies[stateActionPair]) * (PreviousReward.Value +
// DiscountingFactor * MaxStateActionPairQValue(ref currentState) - StateActionPairQValue[stateActionPair]);
StateActionPairQValue[stateActionPair] += LearningRate * (PreviousReward.Value + (DiscountingFactor * MaxStateActionPairQValue(ref currentState)) - StateActionPairQValue[stateActionPair]);
}
PreviousState = currentState;
PreviousAction = ArgMaxActionExploration(ref currentState);
PreviousReward = rewardSignal;
return PreviousAction.Value;
}
//Page 844
private float MaxStateActionPairQValue(ref (int, int) currentState)
{
if (currentState == FinalState)
return StateActionPairQValue[(currentState, Action.None)];
float max = float.NegativeInfinity;
foreach (Action action in SuffledActions())
{
max = Mathf.Max(StateActionPairQValue[(currentState, action)], max);
}
return max;
}
private static Action[] SuffledActions()
{
Action[] actions = new Action[4];
int i = 0;
foreach (Action action in Enum.GetValues(typeof(Action)))
{
if (action != Action.None)
{
actions[i] = action;
i++;
}
}
System.Random random = new System.Random();
return actions.OrderBy(_ => random.Next()).ToArray();
}
#region Conflicts with the wall check and out of bound check
//private Action ArgMaxActionExploration(ref (int, int) currentState)
//{
// if (currentState == FinalState)
// return Action.None;
// Action argMaxAction = Action.None;
// float max = float.NegativeInfinity;
// foreach (Action action in SuffledActions())
// {
// if (action == Action.None)
// continue;
// if (CurrentGridX - 1 < 0 && action == Action.Left)
// {
// continue;
// }
// else if (CurrentGridX + 1 >= GrizSizeX && action == Action.Right)
// {
// continue;
// }
// else if (CurrentGridY + 1 >= GrizSizeY && action == Action.Up)
// {
// continue;
// }
// else if (CurrentGridY - 1 < 0 && action == Action.Down)
// {
// continue;
// }
// else
// {
// float value = ExplorationFunction(ref currentState, action);
// if (value >= max)
// {
// max = value;
// argMaxAction = action;
// }
// }
// }
// return argMaxAction;
//}
//Give the agent the option to have the incentives to explore more?
//Page 842, this function is not well defined apparently
//private float ExplorationFunction(ref (int, int) currentState, Action choice)
//{
// if (StateActionPairFrequencies[(currentState, choice)] < MimumumStateActionPairFrequencies)
// {
// return EstimatedBestPossibleRewardValue;
// }
// return StateActionPairQValue[(currentState, choice)];
//}
#endregion
private Action ArgMaxActionExploration(ref (int, int) currentState)
{
if (currentState == FinalState)
return Action.None;
Action argMaxAction = Action.None;
float max = float.NegativeInfinity;
foreach (Action action in SuffledActions())
{
float value = StateActionPairQValue[(currentState, action)];
if (value >= max)
{
max = value;
argMaxAction = action;
}
}
return argMaxAction;
}
private void Left()
{
transform.position -= new Vector3(1f, 0f, 0f);
CurrentGridX--;
WaitThenActionCoroutine = StartCoroutine(WaitThenAction(RestTime, (CurrentGridX, CurrentGridY)));
}
private void Right()
{
transform.position += new Vector3(1f, 0f, 0f);
CurrentGridX++;
WaitThenActionCoroutine = StartCoroutine(WaitThenAction(RestTime, (CurrentGridX, CurrentGridY)));
}
private void Up()
{
transform.position += new Vector3(0f, 0f, 1f);
CurrentGridY++;
WaitThenActionCoroutine = StartCoroutine(WaitThenAction(RestTime, (CurrentGridX, CurrentGridY)));
}
private void Down()
{
transform.position -= new Vector3(0f, 0f, 1f);
CurrentGridY--;
WaitThenActionCoroutine = StartCoroutine(WaitThenAction(RestTime, (CurrentGridX, CurrentGridY)));
}
private void None()
{
ResetAgentToStart();
UpdateIteration();
WaitThenActionCoroutine = StartCoroutine(WaitThenAction(RestTime, (CurrentGridX, CurrentGridY)));
}
private void ResetAgentToStart()
{
transform.position = new Vector3(StartState.Item1, 1f, StartState.Item2);
CurrentGridX = StartState.Item1;
CurrentGridY = StartState.Item2;
Grid.instance.ClearColors();
}
private IEnumerator WaitThenAction(float waitTime, (int,int) GridCoordinate)
{
//For pausing the agent
while(IsPause)
{
yield return null;
}
yield return new WaitForSeconds(waitTime);
ActionDelegatesDictonary[Q_Learning_Agent(GridCoordinate, StateRewardGrid[GridCoordinate])]();
}
#endregion
#region Unity
private void Start()
{
FinalState = Grid.instance.goalPosition;
//Function pointer in C#
ActionDelegatesDictonary = new Dictionary<Action, System.Action>();
ActionDelegatesDictonary[Action.Left] = Left;
ActionDelegatesDictonary[Action.Right] = Right;
ActionDelegatesDictonary[Action.Up] = Up;
ActionDelegatesDictonary[Action.Down] = Down;
ActionDelegatesDictonary[Action.None] = None;
StartX = UnityEngine.Random.Range(0, GrizSizeX);
StartY = UnityEngine.Random.Range(0, GrizSizeY);
Initialized();
}
private void Initialized()
{
PreviousAction = null;
PreviousReward = null;
PreviousState = null;
Step = 0;
Iteration = 0;
transform.position = new Vector3(StartX, 1f, StartY);
StartState = (StartX, StartY);
CurrentGridX = StartState.Item1;
CurrentGridY = StartState.Item2;
StateActionPairQValue = new Dictionary<((int, int), Action), float>();
//StateActionPairFrequencies = new Dictionary<((int, int), Action), int>();
StateRewardGrid = new Dictionary<(int, int), float>();
for (int i = 0; i < GrizSizeX; i++)
{
for (int j = 0; j < GrizSizeY; j++)
{
foreach (Action action in Enum.GetValues(typeof(Action)))
{
StateActionPairQValue[((i, j), action)] = 0;
//StateActionPairFrequencies[((i, j), action)] = 0;
}
StateRewardGrid[(i, j)] = 0f;
}
}
StateRewardGrid[FinalState] = 100f;
for (int i = 0; i < GrizSizeX; i++)
{
for (int j = 0; j < GrizSizeY; j++)
{
if (i != StartState.Item1 && i != FinalState.Item1 && j != StartState.Item2 && j != FinalState.Item2)
{
float random = UnityEngine.Random.Range(0f, 1f);
if (random <= 0.3f)
{
if (random <= 0.2f)
{
Instantiate(RoadBlock, new Vector3(i, 0.5f, j), Quaternion.identity);
if (i + 1 < GrizSizeX)
{
StateActionPairQValue[((i + 1, j), Action.Left)] = float.NegativeInfinity;
}
if (i - 1 >= 0)
{
StateActionPairQValue[((i - 1, j), Action.Right)] = float.NegativeInfinity;
}
if (j + 1 < GrizSizeY)
{
StateActionPairQValue[((i, j + 1), Action.Down)] = float.NegativeInfinity;
}
if (j - 1 >= 0)
{
StateActionPairQValue[((i, j - 1), Action.Up)] = float.NegativeInfinity;
}
}
//else
//{
// Instantiate(Goodies, new Vector3(i, 0.5f, j), Quaternion.identity);
// StateRewardGrid[(i, j)] = 5f;
//}
}
}
if (i == 0 || j == 0 || i == GrizSizeX-1 || j == GrizSizeY-1)
{
StateRewardGrid[(i, j)] = 0f;
//Prevent the agent go out of bound
if(i == 0)
{
StateActionPairQValue[((i, j), Action.Left)] = float.NegativeInfinity;
}
if(j == 0)
{
StateActionPairQValue[((i, j), Action.Down)] = float.NegativeInfinity;
}
if(i == GrizSizeX-1)
{
StateActionPairQValue[((i, j), Action.Right)] = float.NegativeInfinity;
}
if(j == GrizSizeY-1)
{
StateActionPairQValue[((i, j), Action.Up)] = float.NegativeInfinity;
}
}
}
}
}
private void ReInitialized()
{
PreviousAction = null;
PreviousReward = null;
PreviousState = null;
Step = 0;
Iteration = 0;
transform.position = new Vector3(StartX, 1f, StartY);
StartState = (StartX, StartY);
CurrentGridX = StartState.Item1;
CurrentGridY = StartState.Item2;
//StateActionPairFrequencies = new Dictionary<((int, int), Action), int>();;
for (int i = 0; i < GrizSizeX; i++)
{
for (int j = 0; j < GrizSizeY; j++)
{
foreach (Action action in Enum.GetValues(typeof(Action)))
{
if(!(StateActionPairQValue.ContainsKey(((i, j), action)) && StateActionPairQValue[((i, j), action)] == float.NegativeInfinity))
{
StateActionPairQValue[((i, j), action)] = 0;
//StateActionPairFrequencies[((i, j), action)] = 0;
}
}
}
}
}
private void Update()
{
Grid.instance.UpdateColor(CurrentGridX, CurrentGridY);
}
public void StartExploring()
{
UpdateIteration();
WaitThenActionCoroutine = StartCoroutine(WaitThenAction(1f, StartState));
}
public void Stop()
{
ReInitialized();
StopCoroutine(WaitThenActionCoroutine);
}
private void UpdateStep()
{
Step++;
GUIController?.UpdateStepText(Step.ToString());
}
private void UpdateIteration()
{
Iteration++;
GUIController?.UpdateInterationText(Iteration.ToString());
}
#endregion
} |