znwang25
znwang25
Hi @lingvisa , Thanks for using this package. > Can the model generated by fit() be saved and reloaded? Currently, there is no direct interface for saving and loading a...
I think this will get it fixed. ```python if filename is not None: filename = Path(filename) graph.render( filename.with_suffix(''), view=False, cleanup=True, format=filename.suffix[1:] ) # remove leading period from suffix ```
Without removing it, filename=“Example.png” will generate “Example.png.png”. I did not do enough tests, but removing the suffix works for my use cases. On Mon, Jul 8, 2024 at 1:28 PM...