Selasa, 27 Februari 2018

Sponsored Links

Automatic Feature Engineering with Driverless AI - YouTube
src: i.ytimg.com

Feature engineering is the process of using domain knowledge of the data to create features that make machine learning algorithms work. Feature engineering is fundamental to the application of machine learning, and is both difficult and expensive. The need for manual feature engineering can be obviated by automated feature learning.

Feature engineering is an informal topic, but it is considered essential in applied machine learning.

Coming up with features is difficult, time-consuming, requires expert knowledge. "Applied machine learning" is basically feature engineering.


Video Feature engineering



Features

A feature is an attribute or property shared by all of the independent units on which analysis or prediction is to be done. Any attribute could be a feature, as long as it is useful to the model.

The purpose of a feature, other than being an attribute, would be much easier to understand in the context of a problem. A feature is a characteristic that might help when solving the problem.


Maps Feature engineering



Importance of features

The features in your data are important to the predictive models you use and will influence the results you are going to achieve. The quality and quantity of the features will have great influence on whether the model is good or not.

You could say the better the features are, the better the result is. This isn't entirely true, because the results achieved also depend on the model and the data, not just the chosen features. That said, choosing the right features is still very important. Better features can produce simpler and more flexible models, and they often yield better results.

The algorithms we used are very standard for Kagglers. [...] We spent most of our efforts in feature engineering. [...] We were also very careful to discard features likely to expose us to the risk of over-fitting our model.

...some machine learning projects succeed and some fail. What makes the difference? Easily the most important factor is the features used.


Microsoft Azure Machine Learning - ppt download
src: slideplayer.com


The process of feature engineering

  1. Brainstorming or Testing features;
  2. Deciding what features to create;
  3. Creating features;
  4. Checking how the features work with your model;
  5. Improving your features if needed;
  6. Go back to brainstorming/creating more features until the work is done.

Intro to Feature Engineering with TensorFlow - Machine Learning ...
src: i.ytimg.com


Feature relevance

Depending on a feature it could be strongly relevant (has information that doesn't exist in any other feature), relevant, weakly relevant (some information that other features include) or irrelevant. It is important to create a lot of features. Even if some of them are irrelevant, you can't afford missing the rest. Afterwards, feature selection can be used in order to prevent overfitting.


Classical Computer Vision: Feature Engineering - ppt download
src: slideplayer.com


Feature explosion

Feature explosion can be caused by feature combination or feature templates, both leading to a quick growth in the total number of features.

  • Feature templates - implementing features templates instead of coding new features
  • Feature combinations - combinations that cannot be represented by the linear system

There are a few solutions to help stop feature explosion such as: regularization, kernel method, feature selection.


Machine Learning: A Summary on Feature Engineering Using R ...
src: i.ytimg.com


Automated Feature Engineering

Automation of feature engineering has become an emerging topic of research in academia. In 2015, researchers at MIT presented the Deep Feature Synthesis algorithm and demonstrated its effectiveness in online data science competitions where it beat 615 of 906 human teams. Deep Feature Synthesis is available as an open source library called Featuretools. That work was followed by other researchers including IBM's OneBM and Berkeley's ExploreKit. The researchers at IBM state that feature engineering automation "helps data scientists reduce data exploration time allowing them to try and error many ideas in short time. On the other hand, it enables non-experts, who are not familiar with data science, to quickly extract value from their data with a little effort, time and cost."

Commercial tools have emerged from new machine learning focused startups including H20.ai and Feature Labs .


The Lego Model of Machine Learning - ppt download
src: slideplayer.com


See also

  • Covariate
  • Hashing trick
  • Kernel method
  • List of datasets for machine learning research

Leaf Classification Playground Competition: Winning Kernels | No ...
src: 5047-presscdn.pagely.netdna-cdn.com


References

Source of the article : Wikipedia

Comments
0 Comments