Skip to content
Snippets Groups Projects
Unverified Commit d27af783 authored by Neil Kim Nielsen's avatar Neil Kim Nielsen Committed by GitHub
Browse files

Change in how Netron takes parameters (#284)


* remove obsolete netron params

* set default ip and port

* set host and port as fixed params

* consistency

* Add MoveMulPastMaxPool transformation to streamlining (#285)

* Add MoveMulPastMaxPool transform to streamlining

* Add second call to transformation within streamlining

* [Docker] set Netron version to >=4.7.9

Co-authored-by: default avatarNeil Kim Nielsen <37108154+neilnielsen@users.noreply.github.com>
Co-authored-by: default avatarFelix Jentzsch <45395194+fpjentzsch@users.noreply.github.com>
Co-authored-by: default avatarYaman Umuroglu <yamanu@xilinx.com>
parent 95664952
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ RUN pip install sphinx==3.1.2
RUN pip install sphinx_rtd_theme==0.5.0
RUN pip install pytest-xdist==2.0.0
RUN pip install pytest-parallel==0.1.0
RUN pip install netron
RUN pip install netron>=4.7.9
RUN pip install -e git+https://github.com/fbcotter/dataset_loading.git@0.0.4#egg=dataset_loading
# switch user
......
......@@ -34,7 +34,6 @@ from IPython.display import IFrame
def showSrc(what):
print("".join(inspect.getsourcelines(what)[0]))
def showInNetron(model_filename):
netron.start(model_filename, port=8081, host="0.0.0.0")
return IFrame(src="http://0.0.0.0:8081/", width="100%", height=400)
netron.start(model_filename, address=("0.0.0.0", 8081))
return IFrame(src="http://0.0.0.0:8081/", width="100%", height=400)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment