Attempt at the LFT, CDN, MQS modules implementations.
See original GitHub issueThanks to the authors for their awesome word! Although the source code is not available yet, I can’t wait to attempt at reproducing the modules.
I submit this issue to ask if the LFT module can be implemented by modifying the following one line of code.
The original code in dn-dab-deformable-detr is:
intermediate_reference_points.append(reference_points)
The modified code is:
intermediate_reference_points.append(new_reference_points)
Issue Analytics
- State:
- Created a year ago
- Comments:6
Top Results From Across the Web
MONTGOMERY COUNTY GOVERNMENT Code No
Considerable knowledge of and skill in implementing and supporting post implementation of Oracle EBS Human Capital Management modules including Payroll, Labor ...
Read more >exhibit1-businessprocessframeworkv4_0 ... - California ISO
Depicts the ISO Grid Assets oversight and implementation of the FERC ... The Market Quality System (MQS) calculates expected energy costs, ...
Read more >IBM Readme file for IBM WebSphere MQ for HP NonStop Server ...
This readme file provides information for IBM WebSphere MQ for HP NonStop Server, Version 5.3.1, Fix Pack 16.
Read more >Reusable Aspect-Oriented Implementations of Concurrency ...
ABSTRACT. In this paper, we present a collection of well-known high-level concurrency patterns and mechanisms, coded in AspectJ. We.
Read more >Using MQSeries on the AS/400
This redbook includes an overview of MQSeries explaining its architecture, how to connect clients to servers and servers to servers, how to trigger....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
In the original DN:
The corresponding code is:
In the implementation, noise offsets of different value are added to the four coordinates of GT boxes.
The degree of noise on $x, y, w, h$ varies, as long as they are all less than ‘box_noise_scale’. The implementation is concise and uncontested.
In the CDN:
Does this mean that the random offsets added to the four coordinates of a GT box for generating a negative example are all larger than $\lambda_{1} $ and smaller than $ \lambda_{2} $? [Plan A]
Or another way: If all offsets added to $x, y, w, h $ are less than $\lambda_{1} $ , the query is positive. Otherwise, if one of the four offsets for a GT box is greater than $\lambda_{1} $ , it is judged as a negative query. [Plan B]
In the above plans, refer to the DN, I generate random noise offsets of scale $\lambda_{2} $, and set various conditions to determine whether a query should be positive or negative, which makes it difficult to control for the same amounts of the positive and negative queries. [Plan A] and [Plan B]
Or maybe I should generate the two noises separately. For generating positive queries, the noise offsets are random values between $-\lambda_{1} $ and $\lambda_{1} $ . For negative ones, they are between $-\lambda_{2} $ and $-\lambda_{1} $ or between $\lambda_{1} $ and $\lambda_{2} $. [Plan C]
My implementation of [Plan A] is:
My implementation of [Plan B] is: There is only one line modified.
My implementation of [Plan C] is:
The above three plans all have certain problems. For [Plan A] and [Plan B], the group scheme of CDN (If an image has n GT boxes, a CDN group will have 2 × n queries with each GT box generating a positive and a negative queries) will be hard to achieved. For [Plan C], my implementation seems not concise, and the decision domains of positive and negative queries are not contiguous (When the offset of the four coordinates are all less than $\lambda_{1} $ , the query is positive. When they are all greater than $\lambda_{1} $ , it is negative. The cases when some are greater than $\lambda_{1} $ and some are less are ignored, whose anchors are also likely to be rejected).
Therefore, I’m curious about your wisdom in implementing the CDN modules. More details or pseudo code are expected.
Thank u very much! 😀
@FengLi-ust @SlongLiu I have finished reading the code. Your implementation is concise. Thanks for your replies and innovative work!