pruning$64955$ - definitie. Wat is pruning$64955$
Diclib.com
Woordenboek ChatGPT
Voer een woord of zin in in een taal naar keuze 👆
Taal:

Vertaling en analyse van woorden door kunstmatige intelligentie ChatGPT

Op deze pagina kunt u een gedetailleerde analyse krijgen van een woord of zin, geproduceerd met behulp van de beste kunstmatige intelligentietechnologie tot nu toe:

  • hoe het woord wordt gebruikt
  • gebruiksfrequentie
  • het wordt vaker gebruikt in mondelinge of schriftelijke toespraken
  • opties voor woordvertaling
  • Gebruiksvoorbeelden (meerdere zinnen met vertaling)
  • etymologie

Wat (wie) is pruning$64955$ - definitie

ALGORITHM IMPROVEMENT TECHNIQUE
Pruning (Algorithm); Search tree pruning; Pruning algorithms; Decision-tree pruning; Pruning (algorithm); Pruning algorithm; Pruning (decision trees)
  • Before and After pruning

Alpha–beta pruning         
  • An illustration of alpha–beta pruning. The grayed-out subtrees don't need to be explored (when moves are evaluated from left to right), since it is known that the group of subtrees as a whole yields the value of an equivalent subtree or worse, and as such cannot influence the final result. The max and min levels represent the turn of the player and the adversary, respectively.
  • An animated pedagogical example that attempts to be human-friendly by substituting initial infinite (or arbitrarily large) values for emptiness and by avoiding using the [[negamax]] coding simplifications.
SEARCH ALGORITHM THAT SEEKS TO DECREASE THE NUMBER OF NODES THAT ARE EVALUATED BY THE MINIMAX ALGORITHM IN ITS SEARCH TREE
Alpha beta pruning; Alpha-beta search; A-b pruning; Α-β pruning; Alpha-beta pruning; Alphabeta pruning; Alpha–beta search
Alpha–beta pruning is a search algorithm that seeks to decrease the number of nodes that are evaluated by the minimax algorithm in its search tree. It is an adversarial search algorithm used commonly for machine playing of two-player games (Tic-tac-toe, Chess, Connect 4, etc.
Decision tree pruning         
Pruning is a data compression technique in machine learning and search algorithms that reduces the size of decision trees by removing sections of the tree that are non-critical and redundant to classify instances. Pruning reduces the complexity of the final classifier, and hence improves predictive accuracy by the reduction of overfitting.
Lopping         
  • An arborist pruning a tree near the [[Statue of Liberty]]
  • Helicopter pruning
  • Pruning of trees in [[Chandigarh]]
SELECTIVE REMOVAL OF PARTS OF A PLANT
Pruned; Lopping; Pruning wounds; Tree pruning; Pruning wound; DDDD
·p.pr. & ·vb.n. of Lop.
II. Lopping ·noun A cutting off, as of branches; that which is cut off; leavings.

Wikipedia

Decision tree pruning

Pruning is a data compression technique in machine learning and search algorithms that reduces the size of decision trees by removing sections of the tree that are non-critical and redundant to classify instances. Pruning reduces the complexity of the final classifier, and hence improves predictive accuracy by the reduction of overfitting.

One of the questions that arises in a decision tree algorithm is the optimal size of the final tree. A tree that is too large risks overfitting the training data and poorly generalizing to new samples. A small tree might not capture important structural information about the sample space. However, it is hard to tell when a tree algorithm should stop because it is impossible to tell if the addition of a single extra node will dramatically decrease error. This problem is known as the horizon effect. A common strategy is to grow the tree until each node contains a small number of instances then use pruning to remove nodes that do not provide additional information.

Pruning should reduce the size of a learning tree without reducing predictive accuracy as measured by a cross-validation set. There are many techniques for tree pruning that differ in the measurement that is used to optimize performance.