⭐ Star us on GitHub — it motivates us a lot!
Model Visual is a lightweight deep learning model visualization suite based on Mermaid.This kit will convert model schemas into Mermaid code and output code snippets or complete web pages. Users can easily adjust the color and border of the chart.
Only support tensorflow now. More frameworks will comming soon!
This is the suite's demo. Suite will generate a web page that include a chart.
First,install the suite by using pip.
pip install Model-Visual
Then,creat an object and set some parameter.
Test is the name of an object, you can take any name you want. And model is your keras model's name.(Notice: the model has to be compiled)
from ModelVisual import ModelVisual
test = ModelVisual(model)
test.run()
test.save_web_page()
Beside save_web_page()
,you can also use return_js_code()
or return_web_page()
.
save_web_page()
will create a html file,
return_js_code()
and save_web_page()
will return you sourse code.
set_name(): # set the html file name
set_path(): # set the html path name
set_chart_fill_color(): # set the cart fill color
set_chart_stroke_color(): # set the chart strole color
set_chart_stroke_width(): # set the chart stroke width
set_model(): # set the keras model