일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 딥러닝
- 챗GPT
- Web
- 웹해킹
- 러닝스칼라
- 러닝 스칼라
- ChatGPT
- 리눅스
- c
- mysql
- BOF 원정대
- flask
- php
- Shellcode
- hackthissite
- hacking
- Javascript
- c++
- 백엔드
- BOF
- webhacking
- Python
- hackerschool
- 경제
- deep learning
- backend
- 파이썬
- Linux
- 인공지능
- Scala
- Today
- Total
목록전체보기 (206)
jam 블로그
신경망 (Artificial Neural Network, ANN) 스터디 용으로 Deep Learning from Scratch 2 책을 참고로 정리한 것입니다. 신경망을 알기 전에 기본이 되는 퍼셉트론(Perceptron)을 먼저 알아봅시다. 단층 퍼셉트론은 다수의 신호를 입력으로 받아 하나의 신호를 출력. 위 그림에서 원은 뉴런 혹은 노드라고 하며, 입력 신호가 y 뉴런에 보내질 때는 각 고유한 가중치가 곱해집니다. 뉴런에서 보내온 신호의 총합이 정해진 한계를 너어선 때만 1을 출력합니다. 다음과 같이 수식으로 나타낼 수 있습니다. $$ y = \begin{cases} 0 & (w_1x_1 + w_2x_2 \leq \theta) \\\\ 1 & (w_1x_1 + w_2x_2 > \theta) \end..
curl 은 기본적으로 https 사이트의 SSL 인증서를 검증한다. 인증 기관의 인증서 목록이 없거나 모르는 기관에서 발급한 인증서일 경우 다음과 같은 인증서 검증 에러를 발생시키고 동작을 중지하게 된다. https://curl.haxx.se/docs/caextract.html에서 cacert.pem을 다운받고 php.ini에서 다음 문구 추가 curl.cainfo="[절대 경로]/cacert.pem"openssl.cafile="[절대 경로]/cacert.pem"
If your mp4 video file upload in amazon s3, that file's Content-type is "application/octet-stream".So, you have to change from "application/octet-stream" to "video/mp4". (There is option in meta data category.) If there are a few video file in amazon s3, you just delete and add content-type, but if there are too many video file, this site link of under can be help for you. https://foliovision.co..
problem : when big files download, browser display 404 Error. SolutionIf big file is shared from friends or other people.1. open big file like click link2. open your google drive web page3. click the recent and make duplicate big files.4. download duplicated big files. If big file is just yours, I think start no 3. =============================================================문제점 : 큰 파일을 받으려고 할 때..