-
Updated
Jul 13, 2020 - Jupyter Notebook
tensorboard
Here are 334 public repositories matching this topic...
-
Updated
Oct 14, 2020 - Python
-
Updated
Oct 26, 2019 - Python
-
Updated
May 19, 2019 - Python
-
Updated
Oct 25, 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
Nov 13, 2020 - Python
-
Updated
Nov 13, 2020 - Python
-
Updated
Aug 23, 2020 - Python
-
Updated
Jul 30, 2020 - Python
-
Updated
Feb 6, 2019 - Python
-
Updated
May 31, 2020 - 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
Nov 15, 2020 - Python
-
Updated
Mar 24, 2020 - Python
-
Updated
Sep 17, 2018
-
Updated
Nov 25, 2020 - Go
-
Updated
Oct 2, 2020 - Python
-
Updated
Nov 25, 2020 - Python
-
Updated
Jul 24, 2019 - Python
-
Updated
Jun 27, 2020 - TypeScript
-
Updated
Nov 18, 2020 - Jupyter Notebook
-
Updated
Sep 28, 2018 - Jupyter Notebook
-
Updated
Sep 26, 2020 - 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."
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)))