Skip to content

Commit b60e2af

Browse files
author
Alex
committed
Merge branch 'release/1.9.8'
2 parents 0ffca82 + cdf77ab commit b60e2af

File tree

4 files changed

+12
-16
lines changed

4 files changed

+12
-16
lines changed

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,15 @@ For most of these URL endings, you will probably also find networks in the offic
7676

7777
If you find this code useful please consider citing us:
7878

79-
@article{bauerle2019net2vis,
80-
title={Net2Vis: Transforming Deep Convolutional Networks into Publication-Ready Visualizations},
81-
author={B{\"a}uerle, Alex and Ropinski, Timo},
82-
journal={arXiv preprint arXiv:1902.04394},
83-
year={2019}
79+
@article{bauerle2021net2vis,
80+
title={Net2vis--a visual grammar for automatically generating publication-tailored cnn architecture visualizations},
81+
author={B{\"a}uerle, Alex and Van Onzenoodt, Christian and Ropinski, Timo},
82+
journal={IEEE transactions on visualization and computer graphics},
83+
volume={27},
84+
number={6},
85+
pages={2980--2991},
86+
year={2021},
87+
publisher={IEEE}
8488
}
8589

8690
## Acknowlegements

backend/requirements.txt

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ gast==0.4.0
2020
google-auth==1.28.0
2121
google-auth-oauthlib==0.4.3
2222
google-pasta==0.2.0
23-
grpcio==1.36.1
24-
h5py==3.2.1
25-
idna==3.1
2623
importlib-metadata==3.7.3
2724
isort==5.8.0
2825
itsdangerous==1.1.0
@@ -33,7 +30,6 @@ lazy-object-proxy==1.5.2
3330
Markdown==3.3.4
3431
MarkupSafe==1.1.1
3532
mccabe==0.6.1
36-
numpy==1.20.1
3733
oauthlib==3.1.0
3834
opt-einsum==3.3.0
3935
Pillow>=8.2.0
@@ -49,10 +45,7 @@ rsa==4.7.2
4945
scipy==1.6.1
5046
six==1.15.0
5147
structlog==21.1.0
52-
tensorboard==2.4.1
53-
tensorboard-plugin-wit==1.8.0
5448
tensorflow==2.5.1
55-
tensorflow-estimator==2.4.0
5649
termcolor==1.1.0
5750
tinycss2==1.1.0
5851
toml==0.10.2
@@ -65,4 +58,4 @@ websocket-client==0.58.0
6558
Werkzeug==1.0.1
6659
wrapt==1.12.1
6760
zipp==3.4.1
68-
onnx==1.10.1
61+
onnx==1.10.1

backend/server.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,8 +235,7 @@ def upload_model(identifier):
235235
file_ext = os.path.splitext(filename)[1]
236236
if file_ext not in app.config['UPLOAD_EXTENSIONS']:
237237
return "", error_status, text_type
238-
file_path = os.path.join(
239-
app.config['UPLOAD_PATH'], identifier, f'model{file_ext}')
238+
file_path = os.path.join(app.config['UPLOAD_PATH'], identifier, f'model{file_ext}')
240239
uploaded_file.save(file_path)
241240
return "No code loaded since model file is present.", ok_status, text_type
242241

net2vis/src/components/controls/ControlsComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ class Controls extends React.Component {
175175
<DialogContent>
176176
<DialogContentText id="alert-dialog-description">
177177
This is a research project. When using these visualizations,
178-
please <a href="https://ieeexplore.ieee.org/abstract/document/9350177">cite us</a>.
178+
please <a href="https://ieeexplore.ieee.org/abstract/document/9350177" target="_blank">cite us</a>.
179179
</DialogContentText>
180180
</DialogContent>
181181
<DialogActions>

0 commit comments

Comments
 (0)