All Projects → PacktPublishing → Python High Performance Second Edition

PacktPublishing / Python High Performance Second Edition

Licence: mit
Python High Performance – Second Edition, published by Packt

Projects that are alternatives of or similar to Python High Performance Second Edition

Dash 120million Taxi App
Explore 120 million taxi trips in real time with Dash and Vaex
Stars: ✭ 77 (+0%)
Mutual labels:  jupyter-notebook
Nds
On Network Design Spaces for Visual Recognition
Stars: ✭ 77 (+0%)
Mutual labels:  jupyter-notebook
Nlp
Generic codes related to NLP
Stars: ✭ 77 (+0%)
Mutual labels:  jupyter-notebook
Itversity Books
Stars: ✭ 76 (-1.3%)
Mutual labels:  jupyter-notebook
Math And Ml Notes
Books, papers and links to latest research in ML/AI
Stars: ✭ 76 (-1.3%)
Mutual labels:  jupyter-notebook
Tadam
The implementation of https://papers.nips.cc/paper/7352-tadam-task-dependent-adaptive-metric-for-improved-few-shot-learning
Stars: ✭ 77 (+0%)
Mutual labels:  jupyter-notebook
Shot Detection Benchmarks
A comparison of ffmpeg, Shotdetect and PySceneDetect for shot transition detection
Stars: ✭ 76 (-1.3%)
Mutual labels:  jupyter-notebook
Download Large File From Google Drive Using Python
Stars: ✭ 77 (+0%)
Mutual labels:  jupyter-notebook
Nltk Python Cn
创建《Python自然语言处理》学习代码的中文注释版本。
Stars: ✭ 77 (+0%)
Mutual labels:  jupyter-notebook
Reinforcement Learning
Reinforcement learning material, code and exercises for Udacity Nanodegree programs.
Stars: ✭ 77 (+0%)
Mutual labels:  jupyter-notebook
Object Cxr
Automatic detection of foreign objects on chest X-rays
Stars: ✭ 77 (+0%)
Mutual labels:  jupyter-notebook
Deepfakedetection
Stars: ✭ 77 (+0%)
Mutual labels:  jupyter-notebook
Machine Learning Without Any Libraries
This is a collection of some of the important machine learning algorithms which are implemented with out using any libraries. Libraries such as numpy and pandas are used to improve computational complexity of algorithms
Stars: ✭ 77 (+0%)
Mutual labels:  jupyter-notebook
Maskdetect Yolov4 Pytorch
基于PyTorch&YOLOv4实现的口罩佩戴检测 ⭐️ 自建口罩数据集分享
Stars: ✭ 77 (+0%)
Mutual labels:  jupyter-notebook
Tensorflow 1x Deep Learning Cookbook
TensorFlow 1.x Deep Learning Cookbook, published by Packt
Stars: ✭ 77 (+0%)
Mutual labels:  jupyter-notebook
Intro To Sklearn
Notebooks covering introductory material to ML, ML with sklearn and tips.
Stars: ✭ 76 (-1.3%)
Mutual labels:  jupyter-notebook
Coreml Training
Source code for my blog post series "On-device training with Core ML"
Stars: ✭ 77 (+0%)
Mutual labels:  jupyter-notebook
Hyperlearn
50% faster, 50% less RAM Machine Learning. Numba rewritten Sklearn. SVD, NNMF, PCA, LinearReg, RidgeReg, Randomized, Truncated SVD/PCA, CSR Matrices all 50+% faster
Stars: ✭ 1,204 (+1463.64%)
Mutual labels:  jupyter-notebook
Applied Social Network Analysis In Python
Course - 5; Specialization: Applied Data Science with Python; University Of Michigan
Stars: ✭ 77 (+0%)
Mutual labels:  jupyter-notebook
Predictive Models
A repo of the Data Scientist team's open source predictive models.
Stars: ✭ 77 (+0%)
Mutual labels:  jupyter-notebook

$5 Tech Unlocked 2021!

Buy and download this Book for only $5 on PacktPub.com

If you have read this book, please leave a review on Amazon.com. Potential readers can then use your unbiased opinion to help them make purchase decisions. Thank you. The $5 campaign runs from December 15th 2020 to January 13th 2021.

Python High Performance - Second Edition

This is the code repository for Python High Performance - 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

Python is a versatile language that has found applications in many industries. The clean syntax, rich standard library, and vast selection of third-party libraries make Python a wildly popular language.

Python High Performance is a practical guide that shows how to leverage the power of both native and third-party Python libraries to build robust applications.

The book explains how to use various profilers to find performance bottlenecks and apply the correct algorithm to fix them. The reader will learn how to effectively use NumPy and Cython to speed up numerical code. The book explains concepts of concurrent programming and how to implement robust and responsive applications using Reactive programming. Readers will learn how to write code for parallel architectures using Tensorflow and Theano, and use a cluster of computers for large-scale computations using technologies such as Dask and PySpark.

By the end of the book, readers will have learned to achieve performance and scale from their Python applications.

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.

Chapter 9 does not contain any code.

The code will look like the following:

    def square(x):
    return x * x

    inputs = [0, 1, 2, 3, 4]
    outputs = pool.map(square, inputs)

The software in this book is tested on Python version 3.5 and on Ubuntu version 16.04. However, majority of the examples can also be run on the Windows and Mac OS X operating systems. The recommended way to install Python and the associated libraries is through the Anaconda distribution, which can be downloaded from https://www.continuum.io/downloads, for Linux, Windows, and Mac OS X.

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].