전체 글(116)
-
How to use 'Html/Template' For your Echo Server in Go!
Hi Everybody, In this post we are going to build a simple http server with template. Prior to speaking, we have to know what does template doing. Template is just a view engine. Have you ever used Node.JS? then you know there is a populur View Engine called 'ejs'. It's make with ejs. You can put values in 'static' html and, do some cool things in html. Let's build it! Ah, I'm sorry. I forgot to ..
2020.04.18 -
Setting up Go develop environment for Beginners
Hi everybody, In this post, We are going to make a Go language developing environment for VisualStudie Code. Let's install Go 1. Install Go Language. https://golang.org/ The Go Programming Language Download Go Binary distributions available for Linux, macOS, Windows, and more. // You can edit this code! // Click here and start typing. package main import "fmt" func main() { fmt.Println("Hello, 世..
2020.04.18 -
C# WebSocket-Sharp, Make it more smart
The WebSocket-Sharp's data sending and receiving events are simple and could be only usage of first demension. So, We can try to make it more high level for us. WebSocket-Sharp supports each one event that receiving and sending. If we try to use only this two methods,then that's too hard and difficult for us to so, we give up the coding. In this post, I will make only two classes and one interfa..
2020.04.13 -
C# The way to make Real-time audio communication RTC in WPF with WebSocket-Sharp
In this post , We are going to make a Real-Time audio communication. First, We have to use NAudio to RTA. Second, Know the specificity of "IWaveProvier". Let's make some appliction. There will be created 3 classes. The frist we're going to code is EndlessProvider. This class will work like that provide sample which get other computer all the time and wrtie them on the stream that passed on contr..
2020.04.12 -
[파이썬][딥러닝] 3층 순방향 신경망 구현하기
입력 - 은닉층 - 은닉층 - 결과 형태인 3층 순방향 신경망을 구현해보도록 하겠습니다. 저번 퍼셉트론에서 와 마찬가지로 입력과 가중치의 곱에 가중치의 합을 결과로 내놓아서, 그것을 다시 활성화 작업을 처리 한 후 까지를 한개의 뉴런이라고 설명 드렸습니다. 즉, H(hidden) 뉴런 한개 한개에 있어서 앞의 층의 결과 값 혹은 입력값을 처리한 것은 간추린 것이라고도 말 했습니다. 각 층마다 X, W, B, A, Z를 두겠습니다. X * W + B 는 입력 행렬과 가중치 행렬의 곱에 편향 벡터 연산을 수행하는 것입니다. 주의할점은, X와 W의 곱의 순서를 지키지 않으면 다른 값이 나올 뿐더러, 각각 X의 열의 길이와 W의 행의 갯수가 일치해야만이 행렬곱 연산이 수행가능합니다. A는 X*W+B의 결과고, ..
2020.03.31 -
[파이썬][딥러닝] 퍼셉트론 - 활성화 함수
퍼셉드론에 대해 모르시는 분은 아래 글을 읽으시고 진행하세요 https://manufacture.tistory.com/20 [파이썬][딥러닝] Perceptron 퍼셉트론 퍼셉트론에 대해 공부하였으니 글을 쓰도록 하겠습니다. 1. 퍼셉트론이란? 퍼셉트론은 여러개의 입력을 받아 한개의 출력합니다. 예를 들어서, x1과 x2를 입력받았습니다. 퍼셉트론은 이 값들에 대하여 어떠한 연.. manufacture.tistory.com 1. 퍼셉트론 조건분기 동작 분해 퍼셉트론은 입력과 가중치의 곱의 총합과 편향의 합에 대하여 어떠한 조건을 만족시켰을떄 나오는 결과 로 나타내어 질 수 있다는 것을 알고 계시다는 전제하에 설명하겠습니다. 위의 말에서 '어떠한 조건을 만족시켰을때' 부분을 따로 빼, '활성화 함수'로 부..
2020.03.28