A hands-on introduction to machine learning:
Gespeichert in:
Beteilige Person: | |
---|---|
Format: | Buch |
Sprache: | Englisch |
Veröffentlicht: |
Cambridge
Cambridge University Press
2023
|
Schlagwörter: | |
Links: | http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=034069485&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |
Umfang: | xxii, 412 Seiten Illustrationen, Diagramme |
ISBN: | 9781009123303 |
Internformat
MARC
LEADER | 00000nam a22000001c 4500 | ||
---|---|---|---|
001 | BV048803394 | ||
003 | DE-604 | ||
005 | 20230406 | ||
007 | t| | ||
008 | 230207s2023 xx a||| |||| 00||| eng d | ||
020 | |a 9781009123303 |c Gebunden : EUR 53,20 |9 978-1-009-12330-3 | ||
035 | |a (OCoLC)1369628264 | ||
035 | |a (DE-599)KXP1830600001 | ||
040 | |a DE-604 |b ger |e rda | ||
041 | 0 | |a eng | |
049 | |a DE-355 |a DE-20 |a DE-945 |a DE-83 |a DE-898 | ||
082 | 0 | |a 006.312 | |
084 | |a ST 300 |0 (DE-625)143650: |2 rvk | ||
100 | 1 | |a Shah, Chirag |d 1978- |e Verfasser |0 (DE-588)1032412291 |4 aut | |
245 | 1 | 0 | |a A hands-on introduction to machine learning |c Chirag Shah, University of Washington |
264 | 1 | |a Cambridge |b Cambridge University Press |c 2023 | |
300 | |a xxii, 412 Seiten |b Illustrationen, Diagramme | ||
336 | |b txt |2 rdacontent | ||
337 | |b n |2 rdamedia | ||
338 | |b nc |2 rdacarrier | ||
650 | 0 | 7 | |a Maschinelles Lernen |0 (DE-588)4193754-5 |2 gnd |9 rswk-swf |
650 | 0 | 7 | |a Cloud Computing |0 (DE-588)7623494-0 |2 gnd |9 rswk-swf |
650 | 0 | 7 | |a Soziale Verantwortung |0 (DE-588)4055737-6 |2 gnd |9 rswk-swf |
653 | 0 | |a COMPUTERS / Computer Vision & Pattern Recognition | |
653 | 0 | |a Knowledge management | |
653 | 0 | |a Künstliche Intelligenz | |
653 | 0 | |a Machine learning | |
655 | 7 | |0 (DE-588)4123623-3 |a Lehrbuch |2 gnd-content | |
689 | 0 | 0 | |a Maschinelles Lernen |0 (DE-588)4193754-5 |D s |
689 | 0 | 1 | |a Cloud Computing |0 (DE-588)7623494-0 |D s |
689 | 0 | 2 | |a Soziale Verantwortung |0 (DE-588)4055737-6 |D s |
689 | 0 | |C b |5 DE-604 | |
856 | 4 | 2 | |m Digitalisierung UB Regensburg - ADAM Catalogue Enrichment |q application/pdf |u http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=034069485&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |3 Inhaltsverzeichnis |
943 | 1 | |a oai:aleph.bib-bvb.de:BVB01-034069485 |
Datensatz im Suchindex
_version_ | 1819299858943574016 |
---|---|
adam_text | Contents 1 Preface Acknowledgments About the Author page xiii xix xxi Parti Basic Concepts 1 Teaching Computers to Write Programs 1.1 What Is Machine Learning? 1.2 Branches of Machine Learning 1.3 What Do You Need for Machine Learning? 1.3.1 Skills 1.3.2 Tools 1.4 Computational Thinking 1.5 Issues of Ethics, Bias, and Privacy in Machine Learning 1.6 Summary Key Terms Conceptual Questions Hands-on Problems . Further Reading and Resources 2 Python 2.1 Introduction 2.2 Getting Access to Python 2.2.1 Download and Install Python 2.2.2 Running Python through the Console 2.2.3 Using Python through an Integrated Development Environment 2.3 Basic Examples 2.4 Control Structures 2.5 Functions 2.6 Making Python Interactive 2.7 Installing and Using Python Packages 2.7.1 Spyder 2.7.2 Jupyter Notebook 2.7.3 Google Colab vii 3 3 9 11 11 13 15 18 19 20 20 21 25 26 26 26 26 27 27 29 32 34 36 36 37 37 37
2.8 Statistics Essentials 2.8.1 Importing Data 2.8.2 Plotting the Data 2.8.3 Correlation 2.9 Summary Key Terms Conceptual Questions Hands-on Problems Further Reading and Resources 3 Cloud Computing 3.1 Cloud Computing 3.2 Google Cloud Platform 3.2.1 Hadoop 3.3 Microsoft Azure 3.4 Amazon Web Services 3.5 Moving between Cloud Platforms 3.6 Summary Key Terms Conceptual Questions Hands-on Problems Further Reading and Resources 39 42 43 44 45 45 46 46 48 49 49 50 53 59 66 75 75 76 76 76 77 Part II Supervised Learning 4 Regression 4.1 Introduction 4.2 Linear Regression 4.3 Multiple Linear Regression 4.4 Ridge and Lasso Regression 4.5 Gradient Descent 4.6 Considerations for ML Modeling 4.6.1 Accuracy 4.6.2 Training-Testing 4.6.3 Training Time 4.6.4 Linearity 4.6.5 Number of Hyperparameters 4.6.6 Number of Features 4.6.7 Choosing the Right Estimator 4.7 Summary Key Terms Conceptual Questions Hands-on Problems Further Reading and Resources 81 81 82 91 96 98 110 111 111 111 111 112 112 112 113 113 114 114 117
Contents Classification 1 5.1 Introduction 5.2 Classification with ¿-Nearest Neighbors 5.3 Decision Tree 5.3.1 Decision Rule 5.3.2 Classification Rule 5.3.3 Association Rule 5.4 Random Forest 5.5 Summary Key Terms Conceptual Questions Hands-on Problems Further Reading and Resources Classification 2 6.1 Introduction 6.2 Logistic Regression 6.3 Softmax Regression 6.4 Naïve Bayes 6.5 Support Vector Machine 6.6 Summary Key Terms Conceptual Questions Hands-on Problems Further Reading and Resources 118 118 119 123 127 127 128 132 137 137 138 138 143 144 144 145 152 154 159 165 166 166 167 170 Part III Unsupervised Learning Clustering 7.1 Introduction 7.2 Divisive Clustering 7.2.1 Divisive Clustering with ¿-Means 7.2.2 Divisive Clustering with ¿-Modes 7.3 Agglomerative Clustering 7.4 Expectation Maximization 7.5 Density Estimation 7.6 Summary Key Terms Conceptual Questions Hands-on Problems Further Reading and Resources 175 175 176 179 182 186 192 196 199 200 200 200 204
Contents Dimensionality Reduction 8.1 Introduction 8.2 Feature Selection 8.3 Principal Component Analysis 8.4 Linear Discriminant Analysis 8.5 Summary Key Terms Conceptual Questions Hands-on Problems Further Reading and Resources 206 206 207 214 218 221 222 222 222 223 Part IV Neural Networks Neural Networks 9.1 Mimicking the Human Brain 9.1.1 Basics of a Neural Network 9.1.2 Human vs. Artificial Neuron 9.2 Architectures of Basic Neural Networks 9.2.1 Feed-Forward Network 9.2.2 Perceptrons 9.2.3 Single-Layer Perceptron 9.2.4 Multilayer Perceptron 9.3 Autoencoders 9.4 Convolution Neural Network 9.5 Recurrent Neural Network 9.6 Long Short-Term Memory 9.7 Summary Key Terms Conceptual Questions Hands-on Problems Further Reading and Resources Deep Learning 10.1 Introduction 10.2 When and How to Use a Deep Model 10.3 Building Your First Deep Learning Model with Python 10.4 Building a Classifier with Deep Learning 10.5 Using Deep Models for Embeddings 10.6 Encoders and Transformers 10.6.1 Input Embeddings 10.6.2 Positional Encoding 10.6.3 Encoder Layer 10.6.4 Multi-headed Attention 10.7 Summary 227 227 228 228 229 231 231 232 235 243 247 251 256 259 260 260 261 263 264 264 265 266 272 278 283 285 285 286 286 297
Contents xi Key Terms Conceptual Questions Hands-on Problems Further Reading and Resources 298 298 299 300 Part V Further Explorations 11 Reinforcement Learning 11.1 Introduction 11.2 Conceptualizing RL 11.3 Doing RL by Hand 11.4 2֊ learning 11.5 Bandits 11.5.1 Multi-arm Bandits 11.5.2 Contextual Bandits 11.6 Summary Key Terms Conceptual Questions Hands-on Problems Further Reading and Resources 303 303 304 306 311 315 316 316 322 323 323 323 324 12 Designing and Evaluating ML Systems 12.1 Introduction 12.2 Thinking through an ML Solution 326 326 327 331 331 335 337 340 344 344 345 345 346 347 Evaluation 12.3.1 Offline Evaluation 12.3.2 User Research 12.3.3 A/В Testing 12.3.4 Counterfactual Evaluation 12.3.5 Adversarial Learning 12.4 Summary Key Terms Conceptual Questions Hands-on Problems Further Reading and Resources 12.3 13 Responsible Al 13.1 13.2 13.3 13.4 Introduction Diversity vs. Misinformation: A Case Study Responsible AI in Academia, Industry, and Regulations Bias and Fairness 13.4.1 Where Does Bias Come From? 13.4.2 Bias Is Everywhere 13.4.3 Bias vs. Fairness 348 348 349 352 353 353 354 355
Contents xii 13.5 Accountability and Auditing 13.6 Transparency and Explainability 13.7 Summary Key Terms Conceptual Questions Hands-on Problems Further Reading and Resources Appendices Index 356 358 361 363 363 363 364 367 405
|
any_adam_object | 1 |
author | Shah, Chirag 1978- |
author_GND | (DE-588)1032412291 |
author_facet | Shah, Chirag 1978- |
author_role | aut |
author_sort | Shah, Chirag 1978- |
author_variant | c s cs |
building | Verbundindex |
bvnumber | BV048803394 |
classification_rvk | ST 300 |
ctrlnum | (OCoLC)1369628264 (DE-599)KXP1830600001 |
dewey-full | 006.312 |
dewey-hundreds | 000 - Computer science, information, general works |
dewey-ones | 006 - Special computer methods |
dewey-raw | 006.312 |
dewey-search | 006.312 |
dewey-sort | 16.312 |
dewey-tens | 000 - Computer science, information, general works |
discipline | Informatik |
format | Book |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>01846nam a22004331c 4500</leader><controlfield tag="001">BV048803394</controlfield><controlfield tag="003">DE-604</controlfield><controlfield tag="005">20230406 </controlfield><controlfield tag="007">t|</controlfield><controlfield tag="008">230207s2023 xx a||| |||| 00||| eng d</controlfield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9781009123303</subfield><subfield code="c">Gebunden : EUR 53,20</subfield><subfield code="9">978-1-009-12330-3</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)1369628264</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(DE-599)KXP1830600001</subfield></datafield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">DE-604</subfield><subfield code="b">ger</subfield><subfield code="e">rda</subfield></datafield><datafield tag="041" ind1="0" ind2=" "><subfield code="a">eng</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-355</subfield><subfield code="a">DE-20</subfield><subfield code="a">DE-945</subfield><subfield code="a">DE-83</subfield><subfield code="a">DE-898</subfield></datafield><datafield tag="082" ind1="0" ind2=" "><subfield code="a">006.312</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">ST 300</subfield><subfield code="0">(DE-625)143650:</subfield><subfield code="2">rvk</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Shah, Chirag</subfield><subfield code="d">1978-</subfield><subfield code="e">Verfasser</subfield><subfield code="0">(DE-588)1032412291</subfield><subfield code="4">aut</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">A hands-on introduction to machine learning</subfield><subfield code="c">Chirag Shah, University of Washington</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">Cambridge</subfield><subfield code="b">Cambridge University Press</subfield><subfield code="c">2023</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">xxii, 412 Seiten</subfield><subfield code="b">Illustrationen, Diagramme</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="b">txt</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="b">n</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="b">nc</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">Maschinelles Lernen</subfield><subfield code="0">(DE-588)4193754-5</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">Cloud Computing</subfield><subfield code="0">(DE-588)7623494-0</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">Soziale Verantwortung</subfield><subfield code="0">(DE-588)4055737-6</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="653" ind1=" " ind2="0"><subfield code="a">COMPUTERS / Computer Vision & Pattern Recognition</subfield></datafield><datafield tag="653" ind1=" " ind2="0"><subfield code="a">Knowledge management</subfield></datafield><datafield tag="653" ind1=" " ind2="0"><subfield code="a">Künstliche Intelligenz</subfield></datafield><datafield tag="653" ind1=" " ind2="0"><subfield code="a">Machine learning</subfield></datafield><datafield tag="655" ind1=" " ind2="7"><subfield code="0">(DE-588)4123623-3</subfield><subfield code="a">Lehrbuch</subfield><subfield code="2">gnd-content</subfield></datafield><datafield tag="689" ind1="0" ind2="0"><subfield code="a">Maschinelles Lernen</subfield><subfield code="0">(DE-588)4193754-5</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2="1"><subfield code="a">Cloud Computing</subfield><subfield code="0">(DE-588)7623494-0</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2="2"><subfield code="a">Soziale Verantwortung</subfield><subfield code="0">(DE-588)4055737-6</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2=" "><subfield code="C">b</subfield><subfield code="5">DE-604</subfield></datafield><datafield tag="856" ind1="4" ind2="2"><subfield code="m">Digitalisierung UB Regensburg - ADAM Catalogue Enrichment</subfield><subfield code="q">application/pdf</subfield><subfield code="u">http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=034069485&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA</subfield><subfield code="3">Inhaltsverzeichnis</subfield></datafield><datafield tag="943" ind1="1" ind2=" "><subfield code="a">oai:aleph.bib-bvb.de:BVB01-034069485</subfield></datafield></record></collection> |
genre | (DE-588)4123623-3 Lehrbuch gnd-content |
genre_facet | Lehrbuch |
id | DE-604.BV048803394 |
illustrated | Illustrated |
indexdate | 2024-12-20T19:52:19Z |
institution | BVB |
isbn | 9781009123303 |
language | English |
oai_aleph_id | oai:aleph.bib-bvb.de:BVB01-034069485 |
oclc_num | 1369628264 |
open_access_boolean | |
owner | DE-355 DE-BY-UBR DE-20 DE-945 DE-83 DE-898 DE-BY-UBR |
owner_facet | DE-355 DE-BY-UBR DE-20 DE-945 DE-83 DE-898 DE-BY-UBR |
physical | xxii, 412 Seiten Illustrationen, Diagramme |
publishDate | 2023 |
publishDateSearch | 2023 |
publishDateSort | 2023 |
publisher | Cambridge University Press |
record_format | marc |
spellingShingle | Shah, Chirag 1978- A hands-on introduction to machine learning Maschinelles Lernen (DE-588)4193754-5 gnd Cloud Computing (DE-588)7623494-0 gnd Soziale Verantwortung (DE-588)4055737-6 gnd |
subject_GND | (DE-588)4193754-5 (DE-588)7623494-0 (DE-588)4055737-6 (DE-588)4123623-3 |
title | A hands-on introduction to machine learning |
title_auth | A hands-on introduction to machine learning |
title_exact_search | A hands-on introduction to machine learning |
title_full | A hands-on introduction to machine learning Chirag Shah, University of Washington |
title_fullStr | A hands-on introduction to machine learning Chirag Shah, University of Washington |
title_full_unstemmed | A hands-on introduction to machine learning Chirag Shah, University of Washington |
title_short | A hands-on introduction to machine learning |
title_sort | a hands on introduction to machine learning |
topic | Maschinelles Lernen (DE-588)4193754-5 gnd Cloud Computing (DE-588)7623494-0 gnd Soziale Verantwortung (DE-588)4055737-6 gnd |
topic_facet | Maschinelles Lernen Cloud Computing Soziale Verantwortung Lehrbuch |
url | http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=034069485&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |
work_keys_str_mv | AT shahchirag ahandsonintroductiontomachinelearning |