728x90 반응형 전체 글194 jdk1.7 에서 실행되는 spring boot 프로젝트 https://github.com/forkballpitch/spring-boot-demo-jdk7 2025. 3. 15. 20250104 맥에서 netlify 몽고디비 연결하기 brew install mongosh터미널에서 위와같이 해주고mongosh "mongodb+srv://cluster0.dwp0j.mongodb.net/" --apiVersion 1 --username forkballpitch이렇게 하면 패스워드를 입력할 수 있다.특수문자는 안됨 https://cloud.mongodb.com/v2/6702a29e1f3d0d57e6236248#/security/database Cloud: MongoDB Cloud account.mongodb.com 아래 생성된 db에서 edit을 누르고 password를 변경할 수 있다. 2025. 1. 4. vuejs 화면에 동적으로 만들어준 함수를 methods에 바인딩 아래와 같은 식으로 맵핑해준다 created() { window.showDetailMapView = this.showDetailMapView.bind(this) } 2022. 9. 16. 랜덤포레스트 from sklearn.model_selection import train_test_split from bayes_opt import BayesianOptimization rf_parameter_bounds = { 'max_depth' : (5,30), 'n_estimators': (10,100), 'min_samples_split': (2,10), 'min_samples_leaf': (1,4) } def NMAE(true, pred): score = np.sum(np.abs(true-pred)) / np.sum(true) return score def rf_bo(max_depth,n_estimators,min_samples_split, min_samples_leaf): rf_params = { 'max.. 2022. 8. 31. 이전 1 2 3 4 ··· 49 다음 728x90 반응형