All Projects → PacktPublishing → Python Machine Learning Second Edition

PacktPublishing / Python Machine Learning Second Edition

Licence: mit
Python Machine Learning - Second Edition, published by Packt

Projects that are alternatives of or similar to Python Machine Learning Second Edition

Carnd Vehicle Detection
Vehicle detection using YOLO in Keras runs at 21FPS
Stars: ✭ 367 (-2.39%)
Mutual labels:  jupyter-notebook
Tf 2.0 Hacks
Contains my explorations of TensorFlow 2.x
Stars: ✭ 369 (-1.86%)
Mutual labels:  jupyter-notebook
Interesting Python
有趣的Python爬虫和Python数据分析小项目(Some interesting Python crawlers and data analysis projects)
Stars: ✭ 3,927 (+944.41%)
Mutual labels:  jupyter-notebook
Audionotebooks
Collection of notebooks and scripts related to audio processing and machine learning.
Stars: ✭ 366 (-2.66%)
Mutual labels:  jupyter-notebook
Handson Unsupervised Learning
Code for Hands-on Unsupervised Learning Using Python (O'Reilly Media)
Stars: ✭ 369 (-1.86%)
Mutual labels:  jupyter-notebook
Python Course
Tutorial and introduction into programming with Python for the humanities and social sciences
Stars: ✭ 370 (-1.6%)
Mutual labels:  jupyter-notebook
Nerf pl
NeRF (Neural Radiance Fields) and NeRF in the Wild using pytorch-lightning
Stars: ✭ 362 (-3.72%)
Mutual labels:  jupyter-notebook
Data Analysis
Data Science Using Python
Stars: ✭ 4,080 (+985.11%)
Mutual labels:  jupyter-notebook
Covid19pt Data
😷️🇵🇹 Dados relativos à pandemia COVID-19 em Portugal
Stars: ✭ 362 (-3.72%)
Mutual labels:  jupyter-notebook
Data Science
Collection of useful data science topics along with code and articles
Stars: ✭ 315 (-16.22%)
Mutual labels:  jupyter-notebook
Pyfolio
Portfolio and risk analytics in Python
Stars: ✭ 4,167 (+1008.24%)
Mutual labels:  jupyter-notebook
Fbrs interactive segmentation
[CVPR2020] f-BRS: Rethinking Backpropagating Refinement for Interactive Segmentation https://arxiv.org/abs/2001.10331
Stars: ✭ 366 (-2.66%)
Mutual labels:  jupyter-notebook
Deep Learning Illustrated
Deep Learning Illustrated (2020)
Stars: ✭ 372 (-1.06%)
Mutual labels:  jupyter-notebook
Integrated Gradients
Attributing predictions made by the Inception network using the Integrated Gradients method
Stars: ✭ 365 (-2.93%)
Mutual labels:  jupyter-notebook
Learn Python3
Jupyter notebooks for teaching/learning Python 3
Stars: ✭ 4,418 (+1075%)
Mutual labels:  jupyter-notebook
Easy Deep Learning With Keras
Keras tutorial for beginners (using TF backend)
Stars: ✭ 367 (-2.39%)
Mutual labels:  jupyter-notebook
Causal Inference Tutorial
Repository with code and slides for a tutorial on causal inference.
Stars: ✭ 368 (-2.13%)
Mutual labels:  jupyter-notebook
Over9000
Over9000 optimizer
Stars: ✭ 375 (-0.27%)
Mutual labels:  jupyter-notebook
Deep Learning
Repo for the Deep Learning Nanodegree Foundations program.
Stars: ✭ 3,782 (+905.85%)
Mutual labels:  jupyter-notebook
Matlab kernel
Jupyter Kernel for Matlab
Stars: ✭ 373 (-0.8%)
Mutual labels:  jupyter-notebook

Python Machine Learning - Second Edition

This is the code repository for Python Machine Learning - Second Edition, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

This highly acclaimed book has been extended and modernized to now include the popular TensorFlow deep learning library. The scikit-learn code has also been fully updated to include recent improvements and additions to this versatile machine learning library. The result is a new edition of this classic book at the cutting edge of machine learning.

Instructions and Navigation

All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.

The code will look like the following:

>>> from sklearn.neighbors import KNeighborsClassifier
>>> knn = KNeighborsClassifier(n_neighbors=5, p=2,
... metric='minkowski')
>>> knn.fit(X_train_std, y_train)
>>> plot_decision_regions(X_combined_std, y_combined,
... classifier=knn, test_idx=range(105,150))
>>> plt.xlabel('petal length [standardized]')
>>> plt.ylabel('petal width [standardized]')
>>> plt.show()

The execution of the code examples provided in this book requires an installation of Python 3.6.0 or newer on macOS, Linux, or Microsoft Windows. We will make frequent use of Python's essential libraries for scientific computing throughout this book, including SciPy, NumPy, scikit-learn, Matplotlib, and pandas.The first chapter will provide you with instructions and useful tips to set up your Python environment and these core libraries. We will add additional libraries to our repertoire; moreover, installation instructions are provided in the respective chapters: the NLTK library for natural language processing (Chapter 8, Applying Machine Learning to Sentiment Analysis), the Flask web framework (Chapter 9, Embedding a Machine Learning Algorithm into a Web Application), the Seaborn library for statistical data visualization (Chapter 10, Predicting Continuous Target Variables with Regression Analysis), and TensorFlow for efficient neural network training on graphical processing units (Chapters 13 to 16). You can also find the code files at the following link: https://github.com/rasbt/python-machine-learning-book-2nd-edition

Related Products

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].