목록분류 전체보기 (157)
AI·빅데이터 융합 경영학 Study Note
오늘 'AI를 활용하여 글로벌 탑컨 논문 합격률을 높이는 방법'이라는 제목으로 '머피AI라는 AI 스타트업의 창업자이신 안수남 연사님의 특강을 들었다. 1. 대기업에서 임원으로 커리어 쌓기특강의 첫 번재 주제는 회사 생활에 대한 이야기였다. 연사님은 it대기업에서 커리어를 시작하셨다. 회사에서 어떻게 사회생활을 해야 하는지 꿀팁도 주셨다. 모두가 힘들어하는 일을 해야 연봉 인상률이 높아진다는 것, 회사를 회사 내에서 절대로 욕하면 안 된다는 것, 회사를 욕하지 않는 사람들만 임원을 할 수 있다는 것, 임원을 하는 사람은 상사가 고민하던 문제를 해결해주고, 이 회사가 내 회사라고 생각하는 사람들이라는 것, 상사가 질문할 때 횡설수설하지 말고 두괄식으로 묻는 것에 대해 답변해야 한다는 것, 회사에서 매년 직..
https://learngitbranching.js.org/?locale=ko
https://bbycroft.net/llm LLM Visualization bbycroft.net LLM 모델을 단계별로 설명하고 역동적인 3D 시각화를 제공한다.
No module named 'pytorch_forecasting' #%pip install pytorch_forecasting No module named 'skopt' #%pip install scikit-optimize No module named 'prophet' #%pip install prophet No module named 'fbprophet' #%pip install fbprophet No module named 'xgboost' #%pip install xgboost No module named 'tensorflow' #%pip install tensorflow
1. Check missing values print(X_train.isnull().sum(), '\n')print(X_test.isnull().sum())2. Dropping #결측값이 많은 열을 드롭하기X_train_drop = X_train.dropna(subset=['state','car_value','risk_factor','C_previous','duration_previous'])X_test_drop = X_test.dropna(subset=['state','car_value','risk_factor','C_previous','duration_previous']) #결측값이 하나라도 있는 feature를 자동으로 없애고 싶을 때 아래 코드 사용:#X_train.dropna(subset=X_..
scikit-learn의 make_column_selector 기능을 사용하여 특정 데이터 유형을 기준으로 열을 선택하는 방법을 보여줍니다. 이를 통해 데이터 전처리에서 범주형 또는 수치형 데이터를 쉽게 구분하고 처리할 수 있습니다. from sklearn.compose import make_column_selectorcat_selector = make_column_selector(dtype_include=object)num_selector = make_column_selector(dtype_include=np.number)#num_selector(X)#cat_selector(X)
# Authors: Guillaume Lemaitre # Maria Telenczuk https://github.com/maikia># License: BSD 3 clause %matplotlib inlineimport warningswarnings.filterwarnings("ignore")import pandas as pdimport numpy as npfrom sklearn.pipeline import Pipelinefrom sklearn.compose import ColumnTransformerfrom sklearn.preprocessing import FunctionTransformerfrom sklearn.base import BaseEstimator, Transforme..
https://itcreator.tistory.com/161 Repository 연동 기타 명령어" data-og-host="itcreator.tistory.com" data-og-source-url="https://itcreator.tistory.com/161" data-og-url="https://itcreator.tistory.com/161" data-og-image="https://blog.kakaocdn.net/dna/kDdzy/hyWVRLFOai/AAAAAAAAAAAAAAAAAAAAABhViYVQflbY_3WLI8dVhx1tjEj-N55HpsGKWdcx919K/img.png?credential=yqXZFxpELC7KVnFOS48ylbz2pIh7yKj8&expires=1774969199&allow_ip=&allow_referer=&signature=NGuyiMbTk10CVxo8pf4kc%2BaoHuc%3D
바로가기https://www.printfriendly.com/ PrintFriendly | Convert Anything to PDFMake web pages printer-friendly and convert just about any file to/from PDF, and then edit or sign your document right here.www.printfriendly.com 설명https://m.blog.naver.com/dream_ferry/222224460426 뉴스 기사 자료 등 광고 지우고 PDF 파일로 간단하게 변환하기지인이나 내용을 받는 사람에게 온라인 자료를 전송하는 일이 자주 있습니다. 특히 요즘과 같이 코로나19 ...blog.naver.com 네이버 블로그는 지원하지 않..