-
Updated
Mar 14, 2021 - Jupyter Notebook
tensorboard
Here are 389 public repositories matching this topic...
-
Updated
Oct 6, 2021 - Python
-
Updated
Nov 3, 2021 - Python
-
Updated
Sep 27, 2021 - Python
-
Updated
May 19, 2019 - Python
-
Updated
Mar 22, 2020 - Python
-
Updated
May 20, 2021 - Python
-
Updated
Oct 16, 2021 - Python
-
Updated
Sep 6, 2021 - Jupyter Notebook
-
Updated
Nov 9, 2017 - Python
-
Updated
Sep 29, 2021 - Python
-
Updated
Mar 16, 2019 - Python
-
Updated
Oct 17, 2021 - Python
-
Updated
Sep 7, 2021 - 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
Oct 12, 2021 - Python
-
Updated
Oct 29, 2021 - Go
-
Updated
Oct 12, 2021 - Python
-
Updated
Feb 6, 2019 - Python
-
Updated
Feb 25, 2021 - Python
-
Updated
Mar 24, 2020 - Python
-
Updated
Sep 17, 2018
-
Updated
Oct 2, 2020 - Python
-
Updated
Aug 5, 2021 - Python
-
Updated
Jul 24, 2019 - Python
-
Updated
Aug 31, 2021 - TypeScript
-
Updated
Nov 18, 2020 - Jupyter Notebook
-
Updated
Jan 15, 2021 - Jupyter Notebook
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."

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.

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)))