All Projects → PacktPublishing → Feature Engineering Made Easy

PacktPublishing / Feature Engineering Made Easy

Licence: mit
Feature Engineering Made Easy, published by Packt

Projects that are alternatives of or similar to Feature Engineering Made Easy

Ai uav
在人工智能、机器视觉、高精度导航定位和多传感器融合等技术的助推下,众多行业迎来了前所未有的发展机遇,人工智能+无人机(AI+UAV)正是一个具有无限想象力的应用方向。
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook
Machine learning
Estudo e implementação dos principais algoritmos de Machine Learning em Jupyter Notebooks.
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook
Visualizing Cnn Feature Maps
Visualizing CNN filters using PyTorch
Stars: ✭ 162 (+0%)
Mutual labels:  jupyter-notebook
Hey Jetson
Deep Learning based Automatic Speech Recognition with attention for the Nvidia Jetson.
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook
Merf
Mixed Effects Random Forest
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook
Lolita
Using github's issue system as lightweight notes & blog.
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook
Nbdev template
Template for nbdev projects
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook
Pytket
Python module for interfacing with the CQC t|ket> library of quantum software
Stars: ✭ 162 (+0%)
Mutual labels:  jupyter-notebook
Hitchhikers Guide Machine Learning
Guide explaining and implementing fundamental machine learning algorithms in Python
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook
Contrastivelosses4vrd
Implementation for the CVPR2019 paper "Graphical Contrastive Losses for Scene Graph Generation"
Stars: ✭ 162 (+0%)
Mutual labels:  jupyter-notebook
Uq Course
Introduction to Uncertainty Quantification
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook
Deeplearning
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook
Covid
Tracking Coronavirus Growth
Stars: ✭ 162 (+0%)
Mutual labels:  jupyter-notebook
Nd Pyomo Cookbook
A repository of Pyomo examples.
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook
Real Time Facial Expression Recognition
A Deep Learning Case Study to detect one of the Seven Human Facial Expressions in Still Images and in Real Time. This model is also trained enough to Detect Facial Expressions of Animated Images.
Stars: ✭ 162 (+0%)
Mutual labels:  jupyter-notebook
Qastrategy
策略基类/ 支持QIFI协议
Stars: ✭ 160 (-1.23%)
Mutual labels:  jupyter-notebook
Py
Repository to store sample python programs for python learning
Stars: ✭ 4,154 (+2464.2%)
Mutual labels:  jupyter-notebook
Cs231n
My assignment solutions for CS231n - Convolutional Neural Networks for Visual Recognition
Stars: ✭ 162 (+0%)
Mutual labels:  jupyter-notebook
Pythonfromdatods
图书《Python编程:从数据分析到数据科学》的配套资源
Stars: ✭ 162 (+0%)
Mutual labels:  jupyter-notebook
Dd Net
A lightweight network for body/hand action recognition
Stars: ✭ 161 (-0.62%)
Mutual labels:  jupyter-notebook

Feature Engineering Made Easy

This is the code repository for Feature Engineering Made Easy, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

Feature engineering is the most important step in creating powerful machine learning systems. This book will take you through the entire feature-engineering journey to make your machine learning much more systematic and effective.

You will start with understanding your data—often the success of your ML models depends on how you leverage different feature types, such as continuous, categorical, and more, You will learn when to include a feature, when to omit it, and why, all by understanding error analysis and the acceptability of your models. You will learn to convert a problem statement into useful new features. You will learn to deliver features driven by business needs as well as mathematical insights. You'll also learn how to use machine learning on your machines, automatically learning amazing features for your data.

By the end of the book, you will become proficient in Feature Selection, Feature Learning, and Feature Optimization.

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:

Network_features = pd.DataFrame({'datetime': ['6/2/2018', '6/2/2018', '6/2/2018', '6/3/2018'], 'protocol': ['tcp', 'http', 'http', 'http'], 'urgent': [False, True, True, False]})
Network_response = pd.Series([True, True, False, True])
Network_features
>>
 datetime protocol  urgent
0  6/2/2018      tcp   False
1  6/2/2018     http    True
2  6/2/2018     http    True
3  6/3/2018     http   False
Network_response
>>
 0     True
1     True
2    False
3     True
dtype: bool

This book uses Python to complete all of its code examples. A machine (Linux/Mac/Windows is OK) with access to a Unix-style terminal and Python 2.7 installed is required. Installing the Anaconda distribution is also recommended as it comes with most of the packages used in the examples.

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