Skip to content

Commit

Permalink
fix(ai-ML): structured learning
Browse files Browse the repository at this point in the history
  • Loading branch information
sabertazimi committed May 19, 2024
1 parent 78c116d commit 2a4ab42
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions notes/ComputerScience/Math/AIBasicNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -605,6 +605,38 @@ $$
词嵌入是自然语言处理 (NLP) 中的一种技术,
将词汇映射到实数向量空间, 使得词汇之间的语义关系可以通过向量空间中的距离来表示.

## Structured Learning

### Unified Framework

#### Training

Find a function $F$:

$$
F:X\times{Y}\to{R}
$$

$F(x, y)$ evaluates how well $y$ fits $x$ (object compatible).

#### Inference

Given an object $x$:

$$
\tilde{y}=\arg\max\limits_{y\in{Y}}F(x, y)
$$

![Structured Learning](./figures/StructuredLearning.png 'Structured Learning')

:::tip Three Problems

- Evaluation: what does $F(X, y)$ look like.
- Inference: how to solve $\argmax$ problem.
- Training: how to find $F(x, y)$ with given training data.

:::

## Multilayer Perceptron

![Multilayer Perceptron](./figures/MultilayerPerceptron.avif 'Multilayer Perceptron')
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 2a4ab42

Please sign in to comment.