일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
- docket
- MSSQL
- blue-green
- Leaderboard
- Benchmarks
- Strimzi
- eks
- yml
- 스프링부트
- keda
- SW 마에스트로
- propogation
- logback
- Kubernetes
- SW Maestro
- 동등성
- Debezium
- minreplica
- zset
- Kafka
- Database
- Helm
- Grafana
- Salting
- traceId
- 0 replica
- Software maestro
- slow query
- hammerDB
- spring boot
- Today
- Total
목록ML (16)
김태오

*Linear : a mathematical or statistical relationship that is proportional or additive in nature. In a linear relationship, two variables are related in such a way that when one variable changes, the other variable changes proportionally. *Regression : a statistical method for modeling the relationship between a dependent variable and one or more independent variables. The goal of regression anal..

A general way of automatically constructing a procedure for computer derivatives numerically - a mathematical tool that allows us to compute the gradients of complex functions, including those with multiple inputs and outputs. * this is not a function or a formula, it is a mathematical procedure. Most of the times, it makes a computation graph. a computation graph is a graphical representation o..

Importing Packages from random import random as rand import random import numpy as np import matplotlib.pyplot as plt %matplotlib inline Loading Dataset # Random seed random.seed(1234) # Generate 2-dimensional data points X = [rand() * i * 0.5 - 20 for i in range(0, 100)] y = [x ** 3 * 0.002 - x ** 2 * 0.005 + x * 0.003 + rand() * 5 for x in X] print(len(X), len(y)) Random Sampling + Visualizati..