├── Chapter02 ├── __MACOSX │ ├── ._consts.go │ ├── ._main.go │ └── ._utils.go ├── consts.go ├── main.go └── utils.go ├── Chapter03 ├── __MACOSX │ ├── ._classifier.go │ ├── ._ingest.go │ └── ._main.go ├── classifier.go ├── ingest.go └── main.go ├── Chapter04 ├── 1.png ├── 10.png ├── 100.png ├── 2.png ├── 20.png ├── 5.png ├── Moana-Loa.png ├── __MACOSX │ ├── ._1.png │ ├── ._10.png │ ├── ._100.png │ ├── ._2.png │ ├── ._20.png │ ├── ._5.png │ ├── ._Moana-Loa.png │ ├── ._data.txt │ ├── ._decomposed.png │ ├── ._foo.png │ ├── ._forecast.png │ ├── ._functions.png │ ├── ._functionsGraph.go │ ├── ._lies.png │ ├── ._main.go │ ├── ._plotutil.go │ └── ._utils.go ├── data.txt ├── decomposed.png ├── foo.png ├── forecast.png ├── functions.png ├── functionsGraph.go ├── lies.png ├── main.go ├── plotutil.go └── utils.go ├── Chapter05 ├── __MACOSX │ ├── ._dev.json │ ├── ._example.json │ ├── ._knn.go │ ├── ._main.go │ ├── ._main2.go │ ├── ._one.json │ └── ._stopwords.go ├── dev.json ├── example.json ├── knn.go ├── main.go ├── main2.go ├── one.json └── stopwords.go ├── Chapter06 ├── foo.go ├── main.go ├── mnist.go ├── preprocess.go ├── rawnn.go └── utils.go ├── Chapter07 ├── main.go └── mnist.go ├── Chapter08 ├── algorithms_test.go ├── gocv.go ├── haarcascade_frontalface_default.xml └── main.go ├── LICENSE └── README.md /Chapter02/__MACOSX/._consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter02/__MACOSX/._consts.go -------------------------------------------------------------------------------- /Chapter02/__MACOSX/._main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter02/__MACOSX/._main.go -------------------------------------------------------------------------------- /Chapter02/__MACOSX/._utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter02/__MACOSX/._utils.go -------------------------------------------------------------------------------- /Chapter02/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter02/consts.go -------------------------------------------------------------------------------- /Chapter02/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter02/main.go -------------------------------------------------------------------------------- /Chapter02/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter02/utils.go -------------------------------------------------------------------------------- /Chapter03/__MACOSX/._classifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter03/__MACOSX/._classifier.go -------------------------------------------------------------------------------- /Chapter03/__MACOSX/._ingest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter03/__MACOSX/._ingest.go -------------------------------------------------------------------------------- /Chapter03/__MACOSX/._main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter03/__MACOSX/._main.go -------------------------------------------------------------------------------- /Chapter03/classifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter03/classifier.go -------------------------------------------------------------------------------- /Chapter03/ingest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter03/ingest.go -------------------------------------------------------------------------------- /Chapter03/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter03/main.go -------------------------------------------------------------------------------- /Chapter04/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/1.png -------------------------------------------------------------------------------- /Chapter04/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/10.png -------------------------------------------------------------------------------- /Chapter04/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/100.png -------------------------------------------------------------------------------- /Chapter04/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/2.png -------------------------------------------------------------------------------- /Chapter04/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/20.png -------------------------------------------------------------------------------- /Chapter04/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/5.png -------------------------------------------------------------------------------- /Chapter04/Moana-Loa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/Moana-Loa.png -------------------------------------------------------------------------------- /Chapter04/__MACOSX/._1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/__MACOSX/._1.png -------------------------------------------------------------------------------- /Chapter04/__MACOSX/._10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/__MACOSX/._10.png -------------------------------------------------------------------------------- /Chapter04/__MACOSX/._100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/__MACOSX/._100.png -------------------------------------------------------------------------------- /Chapter04/__MACOSX/._2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/__MACOSX/._2.png -------------------------------------------------------------------------------- /Chapter04/__MACOSX/._20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/__MACOSX/._20.png -------------------------------------------------------------------------------- /Chapter04/__MACOSX/._5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/__MACOSX/._5.png -------------------------------------------------------------------------------- /Chapter04/__MACOSX/._Moana-Loa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/__MACOSX/._Moana-Loa.png -------------------------------------------------------------------------------- /Chapter04/__MACOSX/._data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/__MACOSX/._data.txt -------------------------------------------------------------------------------- /Chapter04/__MACOSX/._decomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/__MACOSX/._decomposed.png -------------------------------------------------------------------------------- /Chapter04/__MACOSX/._foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/__MACOSX/._foo.png -------------------------------------------------------------------------------- /Chapter04/__MACOSX/._forecast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/__MACOSX/._forecast.png -------------------------------------------------------------------------------- /Chapter04/__MACOSX/._functions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/__MACOSX/._functions.png -------------------------------------------------------------------------------- /Chapter04/__MACOSX/._functionsGraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/__MACOSX/._functionsGraph.go -------------------------------------------------------------------------------- /Chapter04/__MACOSX/._lies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/__MACOSX/._lies.png -------------------------------------------------------------------------------- /Chapter04/__MACOSX/._main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/__MACOSX/._main.go -------------------------------------------------------------------------------- /Chapter04/__MACOSX/._plotutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/__MACOSX/._plotutil.go -------------------------------------------------------------------------------- /Chapter04/__MACOSX/._utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/__MACOSX/._utils.go -------------------------------------------------------------------------------- /Chapter04/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/data.txt -------------------------------------------------------------------------------- /Chapter04/decomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/decomposed.png -------------------------------------------------------------------------------- /Chapter04/foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/foo.png -------------------------------------------------------------------------------- /Chapter04/forecast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/forecast.png -------------------------------------------------------------------------------- /Chapter04/functions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/functions.png -------------------------------------------------------------------------------- /Chapter04/functionsGraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/functionsGraph.go -------------------------------------------------------------------------------- /Chapter04/lies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/lies.png -------------------------------------------------------------------------------- /Chapter04/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/main.go -------------------------------------------------------------------------------- /Chapter04/plotutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/plotutil.go -------------------------------------------------------------------------------- /Chapter04/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter04/utils.go -------------------------------------------------------------------------------- /Chapter05/__MACOSX/._dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter05/__MACOSX/._dev.json -------------------------------------------------------------------------------- /Chapter05/__MACOSX/._example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter05/__MACOSX/._example.json -------------------------------------------------------------------------------- /Chapter05/__MACOSX/._knn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter05/__MACOSX/._knn.go -------------------------------------------------------------------------------- /Chapter05/__MACOSX/._main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter05/__MACOSX/._main.go -------------------------------------------------------------------------------- /Chapter05/__MACOSX/._main2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter05/__MACOSX/._main2.go -------------------------------------------------------------------------------- /Chapter05/__MACOSX/._one.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter05/__MACOSX/._one.json -------------------------------------------------------------------------------- /Chapter05/__MACOSX/._stopwords.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter05/__MACOSX/._stopwords.go -------------------------------------------------------------------------------- /Chapter05/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter05/dev.json -------------------------------------------------------------------------------- /Chapter05/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter05/example.json -------------------------------------------------------------------------------- /Chapter05/knn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter05/knn.go -------------------------------------------------------------------------------- /Chapter05/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter05/main.go -------------------------------------------------------------------------------- /Chapter05/main2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter05/main2.go -------------------------------------------------------------------------------- /Chapter05/one.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter05/one.json -------------------------------------------------------------------------------- /Chapter05/stopwords.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter05/stopwords.go -------------------------------------------------------------------------------- /Chapter06/foo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter06/foo.go -------------------------------------------------------------------------------- /Chapter06/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter06/main.go -------------------------------------------------------------------------------- /Chapter06/mnist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter06/mnist.go -------------------------------------------------------------------------------- /Chapter06/preprocess.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter06/preprocess.go -------------------------------------------------------------------------------- /Chapter06/rawnn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter06/rawnn.go -------------------------------------------------------------------------------- /Chapter06/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter06/utils.go -------------------------------------------------------------------------------- /Chapter07/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter07/main.go -------------------------------------------------------------------------------- /Chapter07/mnist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter07/mnist.go -------------------------------------------------------------------------------- /Chapter08/algorithms_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter08/algorithms_test.go -------------------------------------------------------------------------------- /Chapter08/gocv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter08/gocv.go -------------------------------------------------------------------------------- /Chapter08/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter08/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /Chapter08/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/Chapter08/main.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Go-Machine-Learning-Projects/HEAD/README.md --------------------------------------------------------------------------------