In the Deep Learning Specialization course by Dr. Andrew Ng, he mentions that stuff like ensemble models or boosting, though work fine in practice and are good for winning competitions, he recommends firmly against using them for developing real-world applications. Why is that? What's wrong with them?
Why ensemble models are not recommended?
114 Views Asked by Amir Valizadeh At
1
There are 1 best solutions below
Related Questions in METHODS
- PHPunit call magic methods
- Needing a private and public method for the same recursive function
- #warning this method is no longer used (Objective-C)
- Issue with calling a method and updating graphics
- Shoppe gem each method on product categories
- Using NON static class Methods Without reference
- Java: Shuffle a Deck of 32 cards?
- Does .join method change the array into string in Javascript?
- Simplify code with sending Methods as Variable
- Programmatic Access to Apple Watch Crown
- How to change URL form with GET method?
- Why is this method called instead of the other?
- Inheritance Hidden Method java
- Java: How to create simple method
- Are methods copied when objects are created?
Related Questions in BOOST
- Non-intruisive Boost serialization of labelled enums C++
- error WinSock.h has already been included Boost Windows Qt
- How to get rid of the ".\r\n" characters appended to the error message from FormatMessageA?
- What is the equivalent of boost::system::error_code with GetLastError in C++ Standard Library?
- Copy constructor required to be explicity defined with mutex
- boost spirit: how to match any lexer token in qi?
- boost resume thread on mutex unlock
- boost mpi sends NULL messages
- BOOST & GCC, undefined reference to boost
- CSV like Parse ( whitespace delimiter and boost )
- How does Boost.Units come up with this imprecise result of conversion?
- No viable overloaded '=' in std::bind function
- How should boost::lockfree::spsc_queue's read_available and write_available be used?
- add line in cmake to edit Makefile definition
- How does boost::subgraph work? Can we use filtered graph?
Related Questions in DEEP-LEARNING
- [Caffe]: Check failed: ShapeEquals(proto) shape mismatch (reshape not set)
- Caffe net.predict() outputs random results (GoogleNet)
- Implementation of convolutional sparse coding in deep networks frameworks
- Matlab example code for deep belief network for classification
- Two errors while running Caffe
- How to speed up caffe classifer in python
- Caffe Framework Runtest Core dumped error
- Scan function from Theano replicates non_sequences shared variables
- Why bad accuracy with neural network?
- Word2Vec Sentiment Classification with R and H2O
- What is gradInput and gradOutput in Torch7's 'nn' package?
- Error while drawing net in Caffe
- How does Caffe determine the number of neurons in each layer?
- Conclusion from PCA of dataset
- Google Deep Dream art: how to pick a layer in a neural network and enhance it
Related Questions in ENSEMBLE-LEARNING
- How to change the function a random forest uses to make decisions from individual trees?
- How to predict labels for new data (test set) by the PartitionedEnsemble model in Matlab?
- scipy.minimize 'SLSQP' appears to return sub optimal weights values
- How does one interpret the random forest classifier from sci-kit learn?
- How to ensemble SVM and Logistic Regression with python
- Ensemble learning with Encog
- sklearn.ensemble.AdaBoostClassifier cannot accecpt SVM as base_estimator?
- Is it possible to use different classifiers in sklearn.ensemble?
- What is a weak learner?
- R caretEnsemble CV length incorrect
- How to merge keras sequential models with same input?
- Custom learner function for Adaboost
- What is the difference between ensembling and averaging models?
- "Stacking" (Ensemble) Models in R - Zero Training Error?
- Stacking classifier: Using custom classifier returns error
Related Questions in ENSEMBLES
- CFBundleIdentifier Collision
- Do I need any iCloud settings before using Ensembles for CoreData & iCloud syncing?
- DBRestClient.h not found for CDEDropboxCloudFileSystem (ensembles framework)
- Ensembles 2 CloudKit
- XCode can''t find header of 3rd party library
- Multi Classification Ensemble Cross validation Function too many values to unpack (expected 2)
- Core Data Syncing with Ensembles: Remote changes aren't pulled down until the local model changes
- Forwarding Ensembles log with CDESetLogCallback
- Data not syncing from iPad2 to iPad1
- When removing Ensembles, can the current data be restored to the CoreData store?
- Removing near duplicates with Core Data and Ensembles (iCloud)
- Ensembles in iOS swift
- Errors in iOS swift trying to use Ensembles
- Ensembles document design
- Why ensemble models are not recommended?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I think you need to run multiple algos over your dataset and see which performs best, on the given data that is fed into the model. Ensemble models probably work best on most datasets, but that will certainly not be the case all the time. See the links below for some examples of how to test several models, to pick the best, based on the outcome of each, and not based on some kind of preconceived notion.
https://github.com/ASH-WICUS/Notebooks/blob/master/Accuracies%20of%20Different%20Classifiers%20-%20Wine.ipynb
https://github.com/ASH-WICUS/Notebooks/blob/master/Accuracies%20of%20Different%20Regressors%20-%20Housing%20Prices.ipynb