Compare commits

...

40 Commits

Author SHA1 Message Date
Nastassia Zhuravel 10ac917df3 Merge pull request 'Genetic-algorythm' (#29) from Genetic-algorythm into main
Reviewed-on: #29
Reviewed-by: Nastassia Zhuravel <naszhu@st.amu.edu.pl>
2023-06-16 15:13:36 +02:00
Mateusz Dokowicz a404e70058 mutations geneticAlg 2023-06-16 03:22:30 +02:00
Mateusz Dokowicz 74fd6d9263 crossover working version 2023-06-16 00:48:59 +02:00
Mateusz Dokowicz 8b1e390e6b Improvement on code + path creation 2023-06-15 16:46:08 +02:00
Mateusz Dokowicz af7027a90f neural network config 2023-06-14 19:59:23 +02:00
Pavel Bialko e2c2ea8f0e Merge pull request 'Implementation-neuron-model' (#28) from Implementation-neuron-model into main
Reviewed-on: #28
Reviewed-by: Nastassia Zhuravel <naszhu@st.amu.edu.pl>
2023-06-04 20:19:42 +02:00
Pavel e8b8de741d changes for better understanding of code 2023-06-04 19:16:50 +02:00
Pavel 7e3a9cf3d0 Last changies for correct work of neuron network 2023-06-04 19:11:12 +02:00
Pavel 7490cc8e06 changies in main file for using power of config 2023-06-04 19:09:59 +02:00
Pavel 5910777fa4 changies in config file for work simplification 2023-06-04 19:05:45 +02:00
Pavel 71c18c567d requirements file changing 2023-06-04 19:04:14 +02:00
Pavel f3e6d04eb4 recognition file changes + link for neuron model 2023-06-04 19:02:37 +02:00
Pavel 20d32201ae dataset for recognition 2023-06-04 18:54:32 +02:00
Pavel f98855d93c preparing recognnition file to implimintation 2023-06-04 18:52:06 +02:00
Nastassia Zhuravel 82b964ac2a Merge pull request 'image_recognition' (#26) from image_recognition into main
Reviewed-on: #26
Reviewed-by: Tim Barvenov <timbar@st.amu.edu.pl>
2023-06-01 19:38:09 +02:00
countingthedots 563fa7da6a image recognition 2023-06-01 19:35:54 +02:00
countingthedots 04d725103d Neural network for image recognition 2023-06-01 19:30:04 +02:00
Mateusz Dokowicz 5bc61434e9 Merge pull request 'fixing-Errors' (#24) from fixing-Errors into main
Reviewed-on: #24
2023-05-29 09:13:00 +02:00
Mateusz Dokowicz 769876e131 photo decision tree 2023-05-26 12:16:50 +02:00
Mateusz Dokowicz 8b7c4ed086 trash value 25->5 2023-05-26 01:17:33 +02:00
Mateusz Dokowicz f85ba27472 item description decision tree 2023-05-25 17:28:58 +02:00
Mateusz Dokowicz d470601fe1 config added constant 2023-05-25 16:59:50 +02:00
Mateusz Dokowicz 44bdfa8ae1 Number of generated bananas 2023-05-25 16:49:24 +02:00
Mateusz Dokowicz c6538f420f astar to aStar 2023-05-25 16:34:55 +02:00
Mateusz Dokowicz cbaaed7820 USE AUTOFORMATTING 2023-05-25 16:26:13 +02:00
Mateusz Dokowicz 991dd93650 tile cost fix 2023-05-25 16:25:37 +02:00
Mateusz Dokowicz 3dcd5db03d Vacuum takes more than 100% 2023-05-25 16:23:56 +02:00
Mateusz Dokowicz ae838bbbc5 props => properties 2023-05-25 16:23:12 +02:00
Tim Barvenov 3fe4b6f2e1 Merge pull request 'complete decision tree' (#23) from d_tree into main
Reviewed-on: #23
Reviewed-by: Tim Barvenov <timbar@st.amu.edu.pl>
2023-05-19 17:51:03 +02:00
Veronika Polevara 8c7517e1a2 remove files 2023-05-19 15:54:14 +02:00
Veronika Polevara b7b9e8e97c changes 2023-05-19 15:49:17 +02:00
Polevara Veronika b7dfc33086 change cvs 2023-05-18 23:33:04 +02:00
Polevara Veronika ef7aa77470 changes 2023-05-18 23:18:07 +02:00
Tim Barvenov ddb69cc1ec Merge pull request 'a-star-implementation' (#22) from a-star-implementation into main
Reviewed-on: #22
Reviewed-by: Tim Barvenov <timbar@st.amu.edu.pl>
2023-05-14 14:27:45 +02:00
Maciej 246fda4e8a conflict merge 2023-05-14 10:15:09 +02:00
Maciej 236f608830 a-star-implementation 2023-05-14 10:09:52 +02:00
Maciej a4f822ad93 Merge branch 'main' of https://git.wmi.amu.edu.pl/s473601/Machine_learning_2023 into a-star-implementation 2023-05-14 09:51:58 +02:00
Maciej 423e7e858c astar imlpementation 2023-05-14 09:10:31 +02:00
Tim Barvenov 3283eaa46d Merge pull request 'Add decision tree' (#20) from decision_tree into main
Reviewed-on: #20
Reviewed-by: Tim Barvenov <timbar@st.amu.edu.pl>
2023-05-12 22:23:28 +02:00
Veronika Polevara 8a05edf925 add decision tree 2023-05-11 19:34:08 +02:00
1236 changed files with 1759 additions and 846 deletions

15
.gitignore vendored
View File

@ -1,7 +1,8 @@
/venv
.DS_Store
/.vscode
__pycache__
#PyCharm
.idea/
/venv
.DS_Store
/.vscode
__pycache__
#PyCharm
.idea/
AI_brain/model.h5

6
.idea/.gitignore vendored
View File

@ -1,3 +1,3 @@
# Default ignored files
/shelf/
/workspace.xml
# Default ignored files
/shelf/
/workspace.xml

View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/PythEnv" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
<component name="PyDocumentationSettings">
<option name="format" value="PLAIN" />
<option name="myDocStringFormat" value="Plain" />
</component>
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/PythEnv" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
<component name="PyDocumentationSettings">
<option name="format" value="PLAIN" />
<option name="myDocStringFormat" value="Plain" />
</component>
</module>

View File

@ -1,6 +1,6 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.9 (Machine_learning_2023)" project-jdk-type="Python SDK" />
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.9 (Machine_learning_2023)" project-jdk-type="Python SDK" />
</project>

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/Machine_learning_2023.iml" filepath="$PROJECT_DIR$/.idea/Machine_learning_2023.iml" />
</modules>
</component>
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/Machine_learning_2023.iml" filepath="$PROJECT_DIR$/.idea/Machine_learning_2023.iml" />
</modules>
</component>
</project>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

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