PyTorch tutorials and fun projects including neural talk, neural style, poem writing, anime generation (《深度学习框架PyTorch:入门与实战》)
-
Updated
Mar 14, 2021 - Jupyter Notebook
{{ message }}
PyTorch tutorials and fun projects including neural talk, neural style, poem writing, anime generation (《深度学习框架PyTorch:入门与实战》)
tensorboard for pytorch (and chainer, mxnet, numpy, ...)
PyTorch implementation of the U-Net for image semantic segmentation with high quality images
CNN-RNN中文文本分类,基于TensorFlow
Tensorflow Faster RCNN for Object Detection
A TensorFlow & Deep Learning online course I taught in 2016
TensorFlow template application for deep learning
Neural network graphs and training metrics for PyTorch, Tensorflow, and Keras.
PyTorch Lightning + Hydra. A very user-friendly template for rapid and reproducible ML experimentation with best practices.
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.
CNN visualization tool in TensorFlow
A language-agnostic interface to TensorBoard
Generate your own cartoon-style images with CartoonGAN (CVPR 2018), powered by TensorFlow 2.0 Alpha.
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.
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.
A Fast Deep Learning Model to Upsample Low Resolution Videos to High Resolution at 30fps
A TensorBoard plugin for visualizing arbitrary tensors in a video as your network trains.
Start Tensorboard in Jupyter Notebook
PyTorch Project Specification.
Standalone TensorBoard for visualizing in deep learning
How to use TensorLayer
Just like mmdection or mmsegmetation, it would be nice if each method of the paper could have a corresponding documetation.
Conversation models in TensorFlow. (website removed)
Tensorboard extension for jupyterlab.
Add a description, image, and links to the tensorboard topic page so that developers can more easily learn about it.
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)))