전체보기

    [Streamlit] 설치 및 시작하기 + 배포

    개요 공식 사이트 https://streamlit.io/ Streamlit • The fastest way to build and share data apps Streamlit is an open-source app framework for Machine Learning and Data Science teams. Create beautiful web apps in minutes. streamlit.io streamlit 공식 사이트 입니다. 갤러리에 들어가시면 다양한 예제들을 만나보실 수 있습니다. A faster way to build and share data apps Streamlit turns data scripts into shareable web apps in minutes. All in pu..

    [TIL] Day 38 - ML

    38일차 Feature Engineering mode, median 으로 결측치 대체하기 fillna() 가 series 로 들어오는 매개변수로 알아서 매핑해서 결측치를 대체한다. 수치형 변수 범주형으로 변경 유니폼 값에 다항식 전개 취하기 로그1p 파생변수 만들기 리스트 extend df.get_dummies() 피터 중요도 시각화하기 r2_score cross_val_predict metric 구하기 GradientBoosting Tree learning_rate 경사에 따른 학습도 (약간 건너띄는 느낌) n_estimator 트리의 갯수 익명화된 데이터 다루기 값이 하나뿐인 열 제거하기 nunique() 이상치 잡아내기 부스팅 배깅 lightgbm, xgboost, catboost 회고 장마.. 여..

    [Mac] 아나콘다 Anaconda3 설치

    아나콘다 다운로드 사이트 https://www.anaconda.com/products/distribution Anaconda | Anaconda Distribution Anaconda's open-source Distribution is the easiest way to perform Python/R data science and machine learning on a single machine. www.anaconda.com 여기가서 다운 받으시면 됩니다. 다운받으시고 파일 눌러서 여시면 설치 마법사가 실행이 됩니다. 설치하기 보통 신뢰할수 있는지 묻는데 여기서 허용 누르시면 됩니다. 소프트웨어 사용권 동의를 묻는데 이도 동의를 체크하시면 됩니다. 그리고 어디에 설치를 할지 묻는데 저는 따로 opt 폴..

    [TIL] Day 35, 36, 37 - Tableau, ML

    35/36일차 Tableau 35일은 결석 🥹 지도 맵 그려보기 테이블이랑 지도 맵 매핑 데이터 해석기 사용 태블로에서 간단한 데이터 전처리 동작을 이용해서 인터렉티브 대시보드 만들기 필터를 활용해서 그래프 필터링하기 매개변수 만들기 계산된 필드 만들기 특정값 그래프 색 변경하기 서식 지정하기 버튼 선택해서 특정 카테고리값 그래프 확인하기 37일차 ML StandardScaler MinMaxScaler RobustScaler 각각 hist 그려보기 분포는 같으나, x 값은 다르다. tree 계열 모델에서는 큰 성능을 내지 못하나, 다른 알고리즘에서는 스케일링으로 정확도를 높일 수 있다. 스케일링된 값에 log1p 적용하기 hist로 분포 살펴보기 음수값이 있어도 로그를 취해도 되는가? -> 오류가 있음 ..

    [ML] tensorflow set_random_seed() 오류

    https://www.kaggle.com/code/dimitreoliveira/deep-learning-for-time-series-forecasting Deep Learning for Time Series Forecasting Explore and run machine learning code with Kaggle Notebooks | Using data from multiple data sources www.kaggle.com 위 캐글 노트북 필사를 하려고 하는데 하나 함수가 사용이 안됩니다. 보니까 tensorflow v1 api 라서 그런 것 같더라구요. 해당 오류를 해결해보도록 하겠습니다. 에러 확인 from tensorflow import set_random_seed set_random_see..

    [ML] 아나콘다 Tensorflow, Keras 설치하기 + kernel 에러 해결

    https://www.kaggle.com/code/dimitreoliveira/deep-learning-for-time-series-forecasting Deep Learning for Time Series Forecasting Explore and run machine learning code with Kaggle Notebooks | Using data from multiple data sources www.kaggle.com 해당 캐글 노트북 필사를 진행하려고 하는데 커널이 죽더라구요. kernel died 에러 해결하면서 tensorflow, keras 설치 포스팅도 겸사겸사 올려보겠습니다. 에러 확인 캐글 노트북 필사를 하려고 하는데 다음과 같은 에러가 발생합니다. The Kernel crash..