All Projects → PacktPublishing → Natural Language Processing With Tensorflow

PacktPublishing / Natural Language Processing With Tensorflow

Licence: mit
Natural Language Processing with TensorFlow, published by Packt

Projects that are alternatives of or similar to Natural Language Processing With Tensorflow

Chinese Chatbot
中文聊天机器人,基于10万组对白训练而成,采用注意力机制,对一般问题都会生成一个有意义的答复。已上传模型,可直接运行,跑不起来直播吃键盘。
Stars: ✭ 124 (-44.14%)
Mutual labels:  jupyter-notebook, lstm, rnn, seq2seq
Screenshot To Code
A neural network that transforms a design mock-up into a static website.
Stars: ✭ 13,561 (+6008.56%)
Mutual labels:  jupyter-notebook, cnn, lstm, seq2seq
Codesearchnet
Datasets, tools, and benchmarks for representation learning of code.
Stars: ✭ 1,378 (+520.72%)
Mutual labels:  jupyter-notebook, cnn, rnn, nlp-machine-learning
Pytorch Sentiment Analysis
Tutorials on getting started with PyTorch and TorchText for sentiment analysis.
Stars: ✭ 3,209 (+1345.5%)
Mutual labels:  jupyter-notebook, cnn, lstm, rnn
Tensorflow cookbook
Code for Tensorflow Machine Learning Cookbook
Stars: ✭ 5,984 (+2595.5%)
Mutual labels:  jupyter-notebook, cnn, rnn, tensorboard
Pytorch Pos Tagging
A tutorial on how to implement models for part-of-speech tagging using PyTorch and TorchText.
Stars: ✭ 96 (-56.76%)
Mutual labels:  jupyter-notebook, cnn, lstm, rnn
Poetry Seq2seq
Chinese Poetry Generation
Stars: ✭ 159 (-28.38%)
Mutual labels:  jupyter-notebook, lstm, rnn, seq2seq
Pytorch Seq2seq
Tutorials on implementing a few sequence-to-sequence (seq2seq) models with PyTorch and TorchText.
Stars: ✭ 3,418 (+1439.64%)
Mutual labels:  jupyter-notebook, lstm, rnn, seq2seq
Video Classification
Tutorial for video classification/ action recognition using 3D CNN/ CNN+RNN on UCF101
Stars: ✭ 543 (+144.59%)
Mutual labels:  jupyter-notebook, cnn, lstm, rnn
Neural Networks
All about Neural Networks!
Stars: ✭ 34 (-84.68%)
Mutual labels:  jupyter-notebook, cnn, lstm, rnn
Pytorch Learners Tutorial
PyTorch tutorial for learners
Stars: ✭ 97 (-56.31%)
Mutual labels:  jupyter-notebook, cnn, lstm, rnn
Deeplearning tutorials
The deeplearning algorithms implemented by tensorflow
Stars: ✭ 1,580 (+611.71%)
Mutual labels:  jupyter-notebook, cnn, lstm
Linear Attention Recurrent Neural Network
A recurrent attention module consisting of an LSTM cell which can query its own past cell states by the means of windowed multi-head attention. The formulas are derived from the BN-LSTM and the Transformer Network. The LARNN cell with attention can be easily used inside a loop on the cell state, just like any other RNN. (LARNN)
Stars: ✭ 119 (-46.4%)
Mutual labels:  jupyter-notebook, lstm, rnn
Kaggle Web Traffic
1st place solution
Stars: ✭ 1,641 (+639.19%)
Mutual labels:  jupyter-notebook, rnn, seq2seq
Ml Ai Experiments
All my experiments with AI and ML
Stars: ✭ 107 (-51.8%)
Mutual labels:  jupyter-notebook, lstm, rnn
Awesome Speech Recognition Speech Synthesis Papers
Automatic Speech Recognition (ASR), Speaker Verification, Speech Synthesis, Text-to-Speech (TTS), Language Modelling, Singing Voice Synthesis (SVS), Voice Conversion (VC)
Stars: ✭ 2,085 (+839.19%)
Mutual labels:  cnn, rnn, seq2seq
Tensorflow template application
TensorFlow template application for deep learning
Stars: ✭ 1,851 (+733.78%)
Mutual labels:  cnn, lstm, tensorboard
Load forecasting
Load forcasting on Delhi area electric power load using ARIMA, RNN, LSTM and GRU models
Stars: ✭ 160 (-27.93%)
Mutual labels:  jupyter-notebook, lstm, rnn
Deep Learning With Python
Deep learning codes and projects using Python
Stars: ✭ 195 (-12.16%)
Mutual labels:  jupyter-notebook, cnn, rnn
Sign Language Gesture Recognition
Sign Language Gesture Recognition From Video Sequences Using RNN And CNN
Stars: ✭ 214 (-3.6%)
Mutual labels:  cnn, lstm, rnn

Natural Language Processing with TensorFlow

This is the code repository for Natural Language Processing with TensorFlow, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

Natural language processing (NLP) supplies the majority of data available to deep learning applications, while TensorFlow is the most important deep learning framework currently available. Natural Language Processing with TensorFlow brings TensorFlow and NLP together to give you invaluable tools to work with the immense volume of unstructured data in today’s data streams, and apply these tools to specific NLP tasks.

Thushan Ganegedara starts by giving you a grounding in NLP and TensorFlow basics. You'll then learn how to use Word2vec, including advanced extensions, to create word embeddings that turn sequences of words into vectors accessible to deep learning algorithms. Chapters on classical deep learning algorithms, like convolutional neural networks (CNN) and recurrent neural networks (RNN), demonstrate important NLP tasks as sentence classification and language generation. You will learn how to apply high-performance RNN models, like long short-term memory (LSTM) cells, to NLP tasks. You will also explore neural machine translation and implement a neural machine translator.

After reading this book, you will gain an understanding of NLP and you'll have the skills to apply TensorFlow in deep learning NLP applications, and how to perform specific NLP tasks.

Instructions and Navigations

All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.

The code will look like the following:

graph = tf.Graph() # Creates a graph
session = tf.InteractiveSession(graph=graph) # Creates a session

To get the most out of this book, we assume the following from the reader:

  • A solid will and an ambition to learn the modern ways of NLP
  • Familiarity with basic Python syntax and data structures (for example, lists and dictionaries)
  • A good understanding of basic mathematics (for example, matrix/vector multiplication)
  • (Optional) Advance mathematics knowledge (for example, derivative calculation) to understand a handful of subsections that cover the details of how certain learning models overcome potential practical issues faced during training
  • (Optional) Read research papers to refer to advances/details in systems, beyond what the book covers

Related Products

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].