REVIEW 5 major objections 5 minor 36 references
OpenLS-DGF: An Adaptive Open-Source Dataset Generation Framework for Machine Learning Tasks in Logic Synthesis
T0 review · 5 major / 5 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read OpenLS-DGF is an open-source flow that builds one adaptive logic-synthesis dataset spanning Boolean representation, logic optimization, and technology mapping; its OpenLS-D-v1 (966k circuits) supports four ML tasks.
desk verdict A genuinely useful multi-task dataset for EDA-ML, with the central equivalence claim for logic-blasting asserted rather than proven — worth reviewing, but verify before trusting. 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 carrying mechanism is the closed loop between the conversion pipeline and the paper's Circuit class. On the synthesis side, the logic-blasting step turns one optimized AIG per recipe into six further Boolean-network types; Theorem 1 asserts that the mapping step preserves node dependencies by matching nodes before and after blasting, and that each MAJ3 gate can stand in for an AND gate. On the data side, the Circuit class is a generic graph object that stores each node's type, name, fanins, and a 64-bit truth table, keeps the original Boolean-circuit index alongside an internal index, and converts GraphML into a graph-learning tensor format with identical node indices. That index-preserving bridge is what lets a single dataset item be loaded, simulated, relabeled, and repacked into task-specific sub-datasets without losing the connection to the original circuit.
What would settle it
Run an independent combinational equivalence check on a random sample, or the full set, of the generated OIG, XAG, MIG, PRIMARY, and GTG circuits against their source AIGs, and separately compare node-dependency graphs before and after the conversion; a single functionally inequivalent sampled circuit, or any mismatch in dependency structure, would falsify the framework's label-correctness claim.
Extended reading notes
Core claim
OpenLS-DGF is presented as an adaptive, open-source flow that covers the three fundamental stages of logic synthesis—Boolean representation, logic optimization, and technology mapping—in seven steps. Starting from 46 combinational benchmark designs, it applies 1,000 random optimization recipes per design, then logic-blasts each optimized AIG into a family of seven Boolean-network types (AIG, OIG, XAG, MIG, PRIMARY, and GTG), maps each to ASIC and FPGA netlists, runs static timing analysis, and packages everything into per-design tensor files. The resulting OpenLS-D-v1 contains over 966,000 Boolean circuits, each stored in Verilog and GraphML with quality-of-results metadata; the paper claims its Theorem 1 guarantees the logic-blasting conversion preserves node dependencies and that all generated files are verified by combinational equivalence checking. Four downstream tasks—circuit classification, circuit ranking, QoR prediction, and probability prediction—are implemented on sub-datasets extracted from OpenLS-D-v1, with reported classification accuracy near 99.8%, ranking accuracy near 99.5%, area prediction errors between 0.69% and 1.17%, and probability prediction errors as low as 0.0008.
Load-bearing premise
The load-bearing premise is that every logic-blasting conversion, including the topological AIG-to-MIG conversion, preserves both Boolean equivalence and node dependencies for all 966,000 generated circuits.
Editorial extensions
If this is right
- One OpenLS-D-v1 item can feed at least four tasks—classification, ranking, QoR prediction, and probability prediction—so ML models for different synthesis stages can be trained and compared on identical circuits from a single download.
- Circuit ranking is introduced as a new task: if a model can rank Boolean representations before technology mapping, designers can skip the expensive mapping and timing runs for inferior variants.
- QoR prediction on unseen recipes, unseen designs, and unseen recipe-design combinations is reported to reach mean absolute percentage errors between 0.69% and 1.17% for area and between 6.49% and 7.87% for timing, suggesting the dataset carries enough structure for generalization.
- The observation that different Boolean representations of the same design can have non-overlapping QoR regions means representation choice is a real design decision, not a cosmetic one.
- Because intermediate Verilog files and TCL scripts are preserved, researchers can insert additional synthesis steps at any point and regenerate only the affected dataset files.
Reading between the lines
- Editorial extension: the per-recipe indexing shared across all packaged files makes OpenLS-D-v1 ready-made for transfer-learning benchmarks—train a classifier or QoR predictor on one task and test whether the learned circuit embeddings transfer to ranking or probability prediction.
- Editorial extension: the paper's observation that QoR intervals stabilize after a few hundred recipes suggests a cheap generation-time stopping rule—monitor the QoR distribution's spread and stop adding recipes once it stops changing, which would cut the reported 76-hour generation cost.
- Editorial extension: because the Circuit class stores a 64-bit truth table per node, the dataset could support node-level functional-equivalence tasks, such as cut enumeration or resubstitution candidate generation, without any new conversion work.
- Editorial extension: if the AIG-to-MIG conversion were ever formally verified as functional equivalence rather than topological matching, the dataset's guarantees would become stronger; a direct test would be to implement a supergate-based MIG mapper and compare its outputs with the topological conversion's outputs.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces OpenLS-DGF, a seven-step dataset generation framework built on Yosys, ABC, LSILS, iEDA, and LogicFactory, which converts combinational designs into six Boolean network representations (AIG, OIG, XAG, MIG, PRIMARY, GTG) plus ASIC and FPGA netlists with area and timing QoR, packaged into PyTorch-ready files through a custom Circuit class. The released OpenLS-D-v1 dataset contains 46 designs and more than 966,000 Boolean circuits generated from 1,000 synthesis recipes per design. The authors demonstrate the dataset's versatility through four downstream tasks: circuit classification, circuit ranking, QoR prediction, and probability prediction, and argue that OpenLS-D-v1 supports adaptive sub-dataset extraction and incremental extension.
Significance. If the equivalence and packaging claims hold, OpenLS-D-v1 is a valuable community resource: it is larger and more multi-task oriented than OpenABC-D, stores both Verilog and GraphML representations, includes an open-source circuit engine, and is publicly released. The four tasks span the main stages of logic synthesis and the dataset provides a single artifact from which multiple task-specific sub-datasets can be derived. These strengths are substantial and make the work a credible contribution to ML-for-EDA. However, the validation is currently weaker than the central claims require: the equivalence proof for logic blasting is not a functional-equivalence proof, the verification chain in Step 7 is under-specified, and the downstream experiments are single-run demonstrations without error bars or adequate baselines. These are fixable concerns rather than reasons to reject the paper.
major comments (5)
- [Section III-B, Step 4 and Theorem 1] The proof of Theorem 1 asserts that logic blasting preserves dependency relationships because nodes can be precisely matched and each MAJ3 gate can implement AND. This is not a proof of Boolean functional equivalence: a node-wise structural mapping plus a functional-completeness argument does not imply that every multi-input subcircuit is replaced by a functionally equivalent one, especially for the 'topological node-wise conversion' used for MIG, for which no algorithm or invariant is described. Since circuit classification, ranking, QoR, and probability labels all assume that every one of the 966k circuits is Boolean-equivalent to its source design, this is a load-bearing gap. Please either provide a formal equivalence invariant for each conversion (including MIG), or report per-type combinational equivalence checking of every converted network against the original design, with pass rates.
- [Section III-B, Step 7] The verification statement says that LSILS-generated files are checked against their corresponding gate-level netlists in abc.aig.pt. This checks the mapped netlist against the possibly already-incorrect Boolean network from the same pipeline, not against the original source design; it therefore cannot certify that the stored circuits realize the intended functions. The paper also does not report how many files passed, which tool configurations were used, or whether any files failed and were discarded. Please specify the verification chain from the source design through each intermediate representation and give the pass/fail counts for all logic types.
- [Section V-E, Table VI] The QoR prediction setup is under-specified. The model outputs a softmax over 'the overall distribution', but the binning scheme (number of bins, boundaries, normalization, and how the QoR value is mapped to a bin index) is not defined, and the MAPE numbers in Table VI are reported without error bars, repeated trials, or comparison to a simple baseline such as predicting the median or mean of the training distribution. Without this information the reported area MAPE of 0.69% and timing MAPE of 6.49% cannot be reproduced or assessed. Please provide the binning details, the split sizes, and variance estimates.
- [Section V-F, Table VII] The probability prediction comparison is unclear: the 'Comparison' column in Table VII mixes PE improvements and time speedups with ambiguous notation, and the DeepGate2 and GraphSAGE baselines are not described in terms of architecture, features, training setup, or whether DeepGate2 is the published model or a reimplementation. No error bars or trial counts are given. As written, the table does not support the claim that the proposed method outperforms the baselines. Please specify the baselines and report means and standard deviations over multiple runs.
- [Sections V-C to V-F] Across all four downstream tasks, the experimental evidence is single-run and largely lacks baselines: classification is supported by a t-SNE plot and one accuracy number at epoch 10, ranking reports accuracy for one split without variance, and the QoR and probability tasks likewise report point estimates. While these experiments are presented as demonstrations of dataset applicability rather than as state-of-the-art benchmarks, the paper's claim that the dataset achieves 'prominent diversity and applicability' would be materially stronger if at least one task included a standard baseline, error bars, or multiple random seeds.
minor comments (5)
- [Section V-D, Problem Formulation] The text writes 'OoR' where 'QoR' is intended; please fix the typo.
- [Section V-D, Fig. 14] The caption of Fig. 14 says 'all three models achieve high accuracy', but the figure and surrounding text present a single model; Table V lists three models but no per-model figure is shown.
- [Fig. 2] The label 'PRIMAYR' should read 'PRIMARY'.
- [Section IV-A-2] The cosine similarity matrix is normalized to [0.3, 0.6], which makes the reported average similarity of 0.44 an artifact of the normalization rather than a raw similarity value; please report raw values or justify the normalization.
- [Table IV] The per-design counts in the table sum to 21,000 only if the 7,000 ASIC and 7,000 FPGA netlists are counted as part of the total; the grouping would be clearer if Boolean network counts and netlist counts were listed separately.
Circularity Check
One local proof-by-construction in Theorem 1; the four downstream tasks and dataset labels rest on external tools, so the circularity is minor and non-systemic.
-
self definitional
[Section III-B, Step 4 (Logic Blasting), Theorem 1 and its proof]
"Theorem 1. The logic blasting method preserves the dependency relationships of the original circuit. Proof 1. The logic blasting step relies on the mapping step, ensuring that nodes between the circuits, both before and after the blasting, can be precisely matched. Thus, they retain the same topological structure. The matched nodes preserve the dependency relationships. Additionally, each MAJ3 gate can represent an AND gate, and it is still feasible to meet Theorem 1."
The theorem's conclusion (preservation of dependency relationships) is asserted to follow from the mapping step that, by construction, matches nodes and preserves topological structure; if 'preserving dependency relationships' means exactly that matched nodes retain the same topology, the theorem restates its premise rather than proving an independent fact. It does not establish Boolean functional equivalence, and the MAJ3 sentence only notes that MAJ3 can implement AND, which does not show that the node-wise MIG conversion preserves the function at each node. Since Lemma 1 and the claim that all seven logic types are valid representations of the same design rely on this theorem, a circular proof leaves the dataset's central validity assertion underived.
full rationale
The dataset generation chain is otherwise non-circular. Labels and QoRs are produced by external tools (Yosys, ABC, LSILS, iEDA) from established benchmarks, and the four downstream tasks are standard supervised evaluations whose inputs are circuits and whose targets are measured or simulated quantities; no fitted parameter is renamed as a prediction, and no self-citation is load-bearing. The Theorem 1 proof is best read as a definitional statement about structural node matching rather than an independent derivation of equivalence; the paper's actual functional-equivalence check (Step 7) and the use of mature external synthesis tools provide independent support, so the circularity is local and minor. The Graph2Vec-based diversity analysis is self-referential because embeddings are computed on the generated data, but it is an internal quality metric rather than a derivation, and it does not raise the score beyond a small adjustment.
Assumptions & free parameters
free parameters (3)
- recipe_count =
1000
- recipe_length =
10
- truth_table_bits =
64
assumptions (4)
- standard math The gate sets in Table II (AIG, OIG, XAG, MIG, PRIMARY, GTG) are functionally complete.
- domain assumption Yosys, ABC, LSILS, and iEDA correctly perform their claimed synthesis, mapping, and timing analyses.
- domain assumption The combinational equivalence checks mentioned in Step 7 are complete and correctly applied to all 966k circuits.
- domain assumption Random simulation with sufficiently many input vectors yields accurate node probabilities.
Cite this review
Pith. "Pith review of OpenLS-DGF: An Adaptive Open-Source Dataset Generation Framework for Machine Learning Tasks in Logic Synthesis." pith.science (2026). https://pith.science/paper/XO6AHJOB
@misc{pith2026241109422,
author = {Pith},
title = {Pith review of: OpenLS-DGF: An Adaptive Open-Source Dataset Generation Framework for Machine Learning Tasks in Logic Synthesis},
year = {2026},
howpublished = {\url{https://pith.science/paper/XO6AHJOB}},
note = {Machine review of arXiv:2411.09422}
}
read the original abstract
This paper introduces OpenLS-DGF, an adaptive logic synthesis dataset generation framework, to enhance machine learning~(ML) applications within the logic synthesis process. Previous dataset generation flows were tailored for specific tasks or lacked integrated machine learning capabilities. While OpenLS-DGF supports various machine learning tasks by encapsulating the three fundamental steps of logic synthesis: Boolean representation, logic optimization, and technology mapping. It preserves the original information in both Verilog and machine-learning-friendly GraphML formats. The verilog files offer semi-customizable capabilities, enabling researchers to insert additional steps and incrementally refine the generated dataset. Furthermore, OpenLS-DGF includes an adaptive circuit engine that facilitates the final dataset management and downstream tasks. The generated OpenLS-D-v1 dataset comprises 46 combinational designs from established benchmarks, totaling over 966,000 Boolean circuits. OpenLS-D-v1 supports integrating new data features, making it more versatile for new challenges. This paper demonstrates the versatility of OpenLS-D-v1 through four distinct downstream tasks: circuit classification, circuit ranking, quality of results (QoR) prediction, and probability prediction. Each task is chosen to represent essential steps of logic synthesis, and the experimental results show the generated dataset from OpenLS-DGF achieves prominent diversity and applicability. The source code and datasets are available at https://github.com/Logic-Factory/ACE/blob/master/OpenLS-DGF/readme.md.
Figures
Figures from the paper (10 more)
Reference graph
Works this paper leans on
-
[1]
Machine Learning for Electronic Design Automation: A Survey
G. Huang, J. Hu, and et al, “Machine Learning for Electronic Design Automation: A Survey,” 2021. [Online]. Available: https: //arxiv.org/abs/2102.03357
work page Pith review arXiv 2021
-
[2]
Logic Synthesis Meets Machine Learning: Trading Exactness for Generalization
S. Rai, W. L. Neto, and et al, “Logic Synthesis Meets Machine Learning: Trading Exactness for Generalization,” 2020. [Online]. Available: https://arxiv.org/abs/2012.02530
work page Pith review arXiv 2020
-
[3]
Deep Learning for Logic Optimiza- tion Algorithms,
W. Haaswijk, E. Collins, and et al, “Deep Learning for Logic Optimiza- tion Algorithms,” in 2018 IEEE International Symposium on Circuits and Systems (ISCAS) , 2018, pp. 1–4
work page 2018
-
[4]
LSOracle: a Logic Synthesis Framework Driven by Artificial Intelligence: Invited Paper,
W. L. Neto, M. Austin, and et al, “LSOracle: a Logic Synthesis Framework Driven by Artificial Intelligence: Invited Paper,” in 2019 IEEE/ACM International Conference on Computer-Aided Design (IC- CAD), 2019, pp. 1–6
work page 2019
-
[5]
AISYN: AI-driven Reinforcement Learning-Based Logic Synthesis Framework,
G. Pasandi, S. Pratty, and J. Forsyth, “AISYN: AI-driven Reinforcement Learning-Based Logic Synthesis Framework,” 2023. [Online]. Available: https://arxiv.org/abs/2302.06415
arXiv 2023
-
[6]
Adaptive Reconvergence-driven AIG Rewrit- ing via Strategy Learning,
L. Ni, Z. Yang, and et al, “Adaptive Reconvergence-driven AIG Rewrit- ing via Strategy Learning,” in 2023 IEEE 41st International Conference on Computer Design (ICCD) . IEEE, 2023, pp. 336–343
work page 2023
-
[7]
SLAP: A Supervised Learn- ing Approach for Priority Cuts Technology Mapping,
W. L. Neto, M. T. Moreira, and et al, “SLAP: A Supervised Learn- ing Approach for Priority Cuts Technology Mapping,” in 2021 58th ACM/IEEE Design Automation Conference (DAC) , 2021, pp. 859–864
work page 2021
-
[8]
AiMap: Learning to Improve Technology Map- ping for ASICs via Delay Prediction,
J. Liu, L. Ni, and et al, “AiMap: Learning to Improve Technology Map- ping for ASICs via Delay Prediction,” in 2023 IEEE 41st International Conference on Computer Design (ICCD) . IEEE, 2023, pp. 344–347
work page 2023
Show all 36 references
-
[9]
EasyMap: Improving Technology Mapping via Exploration-Enhanced Heuristics and Adaptive Sequencing,
P. Wang, A. Lu, and et al, “EasyMap: Improving Technology Mapping via Exploration-Enhanced Heuristics and Adaptive Sequencing,” in 2023 IEEE/ACM International Conference on Computer Aided Design (ICCAD), 2023, pp. 01–09
2023
-
[10]
GNN-RE: Graph Neural Networks for Reverse Engineering of Gate-Level Netlists,
L. Alrahis, A. Sengupta, and et al, “GNN-RE: Graph Neural Networks for Reverse Engineering of Gate-Level Netlists,” IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems , vol. 41, no. 8, pp. 2435–2448, 2022. 14
2022
-
[11]
Gamora: Graph Learning based Symbolic Reasoning for Large-Scale Boolean Networks,
N. Wu, Y . Li, and et al, “Gamora: Graph Learning based Symbolic Reasoning for Large-Scale Boolean Networks,” 2023. [Online]. Available: https://arxiv.org/abs/2303.08256
2023 arXiv
-
[12]
A neutral netlist of 10 combinational benchmark circuits and a targeted translator in FORTRAN,
F. Brglez and H. Fujiwara, “A neutral netlist of 10 combinational benchmark circuits and a targeted translator in FORTRAN,” in ISCAS, 06 1985
1985
-
[13]
Combinational profiles of sequential benchmark circuits,
F. Brglez, D. Bryan, and K. Kozminski, “Combinational profiles of sequential benchmark circuits,” in 1989 IEEE International Symposium on Circuits and Systems (ISCAS) , 1989, pp. 1929–1934 vol.3
1989
-
[14]
Logic Synthesis and Optimization Benchmarks User Guide Version 3.0,
S. Yang, “Logic Synthesis and Optimization Benchmarks User Guide Version 3.0,”tech report microelectronics centre of north carolina, 1991
1991
-
[15]
IWLS’93 Benchmark Set: Version 4.0,
K. McElvain, “IWLS’93 Benchmark Set: Version 4.0,” Distributed as a part of IWLS’93 benchmark set, Tech. Rep., May 1993
1993
-
[16]
IWLS 2005 benchmarks,
C. Albrecht, “IWLS 2005 benchmarks,” in IEEE International Workshop for Logic Synthesis (IWLS) , 2005
2005
-
[17]
The EPFL combina- tional benchmark suite,
L. Amar ´u, P.-E. Gaillardon, and G. De Micheli, “The EPFL combina- tional benchmark suite,” in IEEE International Workshop on Logic & Synthesis (IWLS), 2015
2015
-
[18]
OpenCores, https://opencores.org/
-
[19]
OpenABC-D: A Large-Scale Dataset For Machine Learning Guided Integrated Circuit Synthesis,
A. B. Chowdhury, B. Tan, R. Karri, and S. Garg, “OpenABC-D: A Large-Scale Dataset For Machine Learning Guided Integrated Circuit Synthesis,” 2021. [Online]. Available: https://arxiv.org/abs/2110.11292
2021 arXiv
-
[20]
DeepGate: learning neural representations of logic gates,
M. Li, S. Khan, Z. Shi, N. Wang, H. Yu, and Q. Xu, “DeepGate: learning neural representations of logic gates,” in DAC ’22: 59th ACM/IEEE Design Automation Conference, San Francisco, California, USA, July 10 - 14, 2022 , R. Oshana, Ed. ACM, 2022, pp. 667–672
2022
-
[21]
Building OpenLANE: A 130nm OpenROAD-based Tapeout- Proven Flow : Invited Paper,
M. Shalan and T. Edwards, “Building OpenLANE: A 130nm OpenROAD-based Tapeout- Proven Flow : Invited Paper,” in 2020 IEEE/ACM International Conference On Computer Aided Design (IC- CAD), 2020, pp. 1–6
2020
-
[22]
Toward an Open-Source Digital Flow: First Learnings from the OpenROAD Project,
T. Ajayi, V . A. Chhabria, and et al, “Toward an Open-Source Digital Flow: First Learnings from the OpenROAD Project,” in Proceedings of the 56th Annual Design Automation Conference 2019 , ser. DAC ’19. New York, NY , USA: Association for Computing Machinery, 2019. [Online]. A...
2019
-
[23]
Simplification of non-deterministic multi-valued networks,
A. Mishchenko and R. Brayton, “Simplification of non-deterministic multi-valued networks,” in Proceedings of the 2002 IEEE/ACM Inter- national Conference on Computer-Aided Design , 2002, p. 557–562
2002
-
[24]
ImageNet: A large-scale hierarchical image database,
J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, and L. Fei-Fei, “ImageNet: A large-scale hierarchical image database,” in 2009 IEEE Conference on Computer Vision and Pattern Recognition , 2009, pp. 248–255
2009
-
[25]
LogicFactory: An Open-source Logic Synthesis Platform for Integrated Cross-tool Flow,
L. Ni, “LogicFactory: An Open-source Logic Synthesis Platform for Integrated Cross-tool Flow,” https://github.com/Logic-Factory/
-
[26]
Yosys Open SYnthesis Suite,
C. Wolf, “Yosys Open SYnthesis Suite,” https://yosyshq.net/yosys/
-
[27]
ABC: An Academic Industrial-Strength Verification Tool,
R. Brayton and A. Mishchenko, “ABC: An Academic Industrial-Strength Verification Tool,” in Computer Aided Verification , T. Touili, B. Cook, and P. Jackson, Eds. Berlin, Heidelberg: Springer Berlin Heidelberg, 2010, pp. 24–40
2010
-
[28]
The EPFL logic synthesis libraries,
M. Soeken, H. Riener, and et al, “The EPFL logic synthesis libraries,” Jun. 2022, arXiv:1805.05121v3
2022 arXiv
-
[29]
BOiLS: Bayesian Optimisation for Logic Synthesis,
A. Grosnit, C. Malherbe, and et al, “BOiLS: Bayesian Optimisation for Logic Synthesis,” in 2022 Design, Automation & Test in Europe Conference & Exhibition (DATE) , 2022, pp. 1193–1196
2022
-
[30]
DRiLLS: Deep Reinforcement Learning for Logic Synthesis,
A. Hosny, S. Hashemi, M. Shalan, and S. Reda, “DRiLLS: Deep Reinforcement Learning for Logic Synthesis,” in 2020 25th Asia and South Pacific Design Automation Conference (ASP-DAC) , 2020, pp. 581–586
2020
-
[31]
SkyWater SKY130 PDK,
Google, “SkyWater SKY130 PDK,” https://github.com/google/ skywater-pdk
-
[32]
iEDA: An Open-Source Intelligent Physical Implementation Toolkit and Library,
X. Li, S. Tao, and et al, “iEDA: An Open-Source Intelligent Physical Implementation Toolkit and Library,” 2023. [Online]. Available: https://arxiv.org/abs/2308.01857
2023 arXiv
-
[33]
Fast Graph Representation Learning with PyTorch Geometric,
M. Fey and J. E. Lenssen, “Fast Graph Representation Learning with PyTorch Geometric,” 2019. [Online]. Available: https://arxiv.org/abs/ 1903.02428
2019 arXiv
-
[34]
Exploring Network Structure, Dynamics, and Function using NetworkX,
A. A. Hagberg, D. A. Schult, and P. J. Swart, “Exploring Network Structure, Dynamics, and Function using NetworkX,” in Proceedings of the 7th Python in Science Conference , G. Varoquaux, T. Vaught, and J. Millman, Eds., Pasadena, CA USA, 2008, pp. 11 – 15
2008
-
[35]
graph2vec: Learning Distributed Representations of Graphs,
A. Narayanan, M. Chandramohan, R. Venkatesan, L. Chen, Y . Liu, and S. Jaiswal, “graph2vec: Learning Distributed Representations of Graphs,” 2017. [Online]. Available: https://arxiv.org/abs/1707.05005
2017 arXiv
-
[36]
Zstandard: A fast lossless compression algorithm,
Facebook, “Zstandard: A fast lossless compression algorithm,” https: //github.com/facebook/zstd
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.