A neural network that transforms a design mock-up into a static website.
-
Updated
Jan 10, 2020 - HTML
{{ message }}
A neural network that transforms a design mock-up into a static website.
A High-Quality Real Time Upscaler for Anime Video
An open source library for face detection in images. The face detection speed can reach 1000FPS.
Ready-to-use OCR with 40+ languages supported including Chinese, Japanese, Korean and Thai
Hide screen when boss is approaching.
Build your neural network easy and fast
机器人视觉 移动机器人 VS-SLAM ORB-SLAM2 深度学习目标检测 yolov3 行为检测 opencv PCL 机器学习 无人驾驶
Tensorflow tutorial from basic to hard
深度学习入门教程, 优秀文章, Deep Learning Tutorial
Deep Pose Estimation implemented using Tensorflow with Custom Architectures for fast inference.
Code examples for new APIs of iOS 10.
A Deep-Learning-Based Chinese Speech Recognition System 基于深度学习的中文语音识别系统
CNN-RNN中文文本分类,基于TensorFlow
End-to-end Automatic Speech Recognition for Madarian and English in Tensorflow
Photo-Realistic Single Image Super-Resolution Using a Generative Adversarial Network
Tutorials on getting started with PyTorch and TorchText for sentiment analysis.
텐서플로우를 기초부터 응용까지 단계별로 연습할 수 있는 소스 코드를 제공합니다
TensorFlow template application for deep learning
use cnn recognize captcha by tensorflow. 本项目针对字符型图片验证码,使用tensorflow实现卷积神经网络,进行验证码识别。
Tengine is a lite, high performance, modular inference engine for embedded device
Speech synthesis, voice conversion, self-supervised learning, music generation,Automatic Speech Recognition, Speaker Verification, Speech Synthesis, Language Modeling
NCRF++, a Neural Sequence Labeling Toolkit. Easy use to any sequence labeling tasks (e.g. NER, POS, Segmentation). It includes character LSTM/CNN, word LSTM/CNN and softmax/CRF components.
Deep Learning Based Free Mobile Real-Time Face Landmark Detector. Contact:jack-yu-business@foxmail.com
The current examples are in the form of scripts. To make easier and more interactive for users of the library it would help to have notebooks demonstrating these examples. For now the notebooks would go under examples folder under branch 2.0 where porting to Python 3+ is happening.
Rough list of my favorite deep learning resources, useful for revisiting topics or for reference. I have got through all of the content listed there, carefully. - Guillaume Chevalier
The deeplearning algorithms implemented by tensorflow
Collection of popular and reproducible image denoising works.
Datasets, tools, and benchmarks for representation learning of code.
Add a description, image, and links to the cnn topic page so that developers can more easily learn about it.
To associate your repository with the cnn 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)))