-
Updated
Jan 5, 2020 - Jupyter Notebook
tensorboard
Here are 304 public repositories matching this topic...
Hi I would like to propose a better implementation for 'test_indices':
We can remove the unneeded np.array casting:
Cleaner/New:
test_indices = list(set(range(len(texts))) - set(train_indices))
Old:
test_indices = np.array(list(set(range(len(texts))) - set(train_indices)))
When I delete the lib.utils. ,the test.py is right but the demo.py is wrong , however,when I use the lib.utils. , the demo.py is right but the test.py is wrong !!
why? why
-
Updated
May 19, 2019 - Python
-
Updated
Jun 12, 2020 - Python
-
Updated
Mar 22, 2020 - Python
-
Updated
Jan 3, 2019 - Python
-
Updated
Apr 24, 2020 - Python
-
Updated
Nov 9, 2017 - Python
-
Updated
Mar 16, 2019 - Python
-
Updated
Jun 23, 2020 - Python
-
Updated
Mar 30, 2020 - Python
Thanks to @wilcoschoneveld (see #41) for this.
I explain a lot of this in the README, but it would be better as part of the visualization, and make it easier to count and trace stuff back to your code (e.g. Huh, that filter looks interesting, but there are 256 of them, and I'm not going to count all of them to figure out which one it actually is).
I'm not sure how all this would work, give
-
Updated
Jul 12, 2020 - Python
-
Updated
May 31, 2020 - Python
-
Updated
May 8, 2020 - Python
-
Updated
Mar 24, 2020 - Python
-
Updated
Sep 17, 2018
-
Updated
Apr 20, 2020 - Python
-
Updated
Oct 31, 2017 - Python
-
Updated
Jul 24, 2019 - Python
When a TF serving model returns a failure instead of a prediction, pass the failure string to the front-end for display instead of the generic http error we see now.
-
Updated
Jul 12, 2020 - Python
-
Updated
Aug 27, 2017 - Jupyter Notebook
-
Updated
Jan 29, 2020 - Python
-
Updated
Jun 27, 2020 - TypeScript
-
Updated
Sep 28, 2018 - Jupyter Notebook
-
Updated
Dec 9, 2019 - Python
Improve this page
Add a description, image, and links to the tensorboard topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the tensorboard topic, visit your repo's landing page and select "manage topics."




Describe the bug
I try to run tensorboardX/examples/demo_graph.py for jupyter notebook (launched by anaconda navigator) and I get the error seen at Additional context.
I just copy paste the code to notebook from Github.
Minimal runnable code to reproduce the behavior
class SimpleModel(nn.Module):
def init(self):
super(SimpleModel, self).init()