profit, reward
Q. What is meant by a zero sum game?
Zero-sum is a situation in game theory in which one person’s gain is equivalent to another’s loss, so the net change in wealth or benefit is zero.
Table of Contents
- Q. What is meant by a zero sum game?
- Q. What is known as expected payoff?
- Q. How do you calculate expected winnings?
- Q. What is state of nature in decision theory?
- Q. What are states of nature in the decision making process?
- Q. What does decision tree do?
- Q. Which of the following is disadvantage of decision trees?
- Q. Why are decision tree classifiers so popular?
- Q. How will you counter Overfitting in the decision tree?
- Q. How do I stop Overfitting and Underfitting?
- Q. How do you know if you are Overfitting?
Q. What is known as expected payoff?
Expected value is a measure of what you should expect to get per game in the long run. The payoff of a game is the expected value of the game minus the cost. If you expect to win about $2.20 on average if you play a game repeatedly and it costs only $2 to play, then the expected payoff is $0.20 per game.
Q. How do you calculate expected winnings?
The basic expected value formula is the probability of an event multiplied by the amount of times the event happens: (P(x) * n). The formula changes slightly according to what kinds of events are happening.
Q. What is state of nature in decision theory?
In statistics: Decision analysis. …more possible future events, called states of nature, that might occur. The list of possible states of nature includes everything that can happen, and the states of nature are defined so that only one of the states will occur.
Q. What are states of nature in the decision making process?
In the decision making process, “states of nature” are the non-business factors in the environment in which the decision must be made. the factors that are discovered after a decision is made that could not have been anticipated. the non-human factors in the decision situation that a decision maker must consider.
Q. What does decision tree do?
A decision tree is a decision support tool that uses a tree-like model of decisions and their possible consequences, including chance event outcomes, resource costs, and utility. It is one way to display an algorithm that only contains conditional control statements.
Q. Which of the following is disadvantage of decision trees?
Apart from overfitting, Decision Trees also suffer from following disadvantages: 1. Tree structure prone to sampling – While Decision Trees are generally robust to outliers, due to their tendency to overfit, they are prone to sampling errors.
Q. Why are decision tree classifiers so popular?
Why are decision tree classifiers so popular ? Decision tree construction does not involve any domain knowledge or parameter setting, and therefore is appropriate for exploratory knowledge discovery. Decision trees can handle multidimensional data.
Q. How will you counter Overfitting in the decision tree?
increased test set error. There are several approaches to avoiding overfitting in building decision trees. Pre-pruning that stop growing the tree earlier, before it perfectly classifies the training set. Post-pruning that allows the tree to perfectly classify the training set, and then post prune the tree.
Q. How do I stop Overfitting and Underfitting?
How to Prevent Overfitting or Underfitting
- Cross-validation:
- Train with more data.
- Data augmentation.
- Reduce Complexity or Data Simplification.
- Ensembling.
- Early Stopping.
- You need to add regularization in case of Linear and SVM models.
- In decision tree models you can reduce the maximum depth.
Q. How do you know if you are Overfitting?
Overfitting can be identified by checking validation metrics such as accuracy and loss. The validation metrics usually increase until a point where they stagnate or start declining when the model is affected by overfitting.