본문 바로가기

분류 전체보기

(108)
[I2S] 9300만개 학습, char 개수 세기 CID-SMILES에는 총 111325461개(1억 1천 1백만개)가 존재한다. 그중 smiles길이가 70이하이고 빈도가 낮은 char의 하위 절반에 속한 문자들을 포함하지 않는 smiles만 택했더니 약 9300만개가 나왔다. 총 1억 1천만 개 중에 9300만(93248512)개면.. 상당수. 약 0.84 정도를 포함하는 수치 111325461개 smiles를 집합에는 총 68개 의 문자가 있다. ['L', ')', 's', 'c', 'd', '4', '=', '5', '0', 'm', '(', 'G', 'F', 'r', 'R', 'b', 'y', '1', 'f', 'i', 'u', 'M', 't', '8', '9', 'n', 'U', 'C', 'N', '/', '6', 'a', 'k', 'T', ..
[linux] bash 앙창이가 자주쓰는 명령어 모음 # 현재 디렉토리에서 "test"로 시작하는 모든 파일 삭제 !find . -maxdepth 1 -type f -name "test*"
[인공지능] 4주차 수업
[인공지능] 3주차 수업
[I2S] 메모했던것 정리 ssh접속 jupyter 실행 등 Google Cloud Platform Console에서 VPC 네트워크 메뉴에서 '방화벽' 선택 '방화벽 규칙 만들기' 선택 방화벽 이름 지정 왜 Ram이 다운되는거지 ??.. 이해가 안가네~ jupyter notebook --ip=0.0.0.0 --port=8888 --allow-root 프로세스관리 명령어 : https://121202.tistory.com/45 sudo reboot ssh -i /home/chkim/.ssh/id_rsa chkimlgsmiles@35.189.183.178 ssh -i /home/chkim/.ssh/id_rsa churchobs01@34.71.235.200 ssh -i /home/chkim/.ssh/id_rsa churchobs01@34.64.192.152 ssh-k..
[I2S] Show, attend and Tell https://arxiv.org/abs/1502.03044 Show, Attend and Tell: Neural Image Caption Generation with Visual Attention Inspired by recent work in machine translation and object detection, we introduce an attention based model that automatically learns to describe the content of images. We describe how we can train this model in a deterministic manner using standard backpro arxiv.org
ZOOM보안이슈기사 정리 https://www.youtube.com/watch?v=kKUXRvWaP60 https://www.youtube.com/watch?v=cjY7_StY6Gs https://www.youtube.com/watch?v=lXn_gso9svs&t=1s https://www.youtube.com/watch?v=OHY1FJDsg60 https://www.youtube.com/watch?v=m3n7QZgO7WE https://www.chosun.com/site/data/html_dir/2020/04/16/2020041600020.html 화상회의 시대의 신데렐라 '줌'… 화웨이 꼴 되나 지난 2011년 미국 캘리포니아 실리콘밸리에 둥지를 튼 화상회의 스타트업 '줌(Zoom)'은 한 달 전까지만 해도 코로나 바이러스 ..
소설 속 빅 브라더 ‘Zoom’을 통해 현실화될 수 있다 소설 속 빅 브라더 ‘Zoom’을 통해 현실화될 수 있다 - 미국, 영국, 독일, 호주, 대만, 구글, NASA, SpaceX 등에서 ‘zoom 금지령’ 내린 이유 COVID-19로 인한 비대면 문화 확산에 따라 전 세계적으로 화상회의 솔루션의 사용량이 급증했다. 중국 산둥 성 출신 ‘에릭 위안’이 Webex에서 나와 창업한 Zoom은 Webex, Skype, 구글 meet 등의 경쟁사를 제치고 올해 4월, 40% 시장 점유율을 차지하며 독보적인 위치에 올랐다. Zoom은 편리한 사용성, 유용한 무료버전 제공과 저렴한 가격, 가상배경 등으로 경쟁우위를 구축했으며 주가는 올해 1월 대비 850% 이상 상승했다. 국내에서도 유은혜 사회부총리 겸 교육부 장관이 지난 3월 25일 온라인 개학 시도를 위한 화상회..
[I2S] encoder(CNN) to decoder(RNN)어텐션 메커니즘 분석 input : batch_features(512,49,1280) 1.인코더에 batch_features를 집어넣는다. features = encoder(batch_features) : (512, 49, 512) class CNN_Encoder(tf.keras.Model): def __init__(self, embedding_dim): super(CNN_Encoder, self).__init__() self.dropout = tf.keras.layers.Dropout(0.25) self.fc = tf.keras.layers.Dense(embedding_dim) def call(self, x): x = self.dropout(x) x = self.fc(x) x = tf.nn.relu(x) return x 인..
tfrecord_9천만 시 error IOPub data rate exceeded. The notebook server will temporarily stop sending output to the client in order to avoid crashing it. To change this limit, set the config variable `--NotebookApp.iopub_data_rate_limit`. Current values: NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec) NotebookApp.rate_limit_window=3.0 (secs) 이건 또 무슨에러?