Skip to content

Commit 3a8589c

Browse files
committed
Update end2end_ml_project.ipynb
1 parent 9bdb7c0 commit 3a8589c

1 file changed

Lines changed: 14 additions & 1 deletion

File tree

end2end_ml_project.ipynb

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2454,7 +2454,7 @@
24542454
"cell_type": "markdown",
24552455
"metadata": {},
24562456
"source": [
2457-
"**훈련된 그리드 탐색 객체 속성**"
2457+
"**그리드 탐색 결과**"
24582458
]
24592459
},
24602460
{
@@ -2620,6 +2620,19 @@
26202620
"`scipy` 라이브러리는 이외에 다른 종류의 확률 분포 함수를 지원한다.\n",
26212621
"예를 들어, 지정된 구간에서의 부동소수점을 선택해야 한다면 \n",
26222622
"연속 균등분포 함수인 `scipy.stats.uniform(a, b)`를 이용할 수 있다.\n",
2623+
"\n",
2624+
"* `scipy.stats.randint(a, b+1)`\n",
2625+
" - a부터 b까지의 범위를 갖는 **이산형(정수형)** 하이퍼파라미터에 사용\n",
2626+
" - 해당 범위 내의 모든 값이 선택될 확률이 동일하다고 예상될 때 활용\n",
2627+
"* `scipy.stats.uniform(a, b)`\n",
2628+
" - `randint()` 함수와 매우 유사\n",
2629+
" - 하지만 **연속형(실수형)** 하이퍼파라미터에 사용\n",
2630+
"\n",
2631+
"아래는 `randint()`와 `uniform()`에 대한 확률 질량 함수(이산 확률 변수용)와 확률 밀도 함수(연속 확률 변수용)를 나타낸 그래프이다.\n",
2632+
"\n",
2633+
"<div align=\"center\">\n",
2634+
" <img src=\"https://github.com/codingalzi/code-workout-ml/blob/master/images/ch02/random_distribution2.png?raw=true\" width=\"700\">\n",
2635+
"</div>\n",
26232636
":::"
26242637
]
26252638
},

0 commit comments

Comments
 (0)