fixing master

This commit is contained in:
barmal4 2021-06-22 22:14:46 +02:00
parent 7be420781b
commit 53fd4d9cc8
842 changed files with 5 additions and 7 deletions

6
.gitignore vendored
View File

@ -1,3 +1,3 @@
__pycache__
Engine\\__pycache__
venv
__pycache__/
Engine/__pycache__
venv/

View File

@ -10,7 +10,7 @@ class DecisionTree:
def __init__(self, doCreation):
self.data = pd.read_csv("C:\\Users\\Konrad\\PycharmProjects\\Projekt_AI-Automatyczny_saper\\out.csv")
self.data = pd.read_csv("out.csv")
if doCreation:
self.mapData()
features = ['bomb_type', 'detonation_duration', 'size', 'detonation_area', 'defusable']
@ -21,7 +21,7 @@ class DecisionTree:
decision_tree_model_pkl = open('tree.pkl', 'wb')
pickle.dump(dtree, decision_tree_model_pkl)
decision_tree_model_pkl.close()
decision_tree_model_pkl = open('C:\\Users\\Konrad\\PycharmProjects\\Projekt_AI-Automatyczny_saper\\Engine\\tree.pkl', 'rb')
decision_tree_model_pkl = open('.\\Engine\\tree.pkl', 'rb')
self.dtree = pickle.load(decision_tree_model_pkl)
def getTree(self):

View File

@ -52,10 +52,8 @@ class Population:
child = []
childP1 = []
childP2 = []
print(parent1)
geneA = int(random.random() * len(parent1))
print(geneA)
geneB = int(random.random() * len(parent1))
startGene = min(geneA, geneB)

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More