본문 바로가기
반응형

분류 전체보기82

밸리데이션 로스(validation loss)가 안줄어들 경우 체크해볼 3가지 1. 데이터 전처리: 데이터를 표준화하고 정규화하자. (배치놈, 스캐일링) 2. 모델 강제성: 모델이 너무 복잡한지 확인하자. dropout를 추가하고 각 계층의 레이어 수 또는 뉴런 수를 줄입니다. 3. 학습 속도 및 감소 속도 : 학습 속도를 줄이자! 학습을 하기에 좋은 시작 값은 보통 0.0005에서 0.001 사이입니다.또한 1e-6의 decay raet을 고려하십시오. The model is overfitting right from epoch 10, the validation loss is increasing while the training loss is decreasing. Dealing with such a Model: Data Preprocessing: Standardizing and N.. 2020. 11. 10.
넘파이 끼리 곱연산이 안됨 (319, 1) LOG (10, 1) EXP (319, 1) REVERSE (319, 1) (10,1) (10,) 랑 연산하면 안됨. (10,1) (10,1) 꼭 맞춰줘야함. 2020. 11. 10.
string 앞에 0채우기 (6자리) 숫자를 출력할 건데 무조건 5자리로 만들어주고 싶어요. 예를 들어서 이렇게 만들어 주고 싶다. print(3) = 00003 print(50000) = 50000 print(723) = 00723 1. stirng.zfill(width) 앞에 0을 채워서 스트링 길이를 width으로 맞춰줍니다 "3".zfill(5) "50000".zfill(5) "723".zfill(723) 2. string.rjust(width[, fillchar]) 앞에 fillchar를 채워서 스트링 길이를 width로 맞춰줍니다 "5".rjust(5, '0') 3. 번외 - 정수형에서 바로 0을 채우기 print ("%05d"% 5) print (format(5000,'05')) #2.6이상 print ('{0:05d}'.for.. 2020. 11. 10.
키움증권 영웅문 hts 데이터k 종목간 상관계수 데이터K 종목간 상관 계수는 피어슨 상관계수를 쓴다. 키움 상관계수 설명 자세히 안나와있어서 일단 키움에 문의를 해봄. 2020. 11. 10.
Tor browser 로 selenium webdriver 크롤링 ip 우회 [Windosws] : 네이버 블로그 from selenium import webdriver from selenium.webdriver.chrome.options import Options for i in range(3): chrome_options = Options() chrome_options.add_argument("--proxy-server=socks5://127.0.0.1:9150") driver = webdriver.Chrome(executable_path='C:/Users/user/Desktop/크롤링/crawler/crwaling code/chromedriver/chromedriver.exe', options=chrome_options) driver.get('https://whatismyipaddress.com/') 그냥 to.. 2020. 11. 10.
attention 자료 모음 papers.nips.cc/paper/7181-attention-is-all-you-need.pdf 어텐션 개념 정리 ratsgo.github.io/from%20frequency%20to%20semantics/2017/10/06/attention/ 어텐션 매커니즘 · ratsgo's blog 이번 글에서는 딥러닝 모델이 특정 벡터에 주목하게 만들어 모델의 성능을 높이는 기법인 어텐션(attention) 매커니즘에 대해 살펴보도록 하겠습니다. 이 글은 미국 스탠포드 대학의 CS224d 강의와 ratsgo.github.io 어텐션 ppt welcome-to-dewy-world.tistory.com/108 1. Attention Is All You Need 좋은 기회로 ML Research 인턴을 할 수 있게.. 2020. 11. 5.
반응형