ai-snake-lab 0.4.4__tar.gz → 0.4.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/PKG-INFO +1 -1
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/ai/EpsilonAlgo.py +1 -2
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/ai/ReplayMemory.py +4 -4
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/game/GameBoard.py +1 -1
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/game/SnakeGame.py +2 -2
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/pyproject.toml +1 -1
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/LICENSE +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/README.md +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/AISim.py +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/ai/AIAgent.py +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/ai/AITrainer.py +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/ai/models/ModelL.py +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/ai/models/ModelRNN.py +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/constants/DDb4EPlot.py +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/constants/DDef.py +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/constants/DDir.py +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/constants/DEpsilon.py +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/constants/DFields.py +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/constants/DFile.py +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/constants/DLabels.py +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/constants/DLayout.py +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/constants/DModelL.py +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/constants/DModelLRNN.py +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/constants/DReplayMemory.py +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/constants/DSim.py +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/constants/__init__.py +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/game/GameElements.py +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/ui/Db4EPlot.py +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/utils/AISim.tcss +0 -0
- {ai_snake_lab-0.4.4 → ai_snake_lab-0.4.5}/ai_snake_lab/utils/ConstGroup.py +0 -0
@@ -16,9 +16,8 @@ can also be passed in when invoking the main asg.py front end.
|
|
16
16
|
|
17
17
|
import random
|
18
18
|
from random import randint
|
19
|
-
import os, sys
|
20
19
|
|
21
|
-
from constants.DEpsilon import DEpsilon
|
20
|
+
from ai_snake_lab.constants.DEpsilon import DEpsilon
|
22
21
|
|
23
22
|
|
24
23
|
class EpsilonAlgo:
|
@@ -12,12 +12,12 @@ This file contains the ReplayMemory class.
|
|
12
12
|
|
13
13
|
import os
|
14
14
|
from collections import deque
|
15
|
-
import random
|
15
|
+
import random
|
16
16
|
import sqlite3, pickle
|
17
17
|
|
18
|
-
from constants.DReplayMemory import MEM_TYPE
|
19
|
-
from constants.DFile import DFile
|
20
|
-
from constants.DDir import DDir
|
18
|
+
from ai_snake_lab.constants.DReplayMemory import MEM_TYPE
|
19
|
+
from ai_snake_lab.constants.DFile import DFile
|
20
|
+
from ai_snake_lab.constants.DDir import DDir
|
21
21
|
|
22
22
|
|
23
23
|
class ReplayMemory:
|
@@ -14,8 +14,8 @@ import numpy as np
|
|
14
14
|
|
15
15
|
from textual.geometry import Offset
|
16
16
|
|
17
|
-
from game.GameBoard import GameBoard
|
18
|
-
from game.GameElements import Direction
|
17
|
+
from ai_snake_lab.game.GameBoard import GameBoard
|
18
|
+
from ai_snake_lab.game.GameElements import Direction
|
19
19
|
|
20
20
|
# Maximum number of moves. This is multiplied by the length of the snake. The game
|
21
21
|
# ends if game moves > MAX_MOVES * length-of-snake. This avoids enless AI looping behavior.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "ai-snake-lab"
|
3
|
-
version = "0.4.
|
3
|
+
version = "0.4.5"
|
4
4
|
description = "Interactive reinforcement learning sandbox for experimenting with AI agents in a classic Snake Game environment."
|
5
5
|
authors = [{ name = "Nadim-Daniel Ghaznavi", email = "nghaznavi@gmail.com" }]
|
6
6
|
license = { text = "GPL-3.0" }
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|