Publish to my blog (weekly)

Difference Between a Batch and an Epoch in a Neural Network The batch size is a hyperparameter that defines the number of samples to work through before updating the internal model parameters. When the batch is the size of one sample, the learning algorithm is called stochastic gradient descent When the batch size is more than one sample and less than the size of the training dataset, the learning algorithm is called mini-batch gradient descent. Batch Gradient Descent . Batch Size = Size of Training Set   Stochastic Gradient Descent . Batch Size = 1   Mini-Batch Gradient Descent . 1 < Batch Size < Size of Training Set ...

Publish to my blog (weekly)

Chat - Samples - Ktor suspend fun List <WebSocketSession> . send (frame: Frame ) { 확장함수 Extensions - Kotlin Programming Language Kotlin provides the ability to extend a class with new functionality without having to inherit from the class or use design patterns such as Decorator Posted from Diigo . The rest of my favorite links are here .

Publish to my blog (weekly)

SikuliX - general aspects of scripting — SikuliX 1.1+ documentation Saved scripts (.sikuli) and exported scripts (.skl and .jar) can be run from commandline ( see ) or from within other scripts ( see ). A candidate to be used with SikuliX and JavaScript scripting in the future will be the GraalVM package. It can surely be used with SikuliX (sikulixapi.jar) already now, but probably will have special support in SikuliX 1.1.5 beginning towards end of 2019. People who try already now with SikuliX 1.1.4 are welcome to give feedback about their experiences. now you can write JavaScript code according to the specifications of the Java bundled JavaScript interpreter (Nashorn since Java 1.7) . ...

Publish to my blog (weekly)

4.3. Aggregating functions - Chapter 4. Functions percentileCont(n.age, 0.4) PERCENTILE_CONT는 순서가 지정된 값 사이의 선형 보간을 계산합니다. 이 함수는 집계 그룹에서 백분위 값(P)과 NULL을 제외한 행들의 번호(N)를 사용하여 정렬 명세에 따라 행의 순서를 지정한 후 행 번호를 계산합니다. 행 번호(RN)를 계산하는 공식은 RN = (1+ (P*(N-1))입니다. 이 집계 함수의 최종 결과는 행 번호가 CRN = CEILING(RN)과 FRN = FLOOR(RN)인 행의 값 사이 선형 보간을 통해 계산됩니다.최종 결과는 다음과 같습니다.(CRN = FRN = RN)일 때 결과는 (value of expression from row at RN)입니다.그렇지 않다면 다음 결과가 표시됩니다.(CRN - RN) * (value of expression for row at FRN) + (RN - FRN) * (value of expression for row at CRN).> var DATA = [13, 33, 44]> var N = 3> var P = 0.4> var RN = 1 + (P * (N - 1))> RN1.8> var CRN = Math.ceil(RN)> CRN2> var FRN = Math.floor(RN)> FRN1> var PC = (CRN - RN) * DATA[FRN - 1] + (RN - FRN) * DATA[CRN - 1]> PC29 ...

Publish to my blog (weekly)

How Sikuli Works — Sikuli X 1.0 documentation A Sikuli executable script (.skl) is simply a zipped file of all files in the .sikuli directory. If a .skl is seen, Sikuli IDE runs it without showing the IDE window. If a .sikuli is seen, Sikuli IDE opens it in a source code editor. Posted from Diigo . The rest of my favorite links are here .

Publish to my blog (weekly)

때론 포기하는 게 지혜··· SW 프로젝트가 지연되는 10가지 이유 - CIO Korea 즉, 복잡성이 궁극적인 문제이다. 고객과 이해당사자, 주주들은 갈수록 더 많은 것을 요구하고 있고, 이는 시간이 점점 더 길어진다는 의미이다.  An Introduction to Apache Cassandra - DZone Database perpetual logs and IoT sensor data purchases health trackers test scores watched movies Posted from Diigo . The rest of my f...

Publish to my blog (weekly)

WOW! eBook: Best Free PDF eBooks and Video Tutorials Download The Joy of Kotlin Serverless Programming Cookbook WOW! eBook: Best Free PDF eBooks and Video Tutorials Download - Page 2 of 581 Programming Quantum Computers Programming Quantum Computers Practical Haskell: A Real World Guide to Programming Posted from Diigo . The rest of my favorite links are here .