Tag:boundary
-
Time:2021-1-16
Boundary is very important for location problem. Borderalign, the core idea of borderdet, is ingenious and effective. It not only integrates boundary features into target location prediction, but also can be easily integrated into various target detection algorithms, which brings great performance improvement. In the open source implementation, the efficient CUDA implementation of borderalign will […]
-
Time:2020-12-19
By Dorian LazarCompile | VKSource: toward Data Science Perceptron is a component of artificial neural network, which is a simplified model of biological neurons in the brain. Perceptron is the simplest neural network, which consists of only one neuron. The perceptron algorithm was invented by Frank Rosenblatt in 1958. Here is a picture of a […]
-
Time:2020-12-14
By prateek JoshiCompile | VKSource | analytics vidhya introduce Machine learning frameworks or libraries sometimes change the landscape of the field. Today, Facebook has open source such a framework, Detr (detection transformer) In this paper, we will quickly understand the concept of target detection, and then directly study Detr and its benefits. object detection In […]
-
Time:2020-12-14
How can front-end programmers learn algorithms well? At present, the excellent video of algorithm is concentrated in C + +, Java and python. I have mastered the basic idea of the algorithm through watching the video of C + + for several months. All of them are translated into front-end code and written one by […]
-
Time:2020-12-10
Creation time: March 1, 2020; test: chrome v80.0.3987.122 normal There are two ways: drag the normal label position or drag the text box position in canvas 1. Drag the label element to any position by mouse Demo address CSS code #range { position: relative; width: 600px; height: 400px; margin: 10px; background-color: rgb(133, 246, 250); } […]
-
Time:2020-11-29
Transport layer Perspective There are two major protocols in the transport layer: TCP and UDP. TCP is a reliable streaming protocol and UDP is an unreliable datagram protocol. However, the reliability here is limited to the end-to-end communication. When using TCP protocol, the data sent by the sender when calling the write function through the […]
-
Time:2020-11-28
Longest Palindromic Substring difficultysecondaryGiven a strings, foundsThe longest palindrome string in. You can assume thatsThe maximum length of is 1000. as everyone knows,Palindrome substring is a certain axis as the center, left and right mirror symmetryHow to find the longest palindrome substring in S? 1. Violent cracking Brute force cracking is the most easy way […]
-
Time:2020-11-25
The copyright belongs to the author. For commercial reprint, please contact Scott for authorization. For non-commercial reprint, please indicate the source [keep the full text, do not delete]. At present, the value of cross service is still to be explored in the long-term. I think that few front-end engineers are not interested in node, but […]
-
Time:2020-11-11
Bfprt linear search algorithmBaidu Encyclopedia: bfprt Bfprt process: Call selectpivot to get the partition axis Call partition to divide the interval according to the partition axis (less than the partition axis area, equal to the partition axis area, and larger than the partition axis area), According to the area where k is located In the […]
-
Time:2020-11-9
130. Surrounded area Source: leetcode https://leetcode-cn.com/problems/surrounded-regions subject Given a two-dimensional matrix, it contains‘X’and‘O’(Letter O)。 Find all the‘X’Around the area, and put all of these areas in‘O’use‘X’fill. Example: X X X X X O O X X X O X X O X X After running your function, the matrix changes to: X X X X […]
-
Time:2020-11-7
Manacher linear search algorithm The concepts needed to know in manacher algorithm are as follows Palindrome radius: the distance from palindrome center to palindrome boundary Palindrome radius array: radius [i] represents the maximum palindrome radius with I as the palindrome center Palindrome rightmost boundary: the rightmost position in the palindrome boundary First palindrome Center: palindrome […]
-
Time:2020-11-5
Full address: https://community.apicloud.co… `/! JRoll v2.6.1 ~ (c) 2015-2017 Author:BarZu Git:https://github.com/chjtx/JRoll Website:http://www.chjtx.com/JRoll/ // global define, HTMLElement /(function (window, document, Math) { ‘use strict’ var JRoll var VERSION = ‘2.6.1’ var rAF = window.requestAnimationFrame || window.webkitRequestAnimationFrame || function (callback) { setTimeout(callback, 17) } var sty = document.createElement(‘div’).styleVar jrollmap = {} / / saves all jroll objects […]