Skip to content

Commit a5ac3a8

Browse files
committed
add readme
1 parent 73bbd51 commit a5ac3a8

File tree

3 files changed

+96
-0
lines changed

3 files changed

+96
-0
lines changed

.other/cover_1.jpg

29.5 KB
Loading

LICENSE.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2019 SEBASTIAN RASCHKA ([email protected])
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
## Python Machine Learning (3rd Ed.) Code Repository
2+
3+
![Python 3.6](https://img.shields.io/badge/Python-3.7-blue.svg)
4+
![License](https://img.shields.io/badge/Code%20License-MIT-blue.svg)
5+
6+
Code repositories for the 1st and 2nd edition are available at
7+
8+
- https://github.com/rasbt/python-machine-learning-book and
9+
- https://github.com/rasbt/python-machine-learning-book-2nd-edition
10+
11+
**Python Machine Learning, 3rd Ed.**
12+
13+
to be published December 9th, 2019
14+
15+
Paperback: 748 pages
16+
Publisher: Packt Publishing
17+
Language: English
18+
19+
ISBN-10: 1789955750
20+
ISBN-13: 978-1789955750
21+
Kindle ASIN: B07VBLX2W7
22+
23+
[<img src="./.other/cover_1.jpg" width="248">](https://www.amazon.com/Python-Machine-Learning-scikit-learn-TensorFlow/dp/1789955750/)
24+
25+
26+
## Links
27+
28+
- [Amazon Page](https://www.amazon.com/Python-Machine-Learning-scikit-learn-TensorFlow/dp/1789955750/)
29+
- [Packt Page](https://www.packtpub.com/data/python-machine-learning-third-edition)
30+
31+
32+
33+
## Table of Contents and Code Notebooks
34+
35+
**Helpful installation and setup instructions can be found in the [README.md file of Chapter 1](ch01/README.md)**
36+
37+
**Please note that these are just the code examples accompanying the book, which we uploaded for your convenience; be aware that these notebooks may not be useful without the formulae and descriptive text.**
38+
39+
40+
1. Machine Learning - Giving Computers the Ability to Learn from Data [[open dir](ch01)]
41+
2. Training Machine Learning Algorithms for Classification [[open dir](ch02)]
42+
3. A Tour of Machine Learning Classifiers Using Scikit-Learn [[open dir](ch03)]
43+
4. Building Good Training Sets – Data Pre-Processing [[open dir](ch04)]
44+
5. Compressing Data via Dimensionality Reduction [[open dir](ch05)]
45+
6. Learning Best Practices for Model Evaluation and Hyperparameter Optimization [[open dir](ch06)]
46+
7. Combining Different Models for Ensemble Learning [[open dir](ch07)]
47+
8. Applying Machine Learning to Sentiment Analysis [[open dir](ch08)]
48+
9. Embedding a Machine Learning Model into a Web Application [[open dir](ch09)]
49+
10. Predicting Continuous Target Variables with Regression Analysis [[open dir](ch10)]
50+
11. Working with Unlabeled Data – Clustering Analysis [[open dir](ch11)]
51+
12. Implementing a Multi-layer Artificial Neural Network from Scratch [[open dir](ch12)]
52+
13. Parallelizing Neural Network Training with TensorFlow [[open dir](ch13)]
53+
14. Going Deeper: The Mechanics of TensorFlow [[open dir](ch14)]
54+
15. Classifying Images with Deep Convolutional Neural Networks [[open dir](ch15)]
55+
16. Modeling Sequential Data Using Recurrent Neural Networks [[open dir](ch16)]
56+
17. Generative Adversarial Networks for Synthesizing New Data [[open dir](ch17)]
57+
18. Reinforcement Learning for Decision Making in Complex Environments [[open dir](ch18)]
58+
59+
60+
---
61+
62+
<br>
63+
<br>
64+
65+
Raschka, Sebastian, and Vahid Mirjalili. *Python Machine Learning, 3rd Ed*. Packt Publishing, 2019.
66+
67+
@book{RaschkaMirjalili2019,
68+
address = {Birmingham, UK},
69+
author = {Raschka, Sebastian and Mirjalili, Vahid},
70+
edition = {3},
71+
isbn = {978-1789955750},
72+
publisher = {Packt Publishing},
73+
title = {{Python Machine Learning, 3rd Ed.}},
74+
year = {2019}
75+
}

0 commit comments

Comments
 (0)