Cargando…

Clojure for machine learning : successfully leverage advanced machine learning techniques using the Clojure ecosystem /

A book that brings out the strengths of Clojure programming that have to facilitate machine learning. Each topic is described in substantial detail, and examples and libraries in Clojure are also demonstrated. This book is intended for Clojure developers who want to explore the area of machine learn...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Wali, Akhil (Autor)
Otros Autores: Blaminsky, Jarek (Diseñador de portada)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham, England : Packt Publishing, 2014.
Colección:Community experience distilled.
Temas:
Acceso en línea:Texto completo

MARC

LEADER 00000cam a2200000 i 4500
001 EBSCO_ocn880454401
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cn|||||||||
008 140508t20142014enka ob 001 0 eng d
040 |a E7B  |b eng  |e rda  |e pn  |c E7B  |d YDXCP  |d UMI  |d OCLCO  |d DEBBG  |d DEBSZ  |d OCLCQ  |d OCLCF  |d D6H  |d COCUF  |d CNNOR  |d MOR  |d CCO  |d PIFAG  |d N$T  |d IDEBK  |d MHW  |d EBLCP  |d S4S  |d COO  |d FEM  |d OCLCQ  |d OCLCO  |d ZCU  |d AGLDB  |d MERUC  |d OCLCQ  |d U3W  |d REB  |d STF  |d OCLCQ  |d VTS  |d CEF  |d ICG  |d NLE  |d INT  |d VT2  |d UKMGB  |d OCLCQ  |d OCLCO  |d G3B  |d TKN  |d OCLCQ  |d OCLCO  |d UAB  |d DKC  |d AU@  |d OCLCQ  |d UKAHL  |d HS0  |d OCLCQ  |d INARC  |d OCLCQ  |d OCLCO  |d QGK  |d OCLCQ 
016 7 |a 018006532  |2 Uk 
019 |a 878920301  |a 880677919  |a 968005584  |a 969067509  |a 1259180143 
020 |a 9781783284368  |q (e-book) 
020 |a 1783284366  |q (e-book) 
020 |a 1783284358 
020 |a 9781783284351 
020 |a 1306704561 
020 |a 9781306704564 
020 |z 9781783284351 
029 1 |a AU@  |b 000056901329 
029 1 |a AU@  |b 000067103512 
029 1 |a CHNEW  |b 000697666 
029 1 |a CHNEW  |b 000887414 
029 1 |a CHVBK  |b 37446331X 
029 1 |a DEBBG  |b BV042032894 
029 1 |a DEBBG  |b BV043608830 
029 1 |a DEBSZ  |b 405716133 
029 1 |a DEBSZ  |b 414183703 
029 1 |a DEBSZ  |b 493144277 
029 1 |a DKDLA  |b 820030-katalog:1870151 
029 1 |a GBVCP  |b 882840096 
029 1 |a UKMGB  |b 018006532 
035 |a (OCoLC)880454401  |z (OCoLC)878920301  |z (OCoLC)880677919  |z (OCoLC)968005584  |z (OCoLC)969067509  |z (OCoLC)1259180143 
037 |a CL0500000438  |b Safari Books Online 
050 4 |a QA76.73.J38  |b .W355 2014eb 
072 7 |a COM  |x 051280  |2 bisacsh 
072 7 |a COM  |x 051010  |2 bisacsh 
082 0 4 |a 005.133  |2 23 
049 |a UAMI 
100 1 |a Wali, Akhil,  |e author. 
245 1 0 |a Clojure for machine learning :  |b successfully leverage advanced machine learning techniques using the Clojure ecosystem /  |c Akhil Wali ; cover image by Jarek Blaminsky. 
264 1 |a Birmingham, England :  |b Packt Publishing,  |c 2014. 
264 4 |c ©2014 
300 |a 1 online resource (292 pages) :  |b illustrations (some color) 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
490 1 |a Community Experience Distilled 
504 |a Includes bibliographical references and index. 
588 0 |a Online resource; title from PDF title page (EBSCO, viewed July 10, 2017). 
520 |a A book that brings out the strengths of Clojure programming that have to facilitate machine learning. Each topic is described in substantial detail, and examples and libraries in Clojure are also demonstrated. This book is intended for Clojure developers who want to explore the area of machine learning. Basic understanding of the Clojure programming language is required, but thorough acquaintance with the standard Clojure library or any libraries are not required. Familiarity with theoretical concepts and notation of mathematics and statistics would be an added advantage. 
505 0 |a Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Working with Matrices; Introducing Leiningen; Representing matrices; Generating matrices; Adding matrices; Multiplying matrices; Transposing and inverting matrices; Interpolating using matrices; Summary; Chapter 2: Understanding Linear Regression; Understanding single-variable linear regression; Understanding gradient descent; Understanding multivariable linear regression; Gradient descent with multiple variables; Understanding ordinary least squares 
505 8 |a Using linear regression for predictionUnderstanding regularization; Summary; Chapter 3: Categorizing Data; Understanding binary and multiclass classification; Understanding the Bayesian classification; Using the k-nearest neighbors algorithm; Using decision trees; Summary; Chapter 4: Building Neural Networks; Understanding nonlinear regression; Representing neural networks; Understanding multilayer perceptron ANNs; Understanding the backpropagation algorithm; Understanding recurrent neural networks; Building SOMs; Summary; Chapter 5: Selecting and Evaluating Data 
505 8 |a Understanding underfitting and overfittingEvaluating a model; Understanding feature selection; Varying the regularization parameter; Understanding learning curves; Improving a model; Using cross-validation; Building a spam classifier; Summary; Chapter 6: Building Support Vector Machines; Understanding large margin classification; Alternative forms of SVMs; Linear classification using SVMs; Using kernel SVMs; Sequential minimal optimization; Using kernel functions; Summary; Chapter 7: Clustering Data; Using K-means clustering; Clustering data using clj-ml; Using hierarchical clustering 
505 8 |a Using Expectation-MaximizationUsing SOMs; Reducing dimensions in the data; Summary; Chapter 8: Anomaly Detection and Recommendation; Detecting anomalies; Building recommendation systems; Content-based filtering; Collaborative filtering; Using the Slope One algorithm; Summary; Chapter 9: Large-scale Machine Learning; Using MapReduce; Querying and storing datasets; Machine learning in the cloud; Summary; Appendix: References; Index 
546 |a English. 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
630 0 0 |a Java virtual machine. 
630 0 7 |a Java virtual machine.  |2 fast  |0 (OCoLC)fst01387764 
650 0 |a Java (Computer program language) 
650 0 |a Clojure (Computer program language) 
650 6 |a Java (Langage de programmation) 
650 6 |a Clojure (Langage de programmation) 
650 7 |a COMPUTERS  |x Programming Languages  |x Java.  |2 bisacsh 
650 7 |a COMPUTERS  |x Programming Languages  |x General.  |2 bisacsh 
650 7 |a Clojure (Computer program language)  |2 fast  |0 (OCoLC)fst01893276 
650 7 |a Java (Computer program language)  |2 fast  |0 (OCoLC)fst00982065 
700 1 |a Blaminsky, Jarek,  |e cover designer. 
776 0 8 |i Print version:  |a Wali, Akhil.  |t Clojure for machine learning : successfully leverage advanced machine learning techniques using the Clojure ecosystem.  |d Birmingham, England : Packt Publishing, ©2014  |h iii, 276 pages  |k Community experience distilled.  |z 9781783284351 
830 0 |a Community experience distilled. 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=769276  |z Texto completo 
936 |a BATCHLOAD 
938 |a Askews and Holts Library Services  |b ASKH  |n AH26410480 
938 |a ebrary  |b EBRY  |n ebr10865426 
938 |a EBSCOhost  |b EBSC  |n 769276 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis28268106 
938 |a Internet Archive  |b INAR  |n clojureformachin0000wali 
938 |a YBP Library Services  |b YANK  |n 11791432 
994 |a 92  |b IZTAP