Is there source code for generating the graphs?
See original GitHub issueHi, gods of 3d reconstruction!
I send good wishes and gratitude from your fans at UMD, Maryland, U.S… Big THANK YOU for posting your code! A few questions:
-
Does the repository include the routines for generating the graph data? (I noticed some things for node processing in
csrc/cpu/graph_proc.cpp
, e.g.sample_nodes
, but no actual usages besides imports inmodel.py
anddataset.py
. Are those it, or is there something else?) -
If the answer to (1) is ‘yes’, could you provide a quick example on how these can be used to generate the graphs?
-
If the answer to (1) is ‘no’, can you provide any pointers to existing code that can be used to generate the graphs?
Issue Analytics
- State:
- Created 3 years ago
- Comments:11 (3 by maintainers)
Top Results From Across the Web
Reviewing the Source Code for the Graph - Oracle Help Center
In Chapter 6, "Creating a Graph for the Web Report", you added a graph to a JSP-based Web report. This chapter reviews the...
Read more >GraphGen4Code | A Toolkit for Generating Code Knowledge ...
In this work, we present GraphGen4Code, a toolkit to build code knowledge graphs that can similarly power various applications such as program search,...
Read more >"Understanding & Generating Source Code with Graph Neural ...
MLP 2018: Machine Learning for Programming. "Understanding & Generating Source Code with Graph Neural Networks" Miltos Allamanis | FLOC 2018.
Read more >PROGEX (Program Graph Extractor) - GitHub
PROGEX reads program source code files as input, and is able to generate various graphical program representations and export them into well-known file...
Read more >How to Visualize Java Source Code with Graphlytic and ...
Installing jQAssistant in your Maven project · Generating a graph from your Java source code · Running the embedded jQAssistant's Neo4j server with...
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 FreeTop 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
Top GitHub Comments
hey @Algomorph! thanks a lot for your interest!
So we definitely have in mind to also release the part for generating the graph data. As you point out, in
csrc
there are some of the routines we use for generating the data, but indeed the scripts for generating the data are not released. Probably in some weeks after a deadline we have, we’ll release it 😃 I’ll keep you postedHi @Algomorph! The code is actually intended to generate training data for NeuralTracking network, so it is assumed that scene flow ground truth is given (from the DeepDeform dataset). But if you want to generate graphs at test time, you would need to adapt it slightly, to generate mesh without scene flow image. Then you also cannot generate ground truth node deformations, but that is actually what you want to compute in any case using the deformation graph, you don’t really have the ground truth at test time. Let me know if there is any confusion about it.