본문 바로가기

머신러닝 & 텐서플로 & 파이썬

(22)
트랜스포머는 시퀀스-투-시퀀스(seq2seq) 모델입니다. 트랜스포머는 시퀀스-투-시퀀스(seq2seq) 모델입니다. 즉, 데이터에 순서가 있고, 출력 그 자체가 시퀀스인 모든 문제에 적합합니다. 적용 예로는 기계 번역, 추상적 요약(abstractive summarization), 음성 인식 등이 있습니다. 최근 [Vision Transformers (ViT)] 심지어 컴퓨터 비전(computer vision)에서의 최첨단 기술까지 향상시켰습니다. https://arxiv.org/abs/2006.03677 Visual Transformers: Token-based Image Representation and Processing for Computer Vision Computer vision has achieved remarkable success by (a) ..
Python 패키지 모듈 정의하기 Python 에서 package는 folder를 의미합니다. package 정의하는 방법에 대해서 얘기 하고자 합니다. 아시는 분도 있을 거지만, 간단한 py file만 만들어보다가 여러 py 를 묶어서 library 형태로 배포하는 방법입니다. 1. folder를 만든다. (폴더 이름은 아무거나 영문 소문자로 사용) => 예로 mylib 라고 하겠습니다. 2. 내 py file들을 (class 로 구성한파일)을 mylib으로 옮긴다. => 예) bike.py , man.py #bike.py class Bike : def run(self): print("moved 1000 m") #man.py class Man : def run(self): print("moved 100 m") 3. __init__.py..
Conda 설치, SSL error 대응 Conda 설치 여기에서 각 OS에 맞는 anaconda를 설치하세요. https://www.anaconda.com/distribution/ Anaconda Python/R Distribution - Free Download Anaconda Distribution is the world's most popular Python data science platform. Download the free version to access over 1500 data science packages and manage libraries and dependencies with Conda. www.anaconda.com 설치후 shell을 실행하면, (base) 로 conda가 활성화 되어있습니다. 이를 제거 하려면, $..
cer file을 pem 변환하기 cer file을 pem 변환하기 openssl x509 -inform der -in /path/to/your/certificate.cer -out /path/to/converted/certificate.pem 끝!
GAN 스터디 http://solarisailab.com/archives/2482
파이선 스터디 파이선 가이드북.!!https://wikidocs.net/book/1 강의 자료https://python.bakyeono.net/index.html [머신러닝 입문 강좌 | TEAMLAB X Inflearn ] numpyhttps://www.youtube.com/watch?v=yHD1ApkUWRQhttps://www.youtube.com/watch?v=R47dC04H2-I https://www.youtube.com/channel/UC_kvhNYJtP1-Ap67byTbfuw
데이타 크롤링 준비하기 [bs4 install] pip3 install --upgrade bs4 --------------------------------------- import urllib.requset import urllib.parse url ="http://xxx.xxx.xxx/img/test.png"savename="test.png"#downloadurllib.request.urlretrieve(url, savename ) #memory 로 로드mem = urllib.requst.urlopen(url).read() with open(savename, mode="wb") as f:f.write(mem)print("saved"); 방식 : GET, POST, PUT, DELETE대상 : http://media...
머신러닝 유투브 영상모음 김태훈 https://www.youtube.com/watch?v=soJ-wDOSCf4&t=16sDCGAN https://www.youtube.com/watch?v=klnfWhPGPRs책읽어주는 https://www.youtube.com/watch?v=NGGO0zdzhVQ강화학습 carpedm20.github.io 윤인성머신러닝/딥러닝 실전 입문 https://www.youtube.com/watch?v=ivf1I85pzw8&list=PLBXuLgInP-5m_vn9ycXHRl7hlsd1huqmS&index=6 https://www.youtube.com/watch?v=mH6Y3VHBhJI