REVIEW 5 major objections 9 minor 50 references
Circuit Diagram Retrieval Based on Hierarchical Circuit Graph Representation
T0 review · 5 major / 9 minor · reviewed 2026-08-09 · deepseek-v4-flash
Pith's one-line read Circuit diagram retrieval should be treated as graph retrieval, not image retrieval.
desk verdict A coherent engineering pipeline for graph-based circuit diagram retrieval, with a real but narrow contribution and an evaluation metric that does not yet prove the topological claim. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the circuit graph representation: five construction classes are catalogued, and the retrieval pipeline uses Class 1 (devices as nodes, nets as edges) for the coarse stage and Class 4 (devices and device pins as nodes, nets as edges) for the fine stage. Similarity is measured by normalized graph edit distance (GED), the minimum number of node and edge insertions, deletions, and relabelings needed to turn one graph into another, computed by an enhanced A* algorithm. Retrieval is hierarchical: rank the whole database by Class 1 graphs, keep the top 20, re-rank those with Class 4 graphs, and return the top 5. This two-stage design recovers nearly all the accuracy of the expensive Class 4 representation while paying only a fraction of its time cost.
What would settle it
Build a benchmark where ground truth is netlist-level electrical equivalence or exact circuit topology rather than a coarse type label, and compare the hierarchical graph method with image retrieval on it. A direct check is to take queries that are same-type but rewired and queries that are different-type but isomorphic, and see whether the ranking follows topology or the label; if precision collapses to the image baseline, the central claim fails.
Extended reading notes
Core claim
The central claim is that a hierarchical circuit graph representation—first a coarse Class 1 graph, then a detailed Class 4 graph—gives retrieval accuracy of 0.881 average precision on the constructed dataset, matching the most detailed representation alone while reducing average retrieval time from 252.15 seconds to 57.86 seconds per query. The same pipeline achieves 0.892 accuracy in converting circuit diagrams into graphs, which the paper presents as the enabling step that makes graph retrieval practical. The paper also claims this graph route surpasses three image-based retrieval methods, whose best average precision is 0.627, because pixel features ignore the topological structure that determines circuit function.
Load-bearing premise
The 0.881 accuracy assumes that two diagrams labeled the same circuit type is the right definition of a correct retrieval; if same-type circuits can be electrically different, or different-type circuits can share a topology, the score does not show that graph topology is what drives the results.
Editorial extensions
If this is right
- Engineers could retrieve legacy schematics by structural similarity, so the same circuit drawn with different routing directions is still found.
- The coarse-to-fine two-stage ranking is a transferable pattern for any retrieval task where the accurate similarity measure is too expensive to run on the whole database.
- Since retrieval accuracy tracks graph detail from Class 1 to Class 4, improving component and wire extraction from diagrams should directly raise retrieval precision.
- The large gap over image baselines suggests that pixel embeddings miss exactly the connectivity information that determines circuit function.
Reading between the lines
- The evaluation defines a correct hit as same circuit type; a stricter benchmark based on electrical equivalence or exact topology could change the reported gap, so the practical gain for plagiarism detection is not yet measured by this experiment.
- The hierarchy could scale beyond the 503-diagram database if the graph edit distance stage is replaced or accelerated by a learned graph embedder, which the paper itself lists as future work.
- Because Class 5 representations exist for CMOS and bipolar circuits, a specialized third retrieval stage could sharpen results on transistor-level queries.
- A reasonable reading is that the method is a high-recall structural pre-filter that still needs a finer equivalence check before it can support legal or design-integrity decisions.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper presents a complete pipeline for retrieving analog circuit diagrams from a database by converting each diagram into a graph and comparing graphs via graph edit distance (GED). The pipeline has two stages: (1) recognition, which uses a modified YOLOv8 (GAM-YOLO) to detect components and a two-step connected-domain filtering method to extract net-level topology from the image, and (2) retrieval, which first performs a coarse search with a simple device-as-node graph representation (Class 1) to obtain 20 candidates, then a fine search with a device-and-pin representation (Class 4) on those candidates to produce the final top-5. Experiments on a self-built 503-image database with 10 circuit types report an average retrieval precision of 0.881 for the hierarchical method, identical to Class 4 alone, with a much lower average time (57.86 s vs. 252.15 s). The proposed method is also reported to outperform three image-based retrieval baselines (best APretrieval=0.627). The paper also reports component detection mAP50=0.902 and topology recognition precision of 0.892.
Significance. The idea of using graph representations for circuit diagram retrieval is sensible and addresses a real need in analog design reuse and plagiarism detection. The hierarchical retrieval strategy is a reasonable engineering solution to the computational cost of exact GED. If the results were confirmed with a stronger evaluation, the paper would demonstrate a clear advantage of structure-aware retrieval over pixel-based retrieval for this domain. However, the current significance is limited by the evaluation design. The retrieval metric based on 'same type' is too coarse to validate the topological-fidelity claim, and the absence of a holdout protocol and statistical tests weakens the empirical comparison. The paper does not provide code or data, and the GAM-YOLO contribution is not ablated against its base model. These issues prevent the current version from fully supporting the paper's central claims.
major comments (5)
- [Section IV.B.2] The retrieval accuracy metric in Eq. (9) counts a hit when the retrieved diagram has the same circuit type as the query. With only 10 types in the database, this does not measure the topological fidelity the paper claims is the advantage of graph-based representation. Two circuits of the same type can have substantially different topologies (e.g., different compensation networks or device counts), and two different types can share similar component inventories. Thus the APretrieval=0.881 in Table VI does not demonstrate that graph topology drives the retrieval; it may reflect type-level confounds. The authors should re-evaluate with a ground-truth based on structural similarity (e.g., graph isomorphism classes, expert-rated similarity) or at least report per-type results and show that retrieved same-type circuits are topologically more similar to the query than non-retrieved ones.
- [Section IV.B.1/IV.B.3] The retrieval protocol does not state whether the query diagrams are held out from the 503-image database. If each query is also present in the database, the top-1 result will be the query itself, artificially inflating AP for every method. The paper must clarify the experimental split, and if queries are not excluded, the evaluation should be repeated using leave-one-out (or a fixed query/database split) to ensure the comparison between graph-based and image-based methods is fair.
- [Section IV.A.3, Table IV] GAM-YOLO is presented as the proposed detector, but Table IV reports only its performance. Without a baseline comparison to the standard YOLOv8 under identical training and testing conditions, the claim that adding the GAM attention module improves component detection is not supported. An ablation or baseline result is needed to justify the contribution of the detection component.
- [Section IV.A.2] The evaluation of topology recognition is described as a manual judgment using 'professional circuit knowledge,' but no details are given about the annotation protocol: how many experts, how disagreements were resolved, or whether any inter-rater reliability was measured. The reported precision of 0.892 is therefore not reproducible. The authors should either construct a formal ground-truth (e.g., netlists extracted from the source of the circuit images) or, at minimum, document a structured multi-annotator protocol.
- [Section IV.B.3, Table VI] The table reports a single APretrieval per representation without error bars, standard deviation, or any significance test. The claim that the hierarchical method achieves the same accuracy as Class 4 (0.881) while being faster is statistically unsupported; the identical number could be a coincidence. The authors should report the distribution of per-query precisions (e.g., mean ± std, or a box plot) and, ideally, perform a paired significance test between the hierarchical method and Class 4, and between the graph-based method and the best image-based baseline.
minor comments (9)
- [Abstract] The abstract contains grammatical errors such as 'retrieval similar images' (should be 'retrieve similar images') and 'across of different types' (should be 'across different types').
- [Section II.A] The text states 'G is the set of nodes and E, the set of edges'; it should read 'V is the set of nodes and E is the set of edges.'
- [Section III.B.2, Eq. (4)] The grayscale conversion formula is missing explicit multiplication symbols; it should be written as GRAY = 0.299R + 0.587G + 0.114B.
- [Table III] Several category labels are misspelled or unclear, e.g., 'Biodioe2' (likely 'Bidiode 2') and 'notCon'/'notCon2' (possibly 'Not Connected 1/2'). Please use consistent, descriptive names.
- [Table VII caption] The caption reads 'CIRCUIT DIAGRAM RECOGNITION RESULT' but the table reports retrieval AP; it should be 'CIRCUIT DIAGRAM RETRIEVAL RESULT.'
- [Figure 10] Figure 10 is duplicated: the same figure appears twice with slightly different captions. One copy should be removed.
- [Section IV.A.1] The dataset description contains a typo: 'totaling 2 275 images (including 2 3304 circuit components)' – the stray '2' before '3304' should be removed.
- [Table VI] In the Hierarchical row, the node/edge counts are given as '6.27(Class1)/13.21(Class4)' and '9.53/14.35', but the Class 4 column reports 13.47 and 14.60. Clarify whether these are averages over the top-20 subset or the full database, and why they differ.
- [Section IV.C] The image-based baselines are described only briefly; please provide implementation details such as whether they were trained/fine-tuned on the circuit image database, the feature dimensions, and any preprocessing. Without these, the comparison is difficult to reproduce.
Circularity Check
No circular derivation: the retrieval metric uses external type labels and GED is a standard graph distance with no fitted parameters.
full rationale
I walked the derivation chain from circuit diagram to graph representation to retrieval result. The graph construction maps devices, nets, and pins to nodes and edges following a stated taxonomy (Section II). Similarity is computed by a standard graph edit distance normalized by node counts (Eqs. 6-7), and no parameter of that similarity function is fitted to the retrieval labels. The retrieval accuracy is defined by an external criterion: a hit occurs when the retrieved diagram and the query diagram have the same circuit type (Section IV.B.2, Eq. 9). The GAM-YOLO detector is trained on component detection labels and is evaluated separately (Tables IV-V), so the retrieval AP is not statistically forced by a fitted parameter. The hierarchical method is an algorithmic cascade: Class 1 retrieves a top-20 candidate set and Class 4 reranks that set; the fact that its reported AP equals the full Class 4 AP is an empirical outcome, not an identity by construction. No load-bearing self-citation, imported uniqueness theorem, or ansatz smuggled in by citation appears. The only concern is the coarseness of the same-type proxy and the self-constructed dataset, which is an external evaluation-validity issue rather than circularity in the derivation. Therefore no specific circular step can be exhibited, and the score is 0.
Assumptions & free parameters
free parameters (3)
- First-stage candidate count =
20
- Final top-K count =
5
- Connected-domain filter size threshold =
10% of image pixels
assumptions (4)
- domain assumption Similar circuit graph structure implies similar circuit function
- domain assumption Nets are recoverable as filtered connected components of the binarized image
- domain assumption Same circuit type is a valid proxy for correct retrieval
- domain assumption Manual professional judgment of generated graphs is accurate
Cite this review
Pith. "Pith review of Circuit Diagram Retrieval Based on Hierarchical Circuit Graph Representation." pith.science (2026). https://pith.science/paper/6QUCFAXO
@misc{pith2026250311658,
author = {Pith},
title = {Pith review of: Circuit Diagram Retrieval Based on Hierarchical Circuit Graph Representation},
year = {2026},
howpublished = {\url{https://pith.science/paper/6QUCFAXO}},
note = {Machine review of arXiv:2503.11658}
}
read the original abstract
In the domain of analog circuit design, the retrieval of circuit diagrams has drawn a great interest, primarily due to its vital role in the consultation of legacy designs and the detection of design plagiarism. Existing image retrieval techniques are adept at handling natural images, which converts images into feature vectors and retrieval similar images according to the closeness of these vectors. Nonetheless, these approaches exhibit limitations when applied to the more specialized and intricate domain of circuit diagrams. This paper presents a novel approach to circuit diagram retrieval by employing a graph representation of circuit diagrams, effectively reformulating the retrieval task as a graph retrieval problem. The proposed methodology consists of two principal components: a circuit diagram recognition algorithm designed to extract the circuit components and topological structure of the circuit using proposed GAM-YOLO model and a 2-step connected domain filtering algorithm, and a hierarchical retrieval strategy based on graph similarity and different graph representation methods for analog circuits. Our methodology pioneers the utilization of graph representation in the retrieval of circuit diagrams, incorporating topological features that are commonly overlooked by standard image retrieval methods. The results of our experiments substantiate the efficacy of our approach in retrieving circuit diagrams across of different types.
Figures
Reference graph
Works this paper leans on
-
[1]
M. Fayazi, Z. Colter, E. Afshari et al. , "Applications of Arti ficial Intelligence on the Modeling and Optimization for Analog and Mixed- Signal Circuits: A Review," IEEE Transactions on Circuits and Systems I: Regular Papers, vol. 68, no. 6, pp. 2418 -2431, 2021, doi: 10.1109/tcsi.2021.3065332
-
[2]
M. Fayazi, M. T. Tab a, E. Afshari et al., "AnGeL: Fully -Automated Analog Circuit Generator Using a Neural Network Assisted Semi - Supervised Learning Approach," IEEE Transactions on Circuits and Systems I: Regular Papers, vol. 70, no. 11, pp. 4516 -4529, 2023, doi: 10.1109/tcsi.2023.3295737
-
[3]
An Automated Circuit Topology Generation and Optimization Method for CMOS Low -Noise Amplifiers,
S. Wu, Y. Li, T. Tan et al. , "An Automated Circuit Topology Generation and Optimization Method for CMOS Low -Noise Amplifiers," IEEE Transactions on Circuits and Systems I: Regular Papers, pp. 1-14, 2025, doi: 10.1109/TCSI.2025.3528372
-
[4]
S. K. Vasudevan, K. Venkatachalam, and R. Sundaram, "A novel mobile application for circuit component identification and recognition through machine learning and image processing techniques," International Journal of Intelligent Systems Technologies and Applications, vol. 16, no. 4, pp. 342-358, 2017
work page 2017
-
[5]
Circuit recognition with deep learning,
Y.-Y. Dai and R. K. Braytont, "Circuit recognition with deep learning," in 2017 IEEE International Symposium on Hardware Oriented Security and Trust (HOST), 2017: IEEE, pp. 162-162
work page 2017
-
[6]
Offline hand-drawn circuit component recognition using texture and shape -based features,
S. Roy, A. Bhattacharya, N. Sarkar et al., "Offline hand-drawn circuit component recognition using texture and shape -based features," Multimedia Tools and Applications, vol. 79, pp. 31353-31373, 2020
work page 2020
-
[7]
Library -free structure recognition for analog circuits,
M. Neuner, I. Abel, and H. Graeb, "Library -free structure recognition for analog circuits," in 2021 Design, Automation & Test in Europe Conference & Exhibition (DATE), 2021: IEEE, pp. 1366-1371
work page 2021
-
[8]
Deep Learning for Instance Retrieval: A Survey,
W. Chen, Y. Liu, W. Wang et al., "Deep Learning for Instance Retrieval: A Survey," IEEE Transactions on Pattern Analys is and Machine Intelligence, vol. 45, no. 6, pp. 7270 -7292, 2023, doi: 10.1109/TPAMI.2022.3218591
Show all 50 references
-
[9]
A Decade Survey of Content Based Image Retrieval Using Deep Learning,
S. R. Dubey, "A Decade Survey of Content Based Image Retrieval Using Deep Learning," IEEE Transactions on Circuits and Systems for Video Technology, vol. 32, no. 5, pp. 2687 -2704, 2022, doi: 10.1109/tcsvt.2021.3080920
2022
-
[10]
Diagram Image Retrieval and Analysis: Challenges and Opportunities,
L. Yang, M. Gong, and V. K. Asari, "Diagram Image Retrieval and Analysis: Challenges and Opportunities," in 2020 IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops (CVPRW), 14 -19 June 2020 2020, pp. 685 -698, doi: 10.1109/CVPRW50498.2020.00098
2020
-
[11]
Network Science Meets Circuit Theory: Resistance Distance, Kirchhoff Index, and Foster’s Theorems With Generalizations and Unifi cation,
K. Thulasiraman, M. Yadav, and K. Naik, "Network Science Meets Circuit Theory: Resistance Distance, Kirchhoff Index, and Foster’s Theorems With Generalizations and Unifi cation," IEEE Transactions on Circuits and Systems I: Regular Papers, vol. 66, no. 3, pp. 1090 - 1103, 2019...
2019
-
[12]
A Comprehensive and Unified Procedure for Symbolic Analysis of Analog Circuits,
R. Hashemian, "A Comprehensive and Unified Procedure for Symbolic Analysis of Analog Circuits," IEEE Transaction s on Circuits and Query Top1 Top2 Top3 Top4 Top5 (a) Query Top1 Top2 Top3 Top4 Top5 (b) Fig. 10. The comparison of the retrieval result of a specific circuit diagra...
-
[13]
CktGNN: Circuit graph neural network for electronic design automation,
Z. Dong, W. Cao, M. Zhang et al. , "CktGNN: Circuit graph neural network for electronic design automation," arXiv preprint arXiv:2308.16406, 2023
2023 arXiv
-
[14]
Graph Attention -Based Symmetry Constraint Extraction for Analog Circuits,
Q. Xu, L. Wang, J. Wang et al., "Graph Attention -Based Symmetry Constraint Extraction for Analog Circuits," IEEE Transactions on Circuits and Systems I: Regular Papers, vol. 71, no. 8, pp. 3754-3763, 2024, doi: 10.1109/TCSI.2024.3391187
2024
-
[15]
GANA: Graph Convolutional Network Based Automated Netlist Annotation for Analog Circuits,
K. Kunal, T. Dhar, M. Madhusudan et al. , "GANA: Graph Convolutional Network Based Automated Netlist Annotation for Analog Circuits," Proceedings of the 2020 Design, Automation & Test in Europe Conference & Exhibition (Date 2020), pp. 55 -60, 2020 . [Online]. Available: <Go to...
2020
-
[16]
Pretraining Graph Neural Networks for Few-Shot Analog Circuit Modeling and Design,
K. Hakhamaneshi, M. Nassar, M. Phielipp et al., "Pretraining Graph Neural Networks for Few-Shot Analog Circuit Modeling and Design," IEEE Transactions on Computer -Aided Design of Integrated Circuits and Systems, vol. 42, no. 7, pp. 2163 -2173, 2023, doi: 10.1109/tcad.2022.3217421
2023
-
[17]
A Novel Analog Physical Synthesis Methodology Integrating Existent Design Expertise,
P.-H. Wu, M. P. -H. Lin, T.-C. Chen et al., "A Novel Analog Physical Synthesis Methodology Integrating Existent Design Expertise," IEEE Transactions on Computer -Aided Design of Integrated Circuits and Systems, vol. 34, no. 2, pp. 199 -212, 2015, doi: 10.1109/tcad.2014.2379630
2015
-
[18]
Why are graph neural networks effective for eda problems?,
H. Ren, S. Nath, Y. Zhang et al. , "Why are graph neural networks effective for eda problems?," in Proceedings of the 41st IEEE/ACM International Conference on Computer-Aided Design, 2022, pp. 1-8
2022
-
[19]
ParaGraph: Layout Parasitics and Device Parameter Prediction using Graph Neural Networks,
H. X. Ren, G. F. Kokai, W. J. Turner et al. , "ParaGraph: Layout Parasitics and Device Parameter Prediction using Graph Neural Networks," Proceedings of the 2020 57th Acm/Edac/Ieee Design Automation Conference (Dac), 2020, doi: ARTN 57.4 10.1109/dac18072.2020.9218515
2020
-
[20]
GNN-RE: Graph Neural Networks for Reverse Engineering of Gate -Level Netlis ts,
L. Alrahis, A. Sengupta, J. Knechtel et al., "GNN-RE: Graph Neural Networks for Reverse Engineering of Gate -Level Netlis ts," IEEE Transactions on Computer -Aided Design of Integrated Circuits and Systems, vol. 41, no. 8, pp. 2435 -2448, 2022, doi: 10.1109/TCAD.2021.3110807
2022
-
[22]
Fully Automated Analog Sub -Circuit Clustering with Graph Convoluti onal Neural Networks,
K. Settaluri and E. Fallon, "Fully Automated Analog Sub -Circuit Clustering with Graph Convoluti onal Neural Networks," Proceedings of the 2020 Design, Automation & Test in Europe Conference & Exhibition (Date 2020), pp. 1714-1715, 2020. [Online]. Available: <Go to ISI>://WOS:...
2020
-
[23]
Analog Layout S ynthesis with Knowledge Mining,
P. H. Wu, M. P. H. Lin, and T. Y. Ho, "Analog Layout S ynthesis with Knowledge Mining," 2015 European Conference on Circuit Theory and Design (Ecctd), pp. 9 -12, 2015 . [Online]. Available: <Go to ISI>://WOS:000380498200093
2015
-
[24]
Generalized Constraint Gen eration for Analog Circuit -Design,
E. Charbon, E. Malavasi, and A. Sangiovannivincentelli, "Generalized Constraint Gen eration for Analog Circuit -Design," 1993 Ieee/Acm International Conference on Computer -Aided Design - Digest of Technical Papers, pp. 408 -414, 1993 . [Online]. Available: <Go to ISI>://WOS:A...
1993
-
[25]
GCN -RL Circ uit Designer: Transferable Transistor Sizing with Graph Neural Networks and Reinforcement Learning,
H. Wang, K. Wang, J. Yang et al. , "GCN -RL Circ uit Designer: Transferable Transistor Sizing with Graph Neural Networks and Reinforcement Learning," presented at the 2020 57th ACM/IEEE Design Automation Conference (DAC), 2020
2020
-
[26]
Universal Symmetry Constraint Extraction for Analog and Mixed -Signal Circuits with Graph Neural Networks,
H. Chen, K. Zhu, M. Liu et al. , "Universal Symmetry Constraint Extraction for Analog and Mixed -Signal Circuits with Graph Neural Networks," presented at the 2021 58th ACM/IEEE Design Automation Conference (DAC), San Francisco, CA, USA, 2021. [Online]. Available: https://doi....
2021
-
[27]
Symmetry constraint based on mismatch analysis for analog layout in SOI technology,
J. Y. Liu, S. Dong, X. Hong et al. , "Symmetry constraint based on mismatch analysis for analog layout in SOI technology," 2008 Asia and South Pacific Design Automation Conference, Vols 1 and 2, pp. 748-+,
2008
-
[28]
A customized graph neural network model for guiding analog IC placement,
Y. Li, Y. Lin, M. Madhusudan et al. , "A customized graph neural network model for guiding analog IC placement," presented at the Proceedings of the 39th International Conference on Computer -Aided Design, 2020
2020
-
[29]
Constraints generation for analog circuits layout,
Q. S. Hao, S. Chen, X. L. Hong et al., "Constraints generation for analog circuits layout," 2004 International Conference on Communication, Circuits, and Systems, Vols 1 and 2, pp. 1334 -1338, 2004, doi: Doi 10.1109/Icccas.2004.1346418
2004 arXiv
-
[30]
FEATS: Framework for Explorative Analog Topology Synthesis,
M. Meissner and L. Hedrich, "FEATS: Framework for Explorative Analog Topology Synthesis," IEEE Transactions on Computer -Aided Design of Integrated Circuits and Systems, vol. 34, no. 2, pp. 213-226, 2015, doi: 10.1109/tcad.2014.2376987
2015
-
[31]
Analog constraints extraction based on the signal flow analysis,
Z. Zhou, S. Q. Dong, X. L. Hong et al., "Analog constraints extraction based on the signal flow analysis," 2005 6th International Conference on ASIC Proceedings, Books 1 and 2, pp. 824 -827, 2005 . [Online]. Available: <Go to ISI>://WOS:000235304100207
2005
-
[32]
Automated analog circuits symmetrical layout constraint extraction by partition,
S. Yi, S. Q. Dong, Q. S. Hao et al. , "Automated analog circuits symmetrical layout constraint extraction by partition," 2003 5th International Conference on Asic, Vols 1 and 2, Proceedings, pp. 166- 169, 2003, doi: Doi 10.1109/Icasic.2003.1277515
2003 arXiv
-
[33]
Fast Isomorphism Testing for a Graph-based Analog Circuit Synthesis Framework,
M. Meissner, O. Mitea, L. Luy et al., "Fast Isomorphism Testing for a Graph-based Analog Circuit Synthesis Framework," Design, Automation & Test in Europe (Date 2012), pp. 757-762, 2012. [Online]. Available: <Go to ISI>://WOS:000415126300145
2012
-
[34]
Global stacking for analog circuits,
B. G. Arsintesc u and S. A. Spanoche, "Global stacking for analog circuits," Euro-Dac '96 - European Design Automation Conference with Euro-Vhdl '96 and Exhibition, Proceedings, pp. 392-397, 1996, doi: Doi 10.1109/Eurdac.1996.558234
1996
-
[35]
A general approach for identifying hierarchical symmetry constraints for analog circuit layout,
K. Kunal, J. Poojary, T. Dhar et al., "A general approach for identifying hierarchical symmetry constraints for analog circuit layout," presented at the Proceedings of the 39th International Conference on Computer - Aided Design, 2020
2020
-
[36]
Parasitic-Aware Analog Circuit Sizing with Graph Neural Networks and Bayesian Optimization,
M. J. Liu, W. J. Turner, G. F. Kokai et al., "Parasitic-Aware Analog Circuit Sizing with Graph Neural Networks and Bayesian Optimization," Proceedings of the 2021 Design, Automation & Test in Europe Conference & Exhibition (Date 2021), pp. 1372 -1377, 2021. [Online]. Available...
2021
-
[37]
Subgemini - Identifying Subcircuits Using a Fast Subgraph Isomorphism Algorithm,
M. Ohlrich, C. Ebeling, E. Ginting et al. , "Subgemini - Identifying Subcircuits Using a Fast Subgraph Isomorphism Algorithm," 30th Design Automation Conference : Proceedings 1993, pp. 31-37, 1993. [Online]. Available: <Go to ISI>://WOS:A1993BY90U00006
1993
-
[38]
Graph Neural Networks for Circuit Diagram Pattern Generation,
J. M. Patil, J. Bayer, and A. Dengel, "Graph Neural Networks for Circuit Diagram Pattern Generation," in Deep Learning Theory and Applications, (Communications in Computer and Information Science, 2023, ch. Chapter 24, pp. 351-369
2023
-
[39]
Layout Symmetry Annotation for Analog Circuits with Graph Neural Networks,
X. Ga o, C. Deng, M. Liu et al. , "Layout Symmetry Annotation for Analog Circuits with Graph Neural Networks," presented at the Proceedings of the 26th Asia and South Pacific Design Automation Conference, 2021
2021
-
[40]
S3DET: Detecting System Symmetry Constraints for Analog Circuits with Graph Similarity,
M. Liu, W. Li, K. Zhu et al., "S3DET: Detecting System Symmetry Constraints for Analog Circuits with Graph Similarity," in 2020 25th Asia and South Pacific Design Automation Conference (ASP-DAC), 13- 16 Jan. 2020 2020, pp. 193 -198, doi: 10.1109/ASP - DAC47756.2020.9045109
2020
-
[41]
A metho d for analog circuits visualization,
B. G. Arsintescu, "A metho d for analog circuits visualization," International Conference on Computer Design - Vlsi in Computers and Processors, Proceedings, pp. 454 -459, 1996, doi: Doi 10.1109/Iccd.1996.563593
1996
-
[42]
Optimum Cmos Stack Generation with Analog Constraints,
E. Malavasi and D. Pandini, "Optimum Cmos Stack Generation with Analog Constraints," IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems, vol. 14, no. 1, pp. 107-122, Jan 1995, doi: Doi 10.1109/43.363120
1995 doi
-
[43]
YOLOv8: A Novel Object Detection Algorithm with Enhanced Perfor mance and Robustness,
R. Varghese and M. S, "YOLOv8: A Novel Object Detection Algorithm with Enhanced Perfor mance and Robustness," in 2024 International Conference on Advances in Data Engineering and Intelligent Computing Systems (ADICS) , 18 -19 April 2024 2024, pp. 1 -6, doi: 10.1109/ADICS58448....
2024
-
[44]
VarifocalNet: An IoU -aware Dense Object Detector,
H. Zhang, Y. Wang, F. Dayoub et al., "VarifocalNet: An IoU -aware Dense Object Detector," 2021 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pp. 8510-8519, 2020
2021
-
[45]
Generalized Focal Loss: Learning Qualified and Distributed Bounding Boxes for Dens e Object Detection,
X. Li, W. Wang, L. Wu et al. , "Generalized Focal Loss: Learning Qualified and Distributed Bounding Boxes for Dens e Object Detection," ArXiv, vol. abs/2006.04388, 2020
2006 arXiv
-
[46]
A Distance Measure between Attributed Relational Graphs for Pattern -Recognition,
A. Sanfeliu and K. S. Fu, "A Distance Measure between Attributed Relational Graphs for Pattern -Recognition," Ieee Transactions on Systems Man and Cybernetics, vol. 13, no. 3, pp. 353 -362, 1983, doi: Doi 10.1109/Tsmc.1983.6313167
1983
-
[47]
A graph distance metric based on the maximal common subgraph,
H. Bunke and K. Shearer, "A graph distance metric based on the maximal common subgraph," Pattern Recognition Letters, vol. 19, no. 11 > REPLACE THIS LINE WITH YOUR MANUSCRIPT ID NUMBER (DOUBLE -CLICK HERE TO EDIT) < 3-4, pp. 255-259, Mar 1998, doi: Doi 10.1016/S0167-8655(97)00179- 7
1998 doi
-
[48]
Accelerating Graph Similarity Search via Efficient GED Computation,
L. J. Chang, X. Feng, K. Yao et al., "Accelerating Graph Similarity Search via Efficient GED Computation," Ieee Transactions on Knowledge and Data Engineering, vol. 35, no. 5, pp. 4485-4498, May 1 2023, doi: 10.1109/Tkde.2022.3153523
2023
-
[49]
Learning with average precision: Training image retrieval with a listwise loss,
J. Revaud, J. Almazá n, R. S. Rezende et al., "Learning with average precision: Training image retrieval with a listwise loss," in Proceedings of the IEEE/CVF International Conference on Computer Vision, 2019, pp. 5107-5116
2019
-
[50]
PyRetri: A PyTorch-based library for unsupervised image retrieval by Deep Convolutional Neural Networks,
B. Hu, R.-J. Song, X.-S. Wei et al., "PyRetri: A PyTorch-based library for unsupervised image retrieval by Deep Convolutional Neural Networks," in Proceedings of the 28th ACM International Conference on Multimedia, 2020, pp. 4461-4464
2020
-
[2008]
Available: <Go to ISI>://WOS:000257065100142
[Online]. Available: <Go to ISI>://WOS:000257065100142
Reviewed August 9, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.