I have build a NN in Java using the Neuroph API. Within the API there is a package called GraphmlExport. i followed this tutorial: http://fernando.carrillo.at/neuroph-graphml-export/
I put the three lines of code in my class:
GraphmlExport ge = new GraphmlExport(myMLPerceptron);
ge.parse();
ge.writeToFile("/FILE/PATH/OUT");
ge.printToStdout();
I don't understand what needs to go in the brackets of writeToFile. i use ge.printToStdout() to see if it works and it does but using that is printing it like this in the Console:
graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
<key id="d1" for="edge" attr.name="weight" attr.type="double"></key>
<graph id="defaultId" edgedefault="directed">
<node id="Input-0"></node>
<edge source="Input-0" target="L1-0">
<data key="d1">-1.5324200758107742</data>
</edge>
<edge source="Input-0" target="L1-1">
<data key="d1">-6.718888335977713</data>
</edge>
What do i need to change to get it actually displayed properly?