R Markdown을 사용하여 수식을 입력할 수 있다. R Markdown 사용법: rpruim.github.io/s341/S19/from-class/MathinRmd.html Mathematics in R Markdown Math inside RMarkdown In side a text chunk, you can use mathematical notation if you surround it by dollar signs $ for “inline mathematics” and $$ for “displayed equations”. Do not leave a space between the $ and your mathematical notation. Example rpruim.github.io R Markd..
$$J(\theta_{0},\theta_{1}) = \frac{1}{2m}\sum_{i=1}^{m}(\hat{y}_{i}-y_{i})^{2} = \frac{1}{2m}\sum_{i=1}^{m}(h_{\theta}(x_{i})-y_{i})^{2}$$ Hypothesis Function의 정확도를 cost function으로 구할 수 있다. 대개, cost function 값이 낮을 수 록 정확도가 높다. Cost function의 형태에 따라 달라질 수 있다. Mean Squared Error는 대표적인 cost function 중의 하나이다. $$h_{\theta}(x_{i})$$는 hypothesis function의 결과 값이며, $$y_{i}$$는 실제 값이다. *이해되지 않는 설명 The mean..
source: scikit-learn.org/stable/modules/preprocessing_targets.html#preprocessing-targets 6.9. Transforming the prediction target (y) — scikit-learn 0.24.0 documentation 6.9. Transforming the prediction target (y) These are transformers that are not intended to be used on features, only on supervised learning targets. See also Transforming target in regression if you want to transform the predict..
source: www.kaggle.com/alexisbcook/categorical-variables Categorical Variables Explore and run machine learning code with Kaggle Notebooks | Using data from multiple data sources www.kaggle.com 카테고리 변수의 예시는 다음과 같다. 어떤 색깔을 좋아하는가? "빨강", "파랑", "초록"... 얼마나 자주 외식을 하는가? "매일", "가끔", "반반"... 데이터가 카테고리 일 때, 전처리 없이 ML 라이브러리로 사용하려고 하면 대부분의 경우 오류가 난다. 왜냐하면 ML 라이브러리 대부분은 variable이 숫자numeric라고 가정하기 때문이다. 3가지 ..
source:scikit-learn.org/stable/modules/generated/sklearn.impute.SimpleImputer.html sklearn.impute.SimpleImputer — scikit-learn 0.24.0 documentation scikit-learn.org class sklearn.impute.SimpleImputer(*, missing_values=nan, strategy='mean', fill_value=None, verbose=0, copy=True, add_indicator=False) Imputation transformer for completing missing values. scikit-learn.org/stable/modules/impute.html#..
from sklearn.ensemble import RandomForestRegressor # Define the models model_1 = RandomForestRegressor(n_estimators=50, random_state=0) model_2 = RandomForestRegressor(n_estimators=100, random_state=0) model_3 = RandomForestRegressor(n_estimators=100, criterion='mae', random_state=0) model_4 = RandomForestRegressor(n_estimators=200, min_samples_split=20, random_state=0) model_5 = RandomForestReg..
주소라든지 띄어쓰기 하지 않은 영어의 경우 본문 범위를 넘어서 텍스트가 튀어나오는 경우가 있다. 노란색 선 까지가 본문 범위인데 튀어나갔다. 자동 줄바꿈 설정을 넣어주면 된다. 개인 티스토리 스킨 설정에 따라서 어느 파일을 수정해야 하는지는 달라진다. 다만 내 경우에는 티스토리 기본 반응형 스킨을 사용하고 있는데, 같은 스킨 사용자라면 이 방법을 적용시킬 수 있다. 스킨 편집으로 들어간다. 스킨 편집 창에서 html 편집을 누른다. 다음 화면에서 css 탭을 누른다. /* global */ 이라고 선언된 부분 아래에 ".article_skin" 이라는 항목이 있다. 여기에 자동 줄바꿈을 추가한다. word-break:break-all; 적용 버튼을 누른다 이제 본문 영역을 튀어나가지 않는다
class sklearn.ensemble.RandomForestRegressor(n_estimators=100, *, criterion='mse', max_depth=None, min_samples_split=2, min_samples_leaf=1, min_weight_fraction_leaf=0.0, max_features='auto', max_leaf_nodes=None, min_impurity_decrease=0.0, min_impurity_split=None, bootstrap=True, oob_score=False, n_jobs=None, random_state=None, verbose=0, warm_start=False, ccp_alpha=0.0, max_samples=None) A rando..
myFunc은 온전한 값을 리턴하는 함수라고 가정한다. input_list의 결과 값 중 가장 작은 myFunc을 리턴하는 element는 무엇일까? 내 코드 input_list = [5, 10, 15, 20, 25] myFunc_result = [] for input in input_list: myFunc_result.append(myFunc(input)) smallest = 0 for index in range(len(myFunc_result)): if myFunc_result[smallest]>myFunc_result[index]: smallest = index smallest_element = input_list[smallest] 더 효율적인 코드 myFunc_result = {result: my..