├── Chapter01 └── HelloWorld │ ├── build.xml │ ├── build │ ├── built-jar.properties │ └── classes │ │ ├── .netbeans_automatic_build │ │ ├── .netbeans_update_resources │ │ └── helloworld │ │ └── HelloWorld.class │ ├── dist │ ├── HelloWorld.jar │ ├── README.TXT │ └── lib │ │ └── junit.jar │ ├── manifest.mf │ ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── config.properties │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml │ └── src │ └── helloworld │ └── HelloWorld.java ├── Chapter02 ├── AStar │ ├── build.xml │ ├── build │ │ └── classes │ │ │ ├── .netbeans_automatic_build │ │ │ ├── .netbeans_update_resources │ │ │ └── astar │ │ │ ├── AStar.class │ │ │ ├── Edge.class │ │ │ ├── Graph.class │ │ │ ├── Test.class │ │ │ ├── Vertex.class │ │ │ └── astr.class │ ├── manifest.mf │ ├── nbproject │ │ ├── build-impl.xml │ │ ├── genfiles.properties │ │ ├── private │ │ │ ├── config.properties │ │ │ ├── private.properties │ │ │ └── private.xml │ │ ├── project.properties │ │ └── project.xml │ └── src │ │ └── astar │ │ ├── AStar.java │ │ ├── Edge.java │ │ ├── Graph.java │ │ ├── Test.java │ │ ├── Vertex.java │ │ └── astr.java └── UCSearch │ ├── build.xml │ ├── build │ ├── built-jar.properties │ └── classes │ │ ├── .netbeans_automatic_build │ │ ├── .netbeans_update_resources │ │ └── ucsearch │ │ ├── DijkstraAlgorithm.class │ │ ├── Edge.class │ │ ├── Graph.class │ │ ├── Test.class │ │ ├── UCSearch.class │ │ └── Vertex.class │ ├── dist │ ├── README.TXT │ ├── UCSearch.jar │ └── lib │ │ ├── hamcrest-core-1.3.jar │ │ ├── junit.jar │ │ └── weka.jar │ ├── manifest.mf │ ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── config.properties │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml │ └── src │ └── ucsearch │ ├── DijkstraAlgorithm.java │ ├── Edge.java │ ├── Graph.java │ ├── Test.java │ ├── UCSearch.java │ └── Vertex.java ├── Chapter03 ├── GamePlaying │ ├── build.xml │ ├── build │ │ └── classes │ │ │ ├── .netbeans_automatic_build │ │ │ ├── .netbeans_update_resources │ │ │ └── gameplaying │ │ │ ├── Board.class │ │ │ ├── GamePlaying.class │ │ │ ├── Point.class │ │ │ └── PointAndScore.class │ ├── manifest.mf │ ├── nbproject │ │ ├── build-impl.xml │ │ ├── genfiles.properties │ │ ├── private │ │ │ ├── private.properties │ │ │ └── private.xml │ │ ├── project.properties │ │ └── project.xml │ └── src │ │ └── gameplaying │ │ └── GamePlaying.java ├── JPLwJava │ ├── build.xml │ ├── build │ │ └── classes │ │ │ ├── .netbeans_automatic_build │ │ │ ├── .netbeans_update_resources │ │ │ └── jplwjava │ │ │ └── JPLwJava.class │ ├── family.pl │ ├── jpl.jar │ ├── manifest.mf │ ├── nbproject │ │ ├── build-impl.xml │ │ ├── genfiles.properties │ │ ├── private │ │ │ ├── config.properties │ │ │ ├── private.properties │ │ │ └── private.xml │ │ ├── project.properties │ │ └── project.xml │ └── src │ │ └── jplwjava │ │ └── JPLwJava.java └── ProrlogJava │ ├── build.xml │ ├── build │ └── classes │ │ ├── .netbeans_automatic_build │ │ ├── .netbeans_update_resources │ │ └── prorlogjava │ │ └── ProrlogJava.class │ ├── family.pl │ ├── jpl.jar │ ├── manifest.mf │ ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── config.properties │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml │ └── src │ └── prorlogjava │ └── ProrlogJava.java ├── Chapter04 ├── Arff2CSV │ ├── build.xml │ ├── build │ │ └── classes │ │ │ ├── .netbeans_automatic_build │ │ │ ├── .netbeans_update_resources │ │ │ └── arff2csv │ │ │ └── Arff2CSV.class │ ├── manifest.mf │ ├── nbproject │ │ ├── build-impl.xml │ │ ├── genfiles.properties │ │ ├── private │ │ │ ├── config.properties │ │ │ ├── private.properties │ │ │ └── private.xml │ │ ├── project.properties │ │ └── project.xml │ ├── src │ │ └── arff2csv │ │ │ └── Arff2CSV.java │ └── weather.csv ├── Datasets │ ├── build.xml │ ├── build │ │ └── classes │ │ │ ├── .netbeans_automatic_build │ │ │ ├── .netbeans_update_resources │ │ │ └── datasets │ │ │ └── Datasets.class │ ├── manifest.mf │ ├── nbproject │ │ ├── build-impl.xml │ │ ├── genfiles.properties │ │ ├── private │ │ │ ├── config.properties │ │ │ ├── private.properties │ │ │ └── private.xml │ │ ├── project.properties │ │ └── project.xml │ ├── src │ │ └── datasets │ │ │ └── Datasets.java │ └── weather.arff ├── HelloWorld │ ├── build.xml │ ├── build │ │ ├── built-jar.properties │ │ └── classes │ │ │ ├── .netbeans_automatic_build │ │ │ ├── .netbeans_update_resources │ │ │ └── helloworld │ │ │ └── HelloWorld.class │ ├── dist │ │ ├── HelloWorld.jar │ │ ├── README.TXT │ │ └── lib │ │ │ └── junit.jar │ ├── manifest.mf │ ├── nbproject │ │ ├── build-impl.xml │ │ ├── genfiles.properties │ │ ├── private │ │ │ ├── config.properties │ │ │ ├── private.properties │ │ │ └── private.xml │ │ ├── project.properties │ │ └── project.xml │ └── src │ │ └── helloworld │ │ └── HelloWorld.java └── csv2arff │ ├── build.xml │ ├── build │ └── classes │ │ ├── .netbeans_automatic_build │ │ ├── .netbeans_update_resources │ │ └── csv2arff │ │ └── Csv2arff.class │ ├── manifest.mf │ ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── config.properties │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml │ ├── src │ └── csv2arff │ │ └── Csv2arff.java │ └── weather.arff ├── Chapter05 ├── AttribSelect │ ├── build.xml │ ├── build │ │ └── classes │ │ │ ├── .netbeans_automatic_build │ │ │ ├── .netbeans_update_resources │ │ │ └── attribselect │ │ │ └── AttribSelect.class │ ├── manifest.mf │ ├── nbproject │ │ ├── build-impl.xml │ │ ├── genfiles.properties │ │ ├── private │ │ │ ├── config.properties │ │ │ ├── private.properties │ │ │ └── private.xml │ │ ├── project.properties │ │ └── project.xml │ ├── src │ │ └── attribselect │ │ │ └── AttribSelect.java │ └── weather-sel.arff ├── DiscretizeAttribute │ ├── build.xml │ ├── build │ │ └── classes │ │ │ ├── .netbeans_automatic_build │ │ │ └── .netbeans_update_resources │ ├── manifest.mf │ ├── nbproject │ │ ├── build-impl.xml │ │ ├── genfiles.properties │ │ ├── private │ │ │ ├── config.properties │ │ │ ├── private.properties │ │ │ └── private.xml │ │ ├── project.properties │ │ └── project.xml │ └── weather-dis.arff └── FilterAttribute │ ├── build.xml │ ├── build │ └── classes │ │ ├── .netbeans_automatic_build │ │ └── .netbeans_update_resources │ ├── fw.arff │ ├── manifest.mf │ ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── config.properties │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml │ └── src │ └── filterattribute │ └── FilterAttribute.java ├── Chapter06 ├── DevelopClassifier │ ├── build.xml │ ├── build │ │ └── classes │ │ │ ├── .netbeans_automatic_build │ │ │ └── .netbeans_update_resources │ ├── manifest.mf │ ├── nbproject │ │ ├── build-impl.xml │ │ ├── genfiles.properties │ │ ├── private │ │ │ ├── config.properties │ │ │ └── private.properties │ │ ├── project.properties │ │ └── project.xml │ ├── src │ │ └── developclassifier │ │ │ └── DevelopClassifier.java │ ├── vote.arff │ └── weather.arff ├── LoadModel │ ├── build.xml │ ├── build │ │ └── classes │ │ │ ├── .netbeans_automatic_build │ │ │ ├── .netbeans_update_resources │ │ │ └── loadmodel │ │ │ └── LoadModel.class │ ├── manifest.mf │ ├── myDT.model │ ├── nbproject │ │ ├── build-impl.xml │ │ ├── genfiles.properties │ │ ├── private │ │ │ ├── config.properties │ │ │ ├── private.properties │ │ │ └── private.xml │ │ ├── project.properties │ │ └── project.xml │ ├── segment-test.arff │ └── src │ │ └── loadmodel │ │ └── LoadModel.java ├── MakingPredictions │ ├── build.xml │ ├── build │ │ ├── built-jar.properties │ │ └── classes │ │ │ ├── .netbeans_automatic_build │ │ │ └── .netbeans_update_resources │ ├── dist │ │ ├── MakingPredictions.jar │ │ ├── README.TXT │ │ └── lib │ │ │ └── weka.jar │ ├── manifest.mf │ ├── nbproject │ │ ├── build-impl.xml │ │ ├── genfiles.properties │ │ ├── private │ │ │ ├── config.properties │ │ │ └── private.properties │ │ ├── project.properties │ │ └── project.xml │ ├── segment-challenge.arff │ ├── segment-test.arff │ └── src │ │ └── makingpredictions │ │ └── MakingPredictions.java ├── ModelEvaluation │ ├── build.xml │ ├── build │ │ └── classes │ │ │ ├── .netbeans_automatic_build │ │ │ └── .netbeans_update_resources │ ├── manifest.mf │ ├── nbproject │ │ ├── build-impl.xml │ │ ├── genfiles.properties │ │ ├── private │ │ │ ├── config.properties │ │ │ ├── private.properties │ │ │ └── private.xml │ │ ├── project.properties │ │ └── project.xml │ ├── segment-challenge.arff │ ├── segment-test.arff │ └── src │ │ └── modelevaluation │ │ └── ModelEvaluation.java └── SaveModel │ ├── build.xml │ ├── build │ └── classes │ │ ├── .netbeans_automatic_build │ │ ├── .netbeans_update_resources │ │ └── savemodel │ │ └── SaveModel.class │ ├── manifest.mf │ ├── myDT.model │ ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── config.properties │ │ └── private.properties │ ├── project.properties │ └── project.xml │ ├── segment-challenge.arff │ └── src │ └── savemodel │ └── SaveModel.java ├── Chapter07 ├── ClusterEval │ ├── build.xml │ ├── build │ │ └── classes │ │ │ ├── .netbeans_automatic_build │ │ │ ├── .netbeans_update_resources │ │ │ └── clustereval │ │ │ └── ClusterEval.class │ ├── manifest.mf │ ├── nbproject │ │ ├── build-impl.xml │ │ ├── genfiles.properties │ │ ├── private │ │ │ ├── config.properties │ │ │ ├── private.properties │ │ │ └── private.xml │ │ ├── project.properties │ │ └── project.xml │ ├── src │ │ └── clustereval │ │ │ └── ClusterEval.java │ ├── weather.arff │ └── weather.test.arff ├── Clustering │ ├── build.xml │ ├── build │ │ └── classes │ │ │ ├── .netbeans_automatic_build │ │ │ ├── .netbeans_update_resources │ │ │ └── clustering │ │ │ └── Clustering.class │ ├── manifest.mf │ ├── nbproject │ │ ├── build-impl.xml │ │ ├── genfiles.properties │ │ ├── private │ │ │ ├── config.properties │ │ │ ├── private.properties │ │ │ └── private.xml │ │ ├── project.properties │ │ └── project.xml │ ├── src │ │ └── clustering │ │ │ └── Clustering.java │ └── weather.arff ├── SemiSuperClassifier │ ├── build.xml │ ├── build │ │ └── classes │ │ │ ├── .netbeans_automatic_build │ │ │ └── .netbeans_update_resources │ ├── collective-classification-2015.2.27.jar │ ├── manifest.mf │ ├── nbproject │ │ ├── build-impl.xml │ │ ├── genfiles.properties │ │ ├── private │ │ │ ├── config.properties │ │ │ ├── private.properties │ │ │ └── private.xml │ │ ├── project.properties │ │ └── project.xml │ └── weather.arff └── SuperSupervised │ ├── build.xml │ ├── build │ └── classes │ │ ├── .netbeans_automatic_build │ │ └── .netbeans_update_resources │ ├── manifest.mf │ ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── config.properties │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml │ ├── src │ └── supersupervised │ │ └── SuperSupervised.java │ ├── weather.arff │ └── weather.test.arff ├── LICENSE └── README.md /Chapter01/HelloWorld/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter01/HelloWorld/build.xml -------------------------------------------------------------------------------- /Chapter01/HelloWorld/build/built-jar.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter01/HelloWorld/build/built-jar.properties -------------------------------------------------------------------------------- /Chapter01/HelloWorld/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter01/HelloWorld/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter01/HelloWorld/build/classes/helloworld/HelloWorld.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter01/HelloWorld/build/classes/helloworld/HelloWorld.class -------------------------------------------------------------------------------- /Chapter01/HelloWorld/dist/HelloWorld.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter01/HelloWorld/dist/HelloWorld.jar -------------------------------------------------------------------------------- /Chapter01/HelloWorld/dist/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter01/HelloWorld/dist/README.TXT -------------------------------------------------------------------------------- /Chapter01/HelloWorld/dist/lib/junit.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter01/HelloWorld/dist/lib/junit.jar -------------------------------------------------------------------------------- /Chapter01/HelloWorld/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter01/HelloWorld/manifest.mf -------------------------------------------------------------------------------- /Chapter01/HelloWorld/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter01/HelloWorld/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter01/HelloWorld/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter01/HelloWorld/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter01/HelloWorld/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter01/HelloWorld/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter01/HelloWorld/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter01/HelloWorld/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter01/HelloWorld/nbproject/private/private.xml -------------------------------------------------------------------------------- /Chapter01/HelloWorld/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter01/HelloWorld/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter01/HelloWorld/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter01/HelloWorld/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter01/HelloWorld/src/helloworld/HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter01/HelloWorld/src/helloworld/HelloWorld.java -------------------------------------------------------------------------------- /Chapter02/AStar/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/AStar/build.xml -------------------------------------------------------------------------------- /Chapter02/AStar/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/AStar/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/AStar/build/classes/astar/AStar.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/AStar/build/classes/astar/AStar.class -------------------------------------------------------------------------------- /Chapter02/AStar/build/classes/astar/Edge.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/AStar/build/classes/astar/Edge.class -------------------------------------------------------------------------------- /Chapter02/AStar/build/classes/astar/Graph.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/AStar/build/classes/astar/Graph.class -------------------------------------------------------------------------------- /Chapter02/AStar/build/classes/astar/Test.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/AStar/build/classes/astar/Test.class -------------------------------------------------------------------------------- /Chapter02/AStar/build/classes/astar/Vertex.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/AStar/build/classes/astar/Vertex.class -------------------------------------------------------------------------------- /Chapter02/AStar/build/classes/astar/astr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/AStar/build/classes/astar/astr.class -------------------------------------------------------------------------------- /Chapter02/AStar/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/AStar/manifest.mf -------------------------------------------------------------------------------- /Chapter02/AStar/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/AStar/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter02/AStar/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/AStar/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter02/AStar/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/AStar/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/AStar/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter02/AStar/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/AStar/nbproject/private/private.xml -------------------------------------------------------------------------------- /Chapter02/AStar/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/AStar/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter02/AStar/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/AStar/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter02/AStar/src/astar/AStar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/AStar/src/astar/AStar.java -------------------------------------------------------------------------------- /Chapter02/AStar/src/astar/Edge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/AStar/src/astar/Edge.java -------------------------------------------------------------------------------- /Chapter02/AStar/src/astar/Graph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/AStar/src/astar/Graph.java -------------------------------------------------------------------------------- /Chapter02/AStar/src/astar/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/AStar/src/astar/Test.java -------------------------------------------------------------------------------- /Chapter02/AStar/src/astar/Vertex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/AStar/src/astar/Vertex.java -------------------------------------------------------------------------------- /Chapter02/AStar/src/astar/astr.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/AStar/src/astar/astr.java -------------------------------------------------------------------------------- /Chapter02/UCSearch/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/build.xml -------------------------------------------------------------------------------- /Chapter02/UCSearch/build/built-jar.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/build/built-jar.properties -------------------------------------------------------------------------------- /Chapter02/UCSearch/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/UCSearch/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/UCSearch/build/classes/ucsearch/DijkstraAlgorithm.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/build/classes/ucsearch/DijkstraAlgorithm.class -------------------------------------------------------------------------------- /Chapter02/UCSearch/build/classes/ucsearch/Edge.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/build/classes/ucsearch/Edge.class -------------------------------------------------------------------------------- /Chapter02/UCSearch/build/classes/ucsearch/Graph.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/build/classes/ucsearch/Graph.class -------------------------------------------------------------------------------- /Chapter02/UCSearch/build/classes/ucsearch/Test.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/build/classes/ucsearch/Test.class -------------------------------------------------------------------------------- /Chapter02/UCSearch/build/classes/ucsearch/UCSearch.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/build/classes/ucsearch/UCSearch.class -------------------------------------------------------------------------------- /Chapter02/UCSearch/build/classes/ucsearch/Vertex.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/build/classes/ucsearch/Vertex.class -------------------------------------------------------------------------------- /Chapter02/UCSearch/dist/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/dist/README.TXT -------------------------------------------------------------------------------- /Chapter02/UCSearch/dist/UCSearch.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/dist/UCSearch.jar -------------------------------------------------------------------------------- /Chapter02/UCSearch/dist/lib/hamcrest-core-1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/dist/lib/hamcrest-core-1.3.jar -------------------------------------------------------------------------------- /Chapter02/UCSearch/dist/lib/junit.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/dist/lib/junit.jar -------------------------------------------------------------------------------- /Chapter02/UCSearch/dist/lib/weka.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/dist/lib/weka.jar -------------------------------------------------------------------------------- /Chapter02/UCSearch/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/manifest.mf -------------------------------------------------------------------------------- /Chapter02/UCSearch/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter02/UCSearch/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter02/UCSearch/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/UCSearch/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter02/UCSearch/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/nbproject/private/private.xml -------------------------------------------------------------------------------- /Chapter02/UCSearch/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter02/UCSearch/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter02/UCSearch/src/ucsearch/DijkstraAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/src/ucsearch/DijkstraAlgorithm.java -------------------------------------------------------------------------------- /Chapter02/UCSearch/src/ucsearch/Edge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/src/ucsearch/Edge.java -------------------------------------------------------------------------------- /Chapter02/UCSearch/src/ucsearch/Graph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/src/ucsearch/Graph.java -------------------------------------------------------------------------------- /Chapter02/UCSearch/src/ucsearch/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/src/ucsearch/Test.java -------------------------------------------------------------------------------- /Chapter02/UCSearch/src/ucsearch/UCSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/src/ucsearch/UCSearch.java -------------------------------------------------------------------------------- /Chapter02/UCSearch/src/ucsearch/Vertex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter02/UCSearch/src/ucsearch/Vertex.java -------------------------------------------------------------------------------- /Chapter03/GamePlaying/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/GamePlaying/build.xml -------------------------------------------------------------------------------- /Chapter03/GamePlaying/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/GamePlaying/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/GamePlaying/build/classes/gameplaying/Board.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/GamePlaying/build/classes/gameplaying/Board.class -------------------------------------------------------------------------------- /Chapter03/GamePlaying/build/classes/gameplaying/GamePlaying.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/GamePlaying/build/classes/gameplaying/GamePlaying.class -------------------------------------------------------------------------------- /Chapter03/GamePlaying/build/classes/gameplaying/Point.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/GamePlaying/build/classes/gameplaying/Point.class -------------------------------------------------------------------------------- /Chapter03/GamePlaying/build/classes/gameplaying/PointAndScore.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/GamePlaying/build/classes/gameplaying/PointAndScore.class -------------------------------------------------------------------------------- /Chapter03/GamePlaying/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/GamePlaying/manifest.mf -------------------------------------------------------------------------------- /Chapter03/GamePlaying/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/GamePlaying/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter03/GamePlaying/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/GamePlaying/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter03/GamePlaying/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/GamePlaying/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter03/GamePlaying/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/GamePlaying/nbproject/private/private.xml -------------------------------------------------------------------------------- /Chapter03/GamePlaying/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/GamePlaying/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter03/GamePlaying/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/GamePlaying/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter03/GamePlaying/src/gameplaying/GamePlaying.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/GamePlaying/src/gameplaying/GamePlaying.java -------------------------------------------------------------------------------- /Chapter03/JPLwJava/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/JPLwJava/build.xml -------------------------------------------------------------------------------- /Chapter03/JPLwJava/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/JPLwJava/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/JPLwJava/build/classes/jplwjava/JPLwJava.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/JPLwJava/build/classes/jplwjava/JPLwJava.class -------------------------------------------------------------------------------- /Chapter03/JPLwJava/family.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/JPLwJava/family.pl -------------------------------------------------------------------------------- /Chapter03/JPLwJava/jpl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/JPLwJava/jpl.jar -------------------------------------------------------------------------------- /Chapter03/JPLwJava/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/JPLwJava/manifest.mf -------------------------------------------------------------------------------- /Chapter03/JPLwJava/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/JPLwJava/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter03/JPLwJava/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/JPLwJava/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter03/JPLwJava/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/JPLwJava/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/JPLwJava/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter03/JPLwJava/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/JPLwJava/nbproject/private/private.xml -------------------------------------------------------------------------------- /Chapter03/JPLwJava/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/JPLwJava/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter03/JPLwJava/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/JPLwJava/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter03/JPLwJava/src/jplwjava/JPLwJava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/JPLwJava/src/jplwjava/JPLwJava.java -------------------------------------------------------------------------------- /Chapter03/ProrlogJava/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/ProrlogJava/build.xml -------------------------------------------------------------------------------- /Chapter03/ProrlogJava/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/ProrlogJava/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/ProrlogJava/build/classes/prorlogjava/ProrlogJava.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/ProrlogJava/build/classes/prorlogjava/ProrlogJava.class -------------------------------------------------------------------------------- /Chapter03/ProrlogJava/family.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/ProrlogJava/family.pl -------------------------------------------------------------------------------- /Chapter03/ProrlogJava/jpl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/ProrlogJava/jpl.jar -------------------------------------------------------------------------------- /Chapter03/ProrlogJava/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/ProrlogJava/manifest.mf -------------------------------------------------------------------------------- /Chapter03/ProrlogJava/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/ProrlogJava/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter03/ProrlogJava/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/ProrlogJava/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter03/ProrlogJava/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/ProrlogJava/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/ProrlogJava/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter03/ProrlogJava/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/ProrlogJava/nbproject/private/private.xml -------------------------------------------------------------------------------- /Chapter03/ProrlogJava/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/ProrlogJava/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter03/ProrlogJava/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/ProrlogJava/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter03/ProrlogJava/src/prorlogjava/ProrlogJava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter03/ProrlogJava/src/prorlogjava/ProrlogJava.java -------------------------------------------------------------------------------- /Chapter04/Arff2CSV/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Arff2CSV/build.xml -------------------------------------------------------------------------------- /Chapter04/Arff2CSV/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/Arff2CSV/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/Arff2CSV/build/classes/arff2csv/Arff2CSV.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Arff2CSV/build/classes/arff2csv/Arff2CSV.class -------------------------------------------------------------------------------- /Chapter04/Arff2CSV/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Arff2CSV/manifest.mf -------------------------------------------------------------------------------- /Chapter04/Arff2CSV/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Arff2CSV/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter04/Arff2CSV/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Arff2CSV/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter04/Arff2CSV/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/Arff2CSV/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Arff2CSV/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter04/Arff2CSV/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Arff2CSV/nbproject/private/private.xml -------------------------------------------------------------------------------- /Chapter04/Arff2CSV/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Arff2CSV/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter04/Arff2CSV/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Arff2CSV/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter04/Arff2CSV/src/arff2csv/Arff2CSV.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Arff2CSV/src/arff2csv/Arff2CSV.java -------------------------------------------------------------------------------- /Chapter04/Arff2CSV/weather.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Arff2CSV/weather.csv -------------------------------------------------------------------------------- /Chapter04/Datasets/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Datasets/build.xml -------------------------------------------------------------------------------- /Chapter04/Datasets/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/Datasets/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/Datasets/build/classes/datasets/Datasets.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Datasets/build/classes/datasets/Datasets.class -------------------------------------------------------------------------------- /Chapter04/Datasets/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Datasets/manifest.mf -------------------------------------------------------------------------------- /Chapter04/Datasets/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Datasets/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter04/Datasets/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Datasets/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter04/Datasets/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/Datasets/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Datasets/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter04/Datasets/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Datasets/nbproject/private/private.xml -------------------------------------------------------------------------------- /Chapter04/Datasets/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Datasets/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter04/Datasets/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Datasets/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter04/Datasets/src/datasets/Datasets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Datasets/src/datasets/Datasets.java -------------------------------------------------------------------------------- /Chapter04/Datasets/weather.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/Datasets/weather.arff -------------------------------------------------------------------------------- /Chapter04/HelloWorld/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/HelloWorld/build.xml -------------------------------------------------------------------------------- /Chapter04/HelloWorld/build/built-jar.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/HelloWorld/build/built-jar.properties -------------------------------------------------------------------------------- /Chapter04/HelloWorld/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/HelloWorld/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/HelloWorld/build/classes/helloworld/HelloWorld.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/HelloWorld/build/classes/helloworld/HelloWorld.class -------------------------------------------------------------------------------- /Chapter04/HelloWorld/dist/HelloWorld.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/HelloWorld/dist/HelloWorld.jar -------------------------------------------------------------------------------- /Chapter04/HelloWorld/dist/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/HelloWorld/dist/README.TXT -------------------------------------------------------------------------------- /Chapter04/HelloWorld/dist/lib/junit.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/HelloWorld/dist/lib/junit.jar -------------------------------------------------------------------------------- /Chapter04/HelloWorld/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/HelloWorld/manifest.mf -------------------------------------------------------------------------------- /Chapter04/HelloWorld/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/HelloWorld/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter04/HelloWorld/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/HelloWorld/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter04/HelloWorld/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/HelloWorld/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/HelloWorld/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter04/HelloWorld/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/HelloWorld/nbproject/private/private.xml -------------------------------------------------------------------------------- /Chapter04/HelloWorld/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/HelloWorld/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter04/HelloWorld/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/HelloWorld/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter04/HelloWorld/src/helloworld/HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/HelloWorld/src/helloworld/HelloWorld.java -------------------------------------------------------------------------------- /Chapter04/csv2arff/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/csv2arff/build.xml -------------------------------------------------------------------------------- /Chapter04/csv2arff/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/csv2arff/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/csv2arff/build/classes/csv2arff/Csv2arff.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/csv2arff/build/classes/csv2arff/Csv2arff.class -------------------------------------------------------------------------------- /Chapter04/csv2arff/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/csv2arff/manifest.mf -------------------------------------------------------------------------------- /Chapter04/csv2arff/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/csv2arff/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter04/csv2arff/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/csv2arff/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter04/csv2arff/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/csv2arff/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/csv2arff/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter04/csv2arff/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/csv2arff/nbproject/private/private.xml -------------------------------------------------------------------------------- /Chapter04/csv2arff/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/csv2arff/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter04/csv2arff/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/csv2arff/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter04/csv2arff/src/csv2arff/Csv2arff.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/csv2arff/src/csv2arff/Csv2arff.java -------------------------------------------------------------------------------- /Chapter04/csv2arff/weather.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter04/csv2arff/weather.arff -------------------------------------------------------------------------------- /Chapter05/AttribSelect/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/AttribSelect/build.xml -------------------------------------------------------------------------------- /Chapter05/AttribSelect/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/AttribSelect/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/AttribSelect/build/classes/attribselect/AttribSelect.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/AttribSelect/build/classes/attribselect/AttribSelect.class -------------------------------------------------------------------------------- /Chapter05/AttribSelect/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/AttribSelect/manifest.mf -------------------------------------------------------------------------------- /Chapter05/AttribSelect/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/AttribSelect/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter05/AttribSelect/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/AttribSelect/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter05/AttribSelect/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/AttribSelect/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/AttribSelect/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter05/AttribSelect/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/AttribSelect/nbproject/private/private.xml -------------------------------------------------------------------------------- /Chapter05/AttribSelect/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/AttribSelect/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter05/AttribSelect/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/AttribSelect/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter05/AttribSelect/src/attribselect/AttribSelect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/AttribSelect/src/attribselect/AttribSelect.java -------------------------------------------------------------------------------- /Chapter05/AttribSelect/weather-sel.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/AttribSelect/weather-sel.arff -------------------------------------------------------------------------------- /Chapter05/DiscretizeAttribute/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/DiscretizeAttribute/build.xml -------------------------------------------------------------------------------- /Chapter05/DiscretizeAttribute/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/DiscretizeAttribute/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/DiscretizeAttribute/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/DiscretizeAttribute/manifest.mf -------------------------------------------------------------------------------- /Chapter05/DiscretizeAttribute/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/DiscretizeAttribute/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter05/DiscretizeAttribute/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/DiscretizeAttribute/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter05/DiscretizeAttribute/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/DiscretizeAttribute/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/DiscretizeAttribute/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter05/DiscretizeAttribute/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/DiscretizeAttribute/nbproject/private/private.xml -------------------------------------------------------------------------------- /Chapter05/DiscretizeAttribute/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/DiscretizeAttribute/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter05/DiscretizeAttribute/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/DiscretizeAttribute/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter05/DiscretizeAttribute/weather-dis.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/DiscretizeAttribute/weather-dis.arff -------------------------------------------------------------------------------- /Chapter05/FilterAttribute/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/FilterAttribute/build.xml -------------------------------------------------------------------------------- /Chapter05/FilterAttribute/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/FilterAttribute/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/FilterAttribute/fw.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/FilterAttribute/fw.arff -------------------------------------------------------------------------------- /Chapter05/FilterAttribute/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/FilterAttribute/manifest.mf -------------------------------------------------------------------------------- /Chapter05/FilterAttribute/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/FilterAttribute/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter05/FilterAttribute/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/FilterAttribute/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter05/FilterAttribute/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/FilterAttribute/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/FilterAttribute/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter05/FilterAttribute/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/FilterAttribute/nbproject/private/private.xml -------------------------------------------------------------------------------- /Chapter05/FilterAttribute/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/FilterAttribute/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter05/FilterAttribute/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/FilterAttribute/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter05/FilterAttribute/src/filterattribute/FilterAttribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter05/FilterAttribute/src/filterattribute/FilterAttribute.java -------------------------------------------------------------------------------- /Chapter06/DevelopClassifier/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/DevelopClassifier/build.xml -------------------------------------------------------------------------------- /Chapter06/DevelopClassifier/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/DevelopClassifier/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/DevelopClassifier/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/DevelopClassifier/manifest.mf -------------------------------------------------------------------------------- /Chapter06/DevelopClassifier/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/DevelopClassifier/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter06/DevelopClassifier/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/DevelopClassifier/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter06/DevelopClassifier/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/DevelopClassifier/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/DevelopClassifier/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter06/DevelopClassifier/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/DevelopClassifier/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter06/DevelopClassifier/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/DevelopClassifier/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter06/DevelopClassifier/src/developclassifier/DevelopClassifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/DevelopClassifier/src/developclassifier/DevelopClassifier.java -------------------------------------------------------------------------------- /Chapter06/DevelopClassifier/vote.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/DevelopClassifier/vote.arff -------------------------------------------------------------------------------- /Chapter06/DevelopClassifier/weather.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/DevelopClassifier/weather.arff -------------------------------------------------------------------------------- /Chapter06/LoadModel/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/LoadModel/build.xml -------------------------------------------------------------------------------- /Chapter06/LoadModel/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/LoadModel/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/LoadModel/build/classes/loadmodel/LoadModel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/LoadModel/build/classes/loadmodel/LoadModel.class -------------------------------------------------------------------------------- /Chapter06/LoadModel/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/LoadModel/manifest.mf -------------------------------------------------------------------------------- /Chapter06/LoadModel/myDT.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/LoadModel/myDT.model -------------------------------------------------------------------------------- /Chapter06/LoadModel/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/LoadModel/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter06/LoadModel/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/LoadModel/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter06/LoadModel/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/LoadModel/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/LoadModel/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter06/LoadModel/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/LoadModel/nbproject/private/private.xml -------------------------------------------------------------------------------- /Chapter06/LoadModel/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/LoadModel/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter06/LoadModel/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/LoadModel/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter06/LoadModel/segment-test.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/LoadModel/segment-test.arff -------------------------------------------------------------------------------- /Chapter06/LoadModel/src/loadmodel/LoadModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/LoadModel/src/loadmodel/LoadModel.java -------------------------------------------------------------------------------- /Chapter06/MakingPredictions/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/MakingPredictions/build.xml -------------------------------------------------------------------------------- /Chapter06/MakingPredictions/build/built-jar.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/MakingPredictions/build/built-jar.properties -------------------------------------------------------------------------------- /Chapter06/MakingPredictions/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/MakingPredictions/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/MakingPredictions/dist/MakingPredictions.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/MakingPredictions/dist/MakingPredictions.jar -------------------------------------------------------------------------------- /Chapter06/MakingPredictions/dist/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/MakingPredictions/dist/README.TXT -------------------------------------------------------------------------------- /Chapter06/MakingPredictions/dist/lib/weka.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/MakingPredictions/dist/lib/weka.jar -------------------------------------------------------------------------------- /Chapter06/MakingPredictions/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/MakingPredictions/manifest.mf -------------------------------------------------------------------------------- /Chapter06/MakingPredictions/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/MakingPredictions/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter06/MakingPredictions/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/MakingPredictions/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter06/MakingPredictions/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/MakingPredictions/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/MakingPredictions/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter06/MakingPredictions/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/MakingPredictions/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter06/MakingPredictions/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/MakingPredictions/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter06/MakingPredictions/segment-challenge.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/MakingPredictions/segment-challenge.arff -------------------------------------------------------------------------------- /Chapter06/MakingPredictions/segment-test.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/MakingPredictions/segment-test.arff -------------------------------------------------------------------------------- /Chapter06/MakingPredictions/src/makingpredictions/MakingPredictions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/MakingPredictions/src/makingpredictions/MakingPredictions.java -------------------------------------------------------------------------------- /Chapter06/ModelEvaluation/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/ModelEvaluation/build.xml -------------------------------------------------------------------------------- /Chapter06/ModelEvaluation/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/ModelEvaluation/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/ModelEvaluation/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/ModelEvaluation/manifest.mf -------------------------------------------------------------------------------- /Chapter06/ModelEvaluation/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/ModelEvaluation/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter06/ModelEvaluation/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/ModelEvaluation/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter06/ModelEvaluation/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/ModelEvaluation/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/ModelEvaluation/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter06/ModelEvaluation/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/ModelEvaluation/nbproject/private/private.xml -------------------------------------------------------------------------------- /Chapter06/ModelEvaluation/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/ModelEvaluation/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter06/ModelEvaluation/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/ModelEvaluation/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter06/ModelEvaluation/segment-challenge.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/ModelEvaluation/segment-challenge.arff -------------------------------------------------------------------------------- /Chapter06/ModelEvaluation/segment-test.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/ModelEvaluation/segment-test.arff -------------------------------------------------------------------------------- /Chapter06/ModelEvaluation/src/modelevaluation/ModelEvaluation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/ModelEvaluation/src/modelevaluation/ModelEvaluation.java -------------------------------------------------------------------------------- /Chapter06/SaveModel/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/SaveModel/build.xml -------------------------------------------------------------------------------- /Chapter06/SaveModel/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/SaveModel/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/SaveModel/build/classes/savemodel/SaveModel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/SaveModel/build/classes/savemodel/SaveModel.class -------------------------------------------------------------------------------- /Chapter06/SaveModel/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/SaveModel/manifest.mf -------------------------------------------------------------------------------- /Chapter06/SaveModel/myDT.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/SaveModel/myDT.model -------------------------------------------------------------------------------- /Chapter06/SaveModel/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/SaveModel/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter06/SaveModel/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/SaveModel/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter06/SaveModel/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/SaveModel/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/SaveModel/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter06/SaveModel/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/SaveModel/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter06/SaveModel/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/SaveModel/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter06/SaveModel/segment-challenge.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/SaveModel/segment-challenge.arff -------------------------------------------------------------------------------- /Chapter06/SaveModel/src/savemodel/SaveModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter06/SaveModel/src/savemodel/SaveModel.java -------------------------------------------------------------------------------- /Chapter07/ClusterEval/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/ClusterEval/build.xml -------------------------------------------------------------------------------- /Chapter07/ClusterEval/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/ClusterEval/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/ClusterEval/build/classes/clustereval/ClusterEval.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/ClusterEval/build/classes/clustereval/ClusterEval.class -------------------------------------------------------------------------------- /Chapter07/ClusterEval/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/ClusterEval/manifest.mf -------------------------------------------------------------------------------- /Chapter07/ClusterEval/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/ClusterEval/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter07/ClusterEval/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/ClusterEval/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter07/ClusterEval/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/ClusterEval/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/ClusterEval/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter07/ClusterEval/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/ClusterEval/nbproject/private/private.xml -------------------------------------------------------------------------------- /Chapter07/ClusterEval/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/ClusterEval/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter07/ClusterEval/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/ClusterEval/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter07/ClusterEval/src/clustereval/ClusterEval.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/ClusterEval/src/clustereval/ClusterEval.java -------------------------------------------------------------------------------- /Chapter07/ClusterEval/weather.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/ClusterEval/weather.arff -------------------------------------------------------------------------------- /Chapter07/ClusterEval/weather.test.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/ClusterEval/weather.test.arff -------------------------------------------------------------------------------- /Chapter07/Clustering/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/Clustering/build.xml -------------------------------------------------------------------------------- /Chapter07/Clustering/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/Clustering/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/Clustering/build/classes/clustering/Clustering.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/Clustering/build/classes/clustering/Clustering.class -------------------------------------------------------------------------------- /Chapter07/Clustering/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/Clustering/manifest.mf -------------------------------------------------------------------------------- /Chapter07/Clustering/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/Clustering/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter07/Clustering/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/Clustering/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter07/Clustering/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/Clustering/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/Clustering/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter07/Clustering/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/Clustering/nbproject/private/private.xml -------------------------------------------------------------------------------- /Chapter07/Clustering/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/Clustering/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter07/Clustering/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/Clustering/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter07/Clustering/src/clustering/Clustering.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/Clustering/src/clustering/Clustering.java -------------------------------------------------------------------------------- /Chapter07/Clustering/weather.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/Clustering/weather.arff -------------------------------------------------------------------------------- /Chapter07/SemiSuperClassifier/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/SemiSuperClassifier/build.xml -------------------------------------------------------------------------------- /Chapter07/SemiSuperClassifier/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/SemiSuperClassifier/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/SemiSuperClassifier/collective-classification-2015.2.27.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/SemiSuperClassifier/collective-classification-2015.2.27.jar -------------------------------------------------------------------------------- /Chapter07/SemiSuperClassifier/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/SemiSuperClassifier/manifest.mf -------------------------------------------------------------------------------- /Chapter07/SemiSuperClassifier/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/SemiSuperClassifier/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter07/SemiSuperClassifier/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/SemiSuperClassifier/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter07/SemiSuperClassifier/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/SemiSuperClassifier/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/SemiSuperClassifier/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter07/SemiSuperClassifier/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/SemiSuperClassifier/nbproject/private/private.xml -------------------------------------------------------------------------------- /Chapter07/SemiSuperClassifier/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/SemiSuperClassifier/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter07/SemiSuperClassifier/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/SemiSuperClassifier/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter07/SemiSuperClassifier/weather.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/SemiSuperClassifier/weather.arff -------------------------------------------------------------------------------- /Chapter07/SuperSupervised/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/SuperSupervised/build.xml -------------------------------------------------------------------------------- /Chapter07/SuperSupervised/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/SuperSupervised/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/SuperSupervised/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/SuperSupervised/manifest.mf -------------------------------------------------------------------------------- /Chapter07/SuperSupervised/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/SuperSupervised/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Chapter07/SuperSupervised/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/SuperSupervised/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Chapter07/SuperSupervised/nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/SuperSupervised/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/SuperSupervised/nbproject/private/private.properties -------------------------------------------------------------------------------- /Chapter07/SuperSupervised/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/SuperSupervised/nbproject/private/private.xml -------------------------------------------------------------------------------- /Chapter07/SuperSupervised/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/SuperSupervised/nbproject/project.properties -------------------------------------------------------------------------------- /Chapter07/SuperSupervised/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/SuperSupervised/nbproject/project.xml -------------------------------------------------------------------------------- /Chapter07/SuperSupervised/src/supersupervised/SuperSupervised.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/SuperSupervised/src/supersupervised/SuperSupervised.java -------------------------------------------------------------------------------- /Chapter07/SuperSupervised/weather.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/SuperSupervised/weather.arff -------------------------------------------------------------------------------- /Chapter07/SuperSupervised/weather.test.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/Chapter07/SuperSupervised/weather.test.arff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Artificial-Intelligence-with-Java-for-Beginners/HEAD/README.md --------------------------------------------------------------------------------