노트/Python : 프로그래밍(69)
-
[leetcode] 92. Reverse Linked List II
Given the head of a singly linked list and two integers left and right where left
2022.11.22 -
[python] Colab에서 한글 폰트 사용하기
아래 코드를 실행하고, 런타임 -> 런타임 다시 시작 실행 !pip install matplotlib -U !sudo apt-get install -y fonts-nanum !sudo fc-cache -fv !rm ~/.cache/matplotlib -rf import matplotlib.pyplot as plt plt.rcParams['font.family'] = ['NanumGothic', 'sans-serif'] plt.rcParams['axes.unicode_minus'] = False x = [1,2,3] plt.plot(x) plt.title('차트명') 차트명 글자 나오는지 확인
2022.11.01 -
JVMNotFoundException: No JVM shared library file (libjvm.so) found. Try setting up the JAVA_HOME environment variable properly.
도커에서 주피터노트북을 만들고 knolpy를 사용하는데 다음과 같은 에러가 나왔다. 자바가 설치가 안되어 있거나 환경변수가 등록이 안되어 있는 것으로 JAVA를 설치해주면 된다. apt-get update sudo apt install default-jdk -y 출처: https://bsssss.tistory.com/787 [Small Asteroid Blog:티스토리]
2022.09.28 -
[Attention] 컴퓨터 비젼에서의 어텐션 기법 (번역)
https://towardsdatascience.com/attention-in-computer-vision-fd289a5bd7ad Attention in computer vision Ever since the introduction of Transformer in the work “Attention is all you need”, there has been a transition in the field of NLP towards replacing Recurrent Neural Networks (RNN) with… towardsdatascience.com Attention in computer vision MultiHead 와 CBAM attention 모듈 PyTorch로 구현하기 "Attention i..
2021.08.02 -
[딥러닝 기초] 신경망 코딩하기 (텐서플로우, 파이토치 활용)
출처 https://fullstackdeeplearning.com/spring2021/notebook-1/ Full Stack Deep Learning Hands-on program for software developers familiar with the basics of deep learning seeking to expand their skills. fullstackdeeplearning.com Full Stack Deep Learning 강의 내용. Deep Learning Fundamentals Enviroment !python --version >>> Python 3.8.3 !pip list | findstr "tensorflow" >>> tensorflow 2.3.1 tensorflow-es..
2021.05.19 -
[시계열] 주가 예측을 위한 RNN/LSTM/GRU 기술적 가이드 (번역)
우리의 일상에서 챗봇 고객 서비스, 이메일 스팸 탐지기, 음성 인식, 언어 번역, 주식 시장 예측 등과 상호작용하고 있습니다. 이 인공지능 상품들은 순환신경망(RNN), 롱숏-기간모델(LSTM) 그리고 게이트 순환망 (GRU)에 힘 입었습니다. 이 모델들은 시계열, 언어 패턴, 음성 패턴과 같은 순차적 데이터 예측에 최상의 예측을 가져오는 딥러닝의 중요한 가지들입니다. 회귀를 배우는 것 처럼 RNN, LSTM, GRU를 배우는 것은 쉽지 않습니다. 많은 수업에서 종종 회귀와 딥러닝 사이의 지식의 갭이 있다고 느꼈습니다. 용어의 차이 또한 지식의 갭을 만듭니다. 딥러닝으로 점프하기위해 많은 준비가 필요하며, 성공적으로 점핑한 학생들은 회귀로 쉽게 되돌아가지 않을 수 있습니다. ( 이 말장난이 마음에 들지도..
2021.03.30