머신러닝을 하면서 hyperparameter에 대한 고민이 많았다. 단순히 노가다 성격이 아닌 어떻게 하는지 정리해보려고 한다. 핵심코드만 정리해둠 순서는 7가지나 자주 많이 쓰이는 GridSearch , BayesianOptimization ,Optuna 세 개만 정리해보려고 한다. 이건 개인적으로 정리하는 용도로 만들었기 때문에 만약에 전체 flow를 보고 싶다면 밑의 링크를 참고하면 된다. 전체코드는 여기서 보실 수 있음 순서 1. GridSearch 2. BayesianOptimization 3. Optuna 4. scikit-optimize 5. Hyperopt 6. Spearmint 7. benderopt 1. GridSearch - 기본적인 방법 1 2 3 4 5 6 7 8 9 10 11 1..
1. Data 만들기 - "data2.csv" 2. LinearRegression Code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 import pandas as pd import numpy as np df_data = pd.read_csv("data2.csv") x_data = df_data.drop(['y'],axis=1) y_data = df_data['y'] print(x_data.head(5)) print(y_data.head(5)) from sklearn.linear_model import LinearRegression from sklearn.model_selection import cross_val_score lin_reg = LinearRegre..
1. 설치 1.1 Window https://www.mongodb.com/download-center/community Download Center: Community Server Download MongoDB Community Server, the most popular non-relational database built to address the needs of modern applications. www.mongodb.com 2. 설치 완료 후 해야 할 작업 1. C:\data\db 폴더를 만든다 2. cmd 실행 $ cd C:\Program Files\MongoDB\Server\4.2\bin $ mongod 3. 다른 console창 켜기 $ cd C:\Program Files\MongoDB\S..
https://edition.cnn.com/travel/article/japan-naked-festival-intl-hnk/index.html Naked Festival: Thousands gather for Japan's annual 'Hadaka Matsuri' Thousands braved chilly weather Saturday to gather at Japan's largest and most famous "naked festival" in Okayama prefecture. The event, called "Hadaka Matsuri" in Japanese, is a wild and raucous festival held annually on the third Saturday of Febru..
데이터베이스란? - 관련성을 가지며 중복이 없는 데이터들의 집합 - 여러 사람이 공유하여 사용할 목적으로 체계화해 통합, 관리하는 데이터의 집합 - DBMS(데이터베이스 관리 시스템) 2. 데이터베이스의 장단점 데이터베이스 장점 데이터베이스 단점 데이터 중복 최소화 데이터 공유 일관성, 무결성, 보안성 유지 최신의 데이터 유지 데이터의 표준화 가능 데이터의 논리적, 물리적 독립성 용이한 데이터 접근 데이터 저장 공간 절약 데이터베이스 전문가 필요 많은 비용 부담 데이터 백업과 복구가 어려움 시스템의 복잡함 대용량 디스크로 엑세스가 집중되면 과부하 발생 3. 데이터베이스 종류 SQL -> Structured Query Language - 데이터베이스 자체가 아니라 특정 유형의 데이터 베이스와 상호 작용하는..
1. Express - 서버 제작시 불편함을 해소하고, 편의 기능을 추가한 웹 서버 프레임워크 - 대표적인것 익스프레스, koa, hapi 같은 웹 서버 프레임워크 - 확실히 express가 우세한 경향을 보임 --> 사람들이 많이 사용하는 프레임워크일 수록 에러가 적음 2. Express-generator - Express 프레임워크는 익스프레스 외에도 많은 패키지를 사용하므로 입문자 입장에서는 필요한 패키지를 찾아서 설치하기 어려움 - Express-generator 패키지 --> 프레임워크에 필요한 package.json을 만들어주고 기본 폴더 구조까지 잡아주는 패키지 >> npm i -g express-generator // npm 전역설치 -------------------------------..
tousle = to make someone's hair untidy, for example by rubbing it, or, of the wind, by blowing it. - She is wearing one of his T-shirts, and her long hair is tousled in a way that prompts reflexive thoughts of the previous night. - He tousled her hair in passing. pouts = 뾰로통한 표정 - She looks up from a brochure and pouts. trek up = to walk somewhere slowly and with no enthusiasm, for example becau..
'Parasite' dominated the Oscars on a historic night https://edition.cnn.com/2020/02/10/entertainment/parasite-oscars/index.html 'Parasite' dominated the Oscars on a historic night The cast and creative team for "Parasite" took the stage on Sunday to accept the award for best picture, capping off what was a huge night for the film and a significant night for global cinema. www.cnn.com take the st..
CNN 기사 링크 Send a chill - to make someone feel very thrilled, frightened. ex) Sparking panic sent a chill through the global economy ex) Her thrilling performance sent a chill up my spine. Rampage - to go through an area making a lot of noise and causing damage. ex) The virus now rampaging across China could be much more damaging. Churn out - to produce large amounts of something quickly, usually..