2019의 게시물 표시

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 .

Publish to my blog (weekly)

Javascript Logic Diagram - Wiring Diagram Schematics Posted from Diigo . The rest of my favorite links are here .

Publish to my blog (weekly)

Building A Deep Learning Model using Keras – Towards Data Science The model type that we will be using is Sequential. It allows you to build a model layer by layer. Each layer has weights that correspond to the layer the follows it. Dense is a standard layer type that works for most cases. In a dense layer, all nodes in the previous layer connect to the nodes in the current layer. Dense’ is the layer type ‘Activation’ is the activation function for the layer. An activation function allows models to take into account nonlinear relationships Posted fro...

Publish to my blog (weekly)

RPA Web Dashboard 실행 에이전트 리스트 DESKTOP-13HLE53 <!----> <!----> <!----> <!----> Posted from Diigo . The rest of my favorite links are here .

Publish to my blog (weekly)

이미지
선형 함수를 만드는 법 - 수학 - 2019 선형 함수의 그래프는 직선 비선형은 곡선이며 각 섹션의 기울기는 다릅니다 선형 함수는 다음과 같습니다. C = Ax + By A / B는 선형 함수 그래프의 기울기 Mathematics for Artificial Intelligence – Linear Algebra linear algebra scalar, vector, matrix, and tensor every record in a dataset can be represented as a vector parameters of neura...

Publish to my blog (weekly)

Use cases of Different Machine Learning Algorithms – Noteworthy - The Journal Blog sales forecasting risk assessment analysis in health insurance companies 1. To Identifying risk factors for diseases and planning preventive measures 2. Classifying words as nouns, pronouns, and verbs 3. Weather forecasting applications for predicting rainfall and weather conditions 4. In voting applications to find out whether voters will vote for a particular candidate or not a user wants ...