Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update glossary.md #34

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,9 @@ Backgammon is one of the oldest known board games. It is a two player game where
Foreground detection is one of the major tasks in the field of computer vision and image processing whose aim is to detect changes in image sequences. Background subtraction is any technique which allows an image's foreground to be extracted for further processing (object recognition etc.).

## backjumping

**Backjumping** is a technique that reduces search space, therefore increasing efficiency. While backtracking always goes up one level in the search tree when all values for a variable have been tested, backjumping may go up more levels.

## backmarking
## backoff model
## backpropagation
Expand All @@ -177,6 +180,8 @@ A mathematical notation used to describe the syntax of a programming language.

## backward-chaining

**Backward chaining** is the logical process of inferring unknown truths from known conclusions by moving backward from a solution to determine the initial conditions and rules.

## bag of words

The **bag of words** model is a simplifying representation used in natural language processing and information retrieval. Also known as the vector space model. In this model, a text is represented as the bag of its words, disregarding grammar and even word order but keeping multiplicity.
Expand Down