최근 포스트

38_Baechu_Project

3 분 소요

import warnings warnings.filterwarnings('ignore') import numpy as np import pandas as pd import tensorflow.compat.v1 as tf tf.disable_v2_behavior()

37_Decision_Tree_의사결정트리

5 분 소요

import warnings warnings.filterwarnings('ignore') import numpy as np import pandas as pd import matplotlib.pyplot as plt import seaborn as sns import sklearn

36_SVM(Support_Vector_Machine)

6 분 소요

KNN알고리즘은 주변의 가까운 이웃들에게 물어봐서 대다수의 답변과 동일하게 답변하는 방법이다. 그러나 3명에게 물어봤을 때 2명이 거짓으로 대답한다면 예측은 틀리게 된다. 서포트 벡터 머신(SVM)은 ‘지금 현재 이곳이 한강의 북쪽인가요 남쪽인가요’와 같이 질문해서 답변을 얻는방법...

35_KNN(K_Nearest_Neighbor)_최근접이웃

4 분 소요

import warnings warnings.filterwarnings('ignore') import numpy as np import pandas as pd import matplotlib.pyplot as plt import seaborn as sns import sklearn

34_KMeans_Clustering_군집화

4 분 소요

```python import warnings warnings.filterwarnings(‘ignore’) import numpy as np import pandas as pd import matplotlib.pyplot as plt import seaborn as sns