-
Updated
Mar 14, 2021 - Jupyter Notebook
#
tensorboard
Here are 417 public repositories matching this topic...
PyTorch tutorials and fun projects including neural talk, neural style, poem writing, anime generation (《深度学习框架PyTorch:入门与实战》)
deep-learning
jupyter-notebook
nn
pytorch
autograd
caption
gan
image-classification
tensorboard
tensor
neural-style
visdom
pytorch-tutorials
pytorch-tutorials-cn
charrnn
neuraltalk
tensorboard for pytorch (and chainer, mxnet, numpy, ...)
-
Updated
Apr 22, 2022 - Python
PyTorch implementation of the U-Net for image semantic segmentation with high quality images
deep-learning
pytorch
kaggle
tensorboard
convolutional-networks
convolutional-neural-networks
unet
semantic-segmentation
pytorch-unet
wandb
weights-and-biases
-
Updated
May 4, 2022 - Python
CNN-RNN中文文本分类,基于TensorFlow
-
Updated
May 19, 2019 - Python
Tensorflow Faster RCNN for Object Detection
-
Updated
Sep 27, 2021 - Python
A TensorFlow & Deep Learning online course I taught in 2016
-
Updated
Mar 22, 2020 - Python
TensorFlow template application for deep learning
machine-learning
csv
deep-learning
tensorflow
inference
cnn
lstm
tensorboard
mlp
libsvm
tfrecords
wide-and-deep
serving
-
Updated
Jan 7, 2022 - Python
Neural network graphs and training metrics for PyTorch, Tensorflow, and Keras.
-
Updated
Oct 16, 2021 - Python
PyTorch Lightning + Hydra. A very user-friendly template for rapid and reproducible ML experimentation with best practices. ⚡ 🔥 ⚡
config
template
research
deep-learning
neptune
best-practices
comet
pytorch
hydra
tensorboard
experiments
reproducibility
project-structure
mlops
mlflow
training-pipeline
experiment-tracking
pytorch-lightning
wandb
weights-and-biases
-
Updated
Apr 29, 2022 - Python
visualization
experiment
machine-learning
mobile
deep-learning
analytics
tensorflow
keras
pytorch
tensorboard
fastai
keras-tensorflow
tensorflow2
pytorch-lightning
-
Updated
May 3, 2022 - Jupyter Notebook
This repository allows you to get started with a gui based training a State-of-the-art Deep Learning model with little to no configuration needed! NoCode training with TensorFlow has never been so easy.
docker
machine-learning
gui
deep-neural-networks
computer-vision
deep-learning
neural-network
tensorflow
rest-api
tensorboard
resnet
deeplearning
object-detection
computervision
objectdetection
no-code
detection-api
tensorflow2
tensorflow-gui
inference-api
-
Updated
May 4, 2022 - Python
CNN visualization tool in TensorFlow
visualization
tensorflow
cnn
deepdream
tensorboard
convolutional-networks
convolutional-neural-networks
-
Updated
Mar 16, 2019 - Python
A language-agnostic interface to TensorBoard
-
Updated
Nov 9, 2017 - Python
Generate your own cartoon-style images with CartoonGAN (CVPR 2018), powered by TensorFlow 2.0 Alpha.
deep-learning
tensorflow
keras
generative-adversarial-network
gan
generative-art
tensorboard
tf-keras
tensorflow2
-
Updated
Oct 17, 2021 - Python
pytorch
generative-adversarial-network
gan
tensorboard
progressive-gan
progressively-growing-gan
celeba-hq-dataset
-
Updated
Mar 11, 2022 - Python
jameswex
commented
May 5, 2020
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.
This repository allows you to get started with training a state-of-the-art Deep Learning model with little to no configuration needed! You provide your labeled dataset or label your dataset using our BMW-LabelTool-Lite and you can start the training right away and monitor it in many different ways like TensorBoard or a custom REST API and GUI. NoCode training with YOLOv4 and YOLOV3 has never been so easy.
docker
gui
automation
monitoring
deep-learning
neural-network
rest-api
yolo
tensorboard
deeplearning
object-detection
darknet
computervision
objectdetection
no-code
yolov3
alexeyab-darknet
yolo-gui
yolo-tensorboard
yolov4
-
Updated
May 4, 2022 - Python
The open source, end-to-end computer vision platform. Label, build, train, tune, deploy and automate in a unified platform that runs on any cloud and on-premises.
training
ai
computer-vision
annotation
etl
tensorflow
pipelines
inference
pytorch
tensorboard
jupyterlab
machinelearning
deeplearning
labeling
workflows
hyperparameter-tuning
aiops
mlops
-
Updated
Nov 15, 2021 - Go
A Fast Deep Learning Model to Upsample Low Resolution Videos to High Resolution at 30fps
neural-network
tensorflow
cnn
tf2
artificial-intelligence
generative-adversarial-network
tensorboard
gans
super-resolution
srgan
sisr
upsample
residual-blocks
single-image-super-resolution
tf-keras
resolution-image
fastsrgan
realtime-super-resolution
-
Updated
Feb 10, 2022 - Python
A TensorBoard plugin for visualizing arbitrary tensors in a video as your network trains.
visualization
video
tensorflow
neural-networks
convolutional-layers
frame
tensorboard
variance
gradient
2d-array
beholder
-
Updated
Feb 6, 2019 - Python
Start Tensorboard in Jupyter Notebook
-
Updated
Feb 7, 2022 - Python
PyTorch Project Specification.
-
Updated
Aug 5, 2021 - Python
Standalone TensorBoard for visualizing in deep learning
-
Updated
Mar 24, 2020 - Python
How to use TensorLayer
nlp
data-science
machine-learning
natural-language-processing
lasagne
reinforcement-learning
computer-vision
deep-learning
neural-network
tensorflow
keras
neural-networks
tensorboard
tensorflow-tutorials
tensorflow-experiments
tensorflow-framework
tflearn
tensorflow-library
tensorlayer
tensorflow-models
-
Updated
Sep 17, 2018
4
HerrYu123
commented
Mar 7, 2022
Just like mmdection or mmsegmetation, it would be nice if each method of the paper could have a corresponding documetation.
documentation
Improvements or additions to documentation
help wanted
Extra attention is needed
good first issue
Good for newcomers
feature request
new features
Conversation models in TensorFlow. (website removed)
flask
tensorflow
chatbot
tensorboard
sequence-to-sequence
googlecloud
appengine-python
encoder-decoder
conversation-models
-
Updated
Oct 2, 2020 - Python
-
Updated
Jul 24, 2019 - Python
Tensorboard extension for jupyterlab.
-
Updated
Apr 9, 2022 - TypeScript
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)))