From 2a3f3dbcc08a673d5279a314c544d75537c753fe Mon Sep 17 00:00:00 2001 From: "hy.kim" Date: Thu, 21 Sep 2023 16:38:25 +0900 Subject: [PATCH] update --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d750685..5e242a5 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ subtitle: 어프렌티스 프로젝트 과목 ### 예제 코드[¶]()
-Linear Regression +Code View
```python @@ -99,6 +99,11 @@ print("Intercept:", model.intercept_) - s1 ~ s6: 6개의 혈청 측정값 +
+Code View +
+ + ```python import numpy as np @@ -128,7 +133,8 @@ print(f"Mean Squared Error: {mse:.2f}")
- +
+
# 로지스틱 회귀 (Logistic Regression) 로지스틱 회귀는 이름에 '회귀'가 들어가지만, 분류 문제에 사용되는 알고리즘입니다. 주로 이진 분류 문제에 사용되며, 확률을 출력으로 가집니다.