Zzong's Notes

Home

❯

machine_learning

❯

link function

link function

2026년 6월 14일1 min read

Link Function

inverse of activation function 을 의미한다. 예를 들어 logit 은 sigmoid 함수의 inverse 이고, probit 은 가우시안 분포의 CDF 함수의 inverse 를 의미한다.

B) Related

C) References

  • logistic - What is the difference between a “link function” and a “canonical link function” for GLM - Cross Validated

함께 보면 좋은 글

sigmoid function

Sigmoid Function \displaystyle f(x)=\sigma(x)=\frac{1}{1+e^{-x}} A.1) 미분값 f^{\prime}(x)=f(x)(1-f(x)) A.2) Figure 약 -4.5 이하로는 무조건 0 을, 4.5 이상으로는 무조건 1 의 값을 가진다.

logit

Logit odds ratio 에 log 를 취한 값을 logit 이라고 부른다. logit 은 logistic regression 에 의해 유도될 수 있다. 다음과 같은 logistic regression 모델 h \theta(x) 가 있다고 가정하자.

softmax function

Softmax Function class K>2 의 경우에서 generalized linear model (reference) \displaystyle p\left(C {k}\mid\mathbf{x}\right)=\frac{p\left(\mathbf{x}\mid C {k}\right)p\left(C...

Leaky ReLU Function

Leaky ReLU Function Leaky ReLU function 은 다음과 같이 생겼다.

step function

Step Function \chi {A}(x)= \begin{cases}1 & \text { if } x \in A \\ 0 & \text { if } x \notin A\end{cases} B) Related C) References en.wikipedia.org/wiki/Step function .

ReLU function

ReLU Function f(x)=\{\begin{array}{ll}0&\text{for}x\leq0\\x&\text{for}x>0\end{array}=\max\{0,x\} 요즘에 ReLU 를 많이 쓰지 않는 것 같아요.

Gaussian Error Linear Units

Gaussian Error Linear Units GELU — PyTorch 2.4 documentation B) GELU 함수 적용 Gaussian Error Linear Units (GELU) 함수는 다음과 같이 정의됩니다: \operatorname{GELU}(x)=x \Phi(x) 여기서 \Phi(x) 는...

tanh function

Tanh Function Tanh function 은 입력을 [-1, 1] 범위로 압축하는 비선형 activation function 이다.

probit model

Probit Model probit model 은 regression 의 종류 중 하나로, 출력값 (dependent variable) 이 binary 형식을 띄는 모델을 의미한다.

logistic loss

Logistic Loss logistic regression 에서 사용하는 loss function 을 의미한다.

  • Link Function
  • B) Related
  • C) References