-
Updated
Nov 13, 2019 - Python
#
beam-search
Here are 83 public repositories matching this topic...
A chatbot implemented in TensorFlow based on the seq2seq model, with certain rules integrated.
python
deep-learning
tensorflow
chatbot
beam-search
sequence-to-sequence
nmt
tensorflow-chatbot
seq2seq-model
rule-based
nmt-model
Connectionist Temporal Classification (CTC) decoding algorithms: best path, prefix search, beam search and token passing. Implemented in Python and OpenCL.
python
opencl
recurrent-neural-networks
speech-recognition
beam-search
family
language-model
handwriting-recognition
ctc
loss
prefix-search
ctc-loss
fak-friend
level-lm
token-passing
best-path
-
Updated
Jan 9, 2020 - Python
leon-cas
commented
Dec 5, 2017
File "main.py", line 40, in
tf.app.run()
File "/home/luban/anaconda2/lib/python2.7/site-packages/tensorflow/python/platform/app.py", line 48, in run
_sys.exit(main(_sys.argv[:1] + flags_passthrough))
File "main.py", line 30, in main
train(args)
File "/nfs/private/proj/chatbot/lib/train.py", line 32, in train
model = seq2seq_model_utils.create_model(sess, arg
Pytorch seq2seq chatbot
-
Updated
Apr 11, 2020 - Python
PyTorch CTC Decoder bindings
-
Updated
Jun 7, 2020 - C++
基于seq2seq模型的简单对话系统的tf实现,具有embedding、attention、beam_search等功能,数据集是Cornell Movie Dialogs
-
Updated
Apr 9, 2020 - Python
End-to-End speech recognition implementation base on TensorFlow (CTC, Attention, and MTL training)
tensorflow
end-to-end
speech-recognition
beam-search
automatic-speech-recognition
speech-to-text
attention-mechanism
asr
timit-dataset
ctc
timit
end-to-end-learning
csj
librispeech
joint-ctc-attention
-
Updated
Jan 23, 2018 - Python
Image to LaTeX (Seq2seq + Attention with Beam Search) - Tensorflow
tensorflow
seq2seq
beam-search
show-and-tell
imagecaptioning
attention-seq2seq
seq2seq-attn
im2latex
-
Updated
May 29, 2018 - Python
Image Captioning using InceptionV3 and beam search
-
Updated
Jul 23, 2017 - Jupyter Notebook
Explains nlp building blocks in a simple manner.
-
Updated
Sep 23, 2019 - Jupyter Notebook
Tensorflow based Neural Conversation Models
-
Updated
Mar 16, 2017 - Python
基于Pytorch的中文聊天机器人 集成BeamSearch算法
-
Updated
Sep 23, 2017 - Python
Pytorch implementation of "A Deep Reinforced Model for Abstractive Summarization" paper and pointer generator network
-
Updated
Oct 1, 2019 - Python
Chinese Poetry Generation
poetry
lstm
rnn
seq2seq
beam-search
attention-mechanism
rnn-tensorflow
seq2seq-model
poetry-generator
rnn-encoder-decoder
bidirectional-lstm
chinese-poetry
-
Updated
Sep 9, 2017 - Jupyter Notebook
基于seq2seq模型的简单对话系统的tf实现,具有embedding、attention、beam_search等功能,数据集是Cornell Movie Dialogs
-
Updated
Jan 16, 2018 - Python
A fast LSTM Language Model for large vocabulary language like Japanese and Chinese
-
Updated
Jun 4, 2019 - Python
Byseqlib: A High Performance Inference Library for Sequence Processing and Generation
-
Updated
Dec 10, 2019 - C++
A neural network to generate captions for an image using CNN and RNN with BEAM Search.
deep-learning
recurrent-neural-networks
lstm
attention
image-captioning
beam-search
convolutional-neural-networks
vgg16
inceptionv3
attention-mechanism
cnn-keras
captioning-images
bleu-score
flickr-dataset
inception-v3
bleu
attention-model
image-caption
caption-generation
flickr-8k
-
Updated
Nov 22, 2019 - Python
My seq2seq based on tensorflow
tensorflow
encoder
decoder
seq2seq
attention
beam-search
seq2seq-model
copynet
multi-layer-rnn
pointer-generator
-
Updated
Jun 13, 2018 - Python
-
Updated
Aug 13, 2018 - Lua
Neutron: A pytorch based implementation of Transformer and its variants.
natural-language-processing
python3
pytorch
transformer
seq2seq
ensemble
beam-search
neural-machine-translation
multi-gpu
attention-is-all-you-need
average-attention-network
deep-representation
dynamic-sentence-sampling
robust-neural-machine-translation
average-models
optimizers
sentential-context
context-aware-nmt
relative-position
dynamic-batch-size
-
Updated
Jun 12, 2020 - Python
A minimal nmt example to serve as an seq2seq+attention reference.
-
Updated
Sep 23, 2019 - Jupyter Notebook
An AI chatbot using seq2seq
python
machine-learning
tensorflow
conversation
seq2seq
neural-conversation-models
beam-search
seq2seq-model
seq2seq-chatbot
-
Updated
May 15, 2017 - Python
CTC+Beam_Search+kenlm 是用于以汉字为声学模型建模单元的解码系统
-
Updated
Jun 27, 2018 - C++
Beam search for neural network sequence to sequence (encoder-decoder) models.
-
Updated
Apr 4, 2019 - Python
Extremely easy to use sequence to sequence library with attention, for text to text conversion tasks.
nlp
translation
tensorflow
seq2seq
attention
beam-search
nmt
attention-mechanism
punctuation-correction
-
Updated
Mar 9, 2020 - Python
Tensorflow with KenLM integrated for beam search scoring
-
Updated
Jul 28, 2017 - C++
Solving and GUI demonstration of traditional N-Queens Problem using Hill Climbing, Simulated Annealing, Local Beam Search, and Genetic Algorithm.
ai
genetic-algorithm
artificial-intelligence
beam-search
simulated-annealing
hill-climbing
optimization-algorithms
n-queens
discrete-optimization
-
Updated
Jul 4, 2017 - Java
Improve this page
Add a description, image, and links to the beam-search topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the beam-search topic, visit your repo's landing page and select "manage topics."


https://github.com/JayParks/tf-seq2seq/blob/master/seq2seq_model.py#L368
It gives that the dimension 0 of inputs and attention do not match (as we are tile_batching it to batch_size * beam_width). Didn't you get any error while running with beam_search?