본문 바로가기

전체 글115

aws에서 pip 설치하기 https://docs.aws.amazon.com/ko_kr/elasticbeanstalk/latest/dg/eb-cli3-install-linux.html https://docs.aws.amazon.com/cloud9/latest/user-guide/sample-python.html#sample-python-install 2018. 8. 11.
Linux 파이썬 버전 Linux 파이썬 버전 바꾸기(Ubuntu 16.04)2017.06.29 20:33 from ###########/리눅스(LINUX)먼저 python 버전을 확인한다. $ python -V Python 2.7.2 현재는 2.7.2이니까 변경할 파이썬 3.5로 변경해보자 크게 2가지 방법을 소개하자면 1. alias $ alias python='/usr/bin/python3.5' 2. update-alternatives $ sudo update-alternatives --config python 이렇게 나오면 $ sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1 $ sudo update-alternatives --i.. 2018. 8. 11.
챗봇 만들기 - 구글 번역을 이용한 번역 챗봇 능: 구글 번역library를 이용한 번역 챗봇 전체 챗봇 시스템 구조 https://go.gliffy.com/go/share/sgm9lx5kct0flqin3sms 채널: kakaoTalk 플러스 - 카카오톡플러스 친구 가입하기 설명 : https://brunch.co.kr/@hillstar78/41 카카오플러스 친구 :https://center-pf.kakao.com/ kakao API 연동 방법 : https://github.com/plusfriend/auto_reply IDE : 구름 IDE (클라우드기반의 통합개발환경 제공) -가입 하기 https://ide.goorm.io/ 언어: Python -프레임워크 - Flask - library : Google tranlation 출처: https://.. 2018. 8. 10.
자연어 처리 관련 자료 모음 Minho Ryu **Bricoler -대학생 : https://github.com/Bricoler주요 Repositories챗봇 세미나(여러 가지 챗봇) https://github.com/Bricoler/chatbot-seminar-네이버 영화 평점 데이터를 이용한 여러 딥러닝 모델 비교 https://github.com/Bricoler/nlp-tensorflow Hyunjoong Kim *https://github.com/lovit?tab=repositories 주요 Repositories세종 말뭉치 통계https://github.com/lovit/sejong_corpus패스트캠프 수업 자료 https://github.com/lovit/fastcampus_textml_blogs 트위터 twitter-.. 2018. 8. 2.
정답 ###9번### ##규제화의 분류#로지스틱 회귀 문제에 적용 library(MASS) biopsy$ID = NULLbiopsynames(biopsy) = c("thick", "u.size", "u.shape", "adhsn", "s.size", "nucl", "chrom", "n.nuc", "mit", "class")biopsy#699 obs of 10 variables biopsy.v2 2018. 6. 15.
R 소스 library(ElemStatLearn) #contains the data library(car) #package to calculate Variance Inflation Factor library(corrplot) #correlation plots library(leaps) #best subsets regression library(glmnet) #allows ridge regression, LASSO and elastic net library(caret) #this will help identify the appropriate parameters data(prostate) str(prostate) plot(prostate) plot(prostate$gleason) table(prostate$gleas.. 2018. 6. 12.