提交 01831309 编写于 作者: W wizardforcel

2021-12-15 21:27:38

上级 09a6a972
......@@ -11,7 +11,7 @@
+ [自然语言处理的数据集](datasets-natural-language-processing.md)
+ [如何开发一种深度学习的词袋模型来预测电影评论情感](deep-learning-bag-of-words-model-sentiment-analysis.md)
+ [深度学习字幕生成模型的温和介绍](deep-learning-caption-generation-models.md)
+ [如何在 Keras 中定义神经机器翻译的编解码器序列 - 序列模型](define-encoder-decoder-sequence-sequence-model-neural-machine-translation-keras.md)
+ [如何在 Keras 中定义神经机器翻译的编解码器序列序列模型](define-encoder-decoder-sequence-sequence-model-neural-machine-translation-keras.md)
+ [如何利用小实验在 Keras 中开发字幕生成模型](develop-a-caption-generation-model-in-keras.md)
+ [如何从头开发深度学习图片标题生成器](develop-a-deep-learning-caption-generation-model-in-python.md)
+ [如何在 Keras 中开发基于字符的神经语言模型](develop-character-based-neural-language-model-keras.md)
......
# 如何用 Python 清理机器学习的文本
# 如何用 Python 为机器学习清理文本
> 原文: [https://machinelearningmastery.com/clean-text-machine-learning-python/](https://machinelearningmastery.com/clean-text-machine-learning-python/)
......
# 如何在 Keras 中定义神经机器翻译的编解码器序列 - 序列模型
# 如何在 Keras 中定义神经机器翻译的编解码器序列序列模型
> 原文: [https://machinelearningmastery.com/define-encoder-decoder-sequence-sequence-model-neural-machine-translation-keras/](https://machinelearningmastery.com/define-encoder-decoder-sequence-sequence-model-neural-machine-translation-keras/)
......@@ -21,7 +21,7 @@
![How to Define an Encoder-Decoder Sequence-to-Sequence Model for Neural Machine Translation in Keras](img/38cae6eb1536c9b0a1ba0bb9d1c6906e.jpg)
如何在 Keras
中定义用于神经机器翻译的编解码器序列 - 序列模型 [Tom Lee](https://www.flickr.com/photos/68942208@N02/16012752622/) ,保留一些权利。
中定义用于神经机器翻译的编解码器序列序列模型 [Tom Lee](https://www.flickr.com/photos/68942208@N02/16012752622/) ,保留一些权利。
## Keras 中的序列到序列预测
......
# 如何利用小实验在 Keras 中开发字幕生成模型
# 如何利用小实验在 Keras 中开发标题生成模型
> 原文: [https://machinelearningmastery.com/develop-a-caption-generation-model-in-keras/](https://machinelearningmastery.com/develop-a-caption-generation-model-in-keras/)
字幕生成是一个具有挑战性的人工智能问题,其中必须为照片生成文本描述。
标题生成是一个具有挑战性的人工智能问题,其中必须为照片生成文本描述。
它既需要计算机视觉的方法来理解图像的内容,也需要来自自然语言处理领域的语言模型,以便将图像的理解转化为正确的单词。最近,深度学习方法已经在该问题的示例上获得了现有技术的结果。
在您自己的数据上开发字幕生成模型可能很困难,主要是因为数据集和模型太大而需要数天才能进行训练。另一种方法是使用较小数据集的小样本来探索模型配置。
在您自己的数据上开发标题生成模型可能很困难,主要是因为数据集和模型太大而需要数天才能进行训练。另一种方法是使用较小数据集的小样本来探索模型配置。
在本教程中,您将了解如何使用标准照片字幕数据集的小样本来探索不同的深度模型设计。
......@@ -22,7 +22,7 @@
![How to Use Small Experiments to Develop a Caption Generation Model in Keras](img/7d34b218f89d903c2711e5c2dc7e3027.jpg)
如何使用小实验开发 Keras 中的字幕生成模型
如何使用小实验开发 Keras 中的标题生成模型
照片由 [Per](https://www.flickr.com/photos/perry-pics/5968641588/) ,保留一些权利。
## 教程概述
......
# 如何在 Python 中用 Keras 开发基于单词的神经语言模型
# 如何用 Python 和 Keras 开发基于单词的神经语言模型
> 原文: [https://machinelearningmastery.com/develop-word-based-neural-language-models-python-keras/](https://machinelearningmastery.com/develop-word-based-neural-language-models-python-keras/)
......
# 如何使用 Gensim 在 Python 中开发词嵌入
# 如何使用 Python 和 Gensim 开发词嵌入
> 原文: [https://machinelearningmastery.com/develop-word-embeddings-python-gensim/](https://machinelearningmastery.com/develop-word-embeddings-python-gensim/)
......
# 使用于文本摘要的编解码器深度学习模型
# 用于文本摘要的编解码器深度学习模型
> 原文: [https://machinelearningmastery.com/encoder-decoder-deep-learning-models-text-summarization/](https://machinelearningmastery.com/encoder-decoder-deep-learning-models-text-summarization/)
......
# 使用于神经机器翻译的编解码器循环神经网络模型
# 用于神经机器翻译的编解码器循环神经网络模型
> 原文: [https://machinelearningmastery.com/encoder-decoder-recurrent-neural-network-models-neural-machine-translation/](https://machinelearningmastery.com/encoder-decoder-recurrent-neural-network-models-neural-machine-translation/)
......
# 使用于时间序列预测的状态 LSTM 在线学习的不稳定性
# 用于时间序列预测的状态 LSTM 在线学习的不稳定性
> 原文: [https://machinelearningmastery.com/instability-online-learning-stateful-lstm-time-series-forecasting/](https://machinelearningmastery.com/instability-online-learning-stateful-lstm-time-series-forecasting/)
......
# 使用于罕见事件时间序列预测的 LSTM 模型体系结构
# 用于罕见事件时间序列预测的 LSTM 模型体系结构
> 原文: [https://machinelearningmastery.com/lstm-model-architecture-for-rare-event-time-series-forecasting/](https://machinelearningmastery.com/lstm-model-architecture-for-rare-event-time-series-forecasting/)
......
# 使用于时间序列预测的 4 种通用机器学习数据变换
# 用于时间序列预测的 4 种通用机器学习数据变换
> 原文: [https://machinelearningmastery.com/machine-learning-data-transforms-for-time-series-forecasting/](https://machinelearningmastery.com/machine-learning-data-transforms-for-time-series-forecasting/)
......
# 使用于编码器审查的计算线性代数
# 用于编码器审查的计算线性代数
> 原文: [https://machinelearningmastery.com/computational-linear-algebra-coders-review/](https://machinelearningmastery.com/computational-linear-algebra-coders-review/)
......
# 使用于机器学习的线性代数中的矩阵类型简介
# 用于机器学习的线性代数中的矩阵类型简介
> 原文: [https://machinelearningmastery.com/introduction-to-types-of-matrices-in-linear-algebra/](https://machinelearningmastery.com/introduction-to-types-of-matrices-in-linear-algebra/)
......
# 使用于机器学习的线性代数备忘单
# 用于机器学习的线性代数备忘单
> 原文: [https://machinelearningmastery.com/linear-algebra-cheat-sheet-for-machine-learning/](https://machinelearningmastery.com/linear-algebra-cheat-sheet-for-machine-learning/)
......
# 使用于机器学习的线性代数(7 天迷你课程)
# 用于机器学习的线性代数(7 天迷你课程)
> 原文: [https://machinelearningmastery.com/linear-algebra-machine-learning-7-day-mini-course/](https://machinelearningmastery.com/linear-algebra-machine-learning-7-day-mini-course/)
......
# 使用于机器学习的稀疏矩阵的温和介绍
# 用于机器学习的稀疏矩阵的温和介绍
> 原文: [https://machinelearningmastery.com/sparse-matrices-for-machine-learning/](https://machinelearningmastery.com/sparse-matrices-for-machine-learning/)
......
......@@ -55,7 +55,7 @@ Keras深度学习Python库提供了一个如何实现机器翻译的编解码器
有关此型号的详细分类,请参阅帖子:
* [如何定义Keras神经机器翻译的编解码器序列 - 序列模型](https://machinelearningmastery.com/define-encoder-decoder-sequence-sequence-model-neural-machine-translation-keras/)
* [如何定义Keras神经机器翻译的编解码器序列序列模型](https://machinelearningmastery.com/define-encoder-decoder-sequence-sequence-model-neural-machine-translation-keras/)
有关使用return_state的更多信息,可能是您的新手,请参阅帖子:
......@@ -523,7 +523,7 @@ X=[50, 38, 17, 25, 31, 48] y=[17, 38, 50], yhat=[17, 38, 50]
### 相关文章
* [如何使用Anaconda设置用于机器学习和深度学习的Python环境](https://machinelearningmastery.com/setup-python-environment-machine-learning-deep-learning-anaconda/)
* [如何定义Keras神经机器翻译的编解码器序列 - 序列模型](https://machinelearningmastery.com/define-encoder-decoder-sequence-sequence-model-neural-machine-translation-keras/)
* [如何定义Keras神经机器翻译的编解码器序列序列模型](https://machinelearningmastery.com/define-encoder-decoder-sequence-sequence-model-neural-machine-translation-keras/)
* [了解Keras中LSTM的返回序列和返回状态之间的差异](https://machinelearningmastery.com/return-sequences-and-return-states-for-lstms-in-keras/)
* [如何使用Keras功能API进行深度学习](https://machinelearningmastery.com/keras-functional-api-deep-learning/)
......
......@@ -250,7 +250,7 @@ for i in range(len(X)):
现在我们知道如何准备和表示整数的随机序列,我们可以看一下使用LSTM来学习它们。
## 回声全序列
(_序列 - 序列模型_)
(_序列序列模型_)
在本节中,我们将开发一个LSTM,用于简单地解决问题,即预测或再现整个输入序列。
......
# 使用于机器学习的装袋和随机森林集合算法
# 用于机器学习的装袋和随机森林集合算法
> 原文: [https://machinelearningmastery.com/bagging-and-random-forest-ensemble-algorithms-for-machine-learning/](https://machinelearningmastery.com/bagging-and-random-forest-ensemble-algorithms-for-machine-learning/)
......
# 使用于机器学习的支持向量机
# 用于机器学习的支持向量机
> 原文: [https://machinelearningmastery.com/support-vector-machines-for-machine-learning/](https://machinelearningmastery.com/support-vector-machines-for-machine-learning/)
......
# 使用于机器学习开发人员的 Python 崩溃课程
# 用于机器学习开发人员的 Python 崩溃课程
> 原文: [https://machinelearningmastery.com/crash-course-python-machine-learning-developers/](https://machinelearningmastery.com/crash-course-python-machine-learning-developers/)
......
# 使用于评估 Python 中机器学习算法的度量标准
# 用于评估 Python 中机器学习算法的度量标准
> 原文: [https://machinelearningmastery.com/metrics-evaluate-machine-learning-algorithms-python/](https://machinelearningmastery.com/metrics-evaluate-machine-learning-algorithms-python/)
......
# 使用于机器学习的 Python 生态系统
# 用于机器学习的 Python 生态系统
> 原文: [https://machinelearningmastery.com/python-ecosystem-machine-learning/](https://machinelearningmastery.com/python-ecosystem-machine-learning/)
......
# 使用于Python机器学习的随机数生成器简介
# 用于Python机器学习的随机数生成器简介
> 原文: [https://machinelearningmastery.com/introduction-to-random-number-generators-for-machine-learning/](https://machinelearningmastery.com/introduction-to-random-number-generators-for-machine-learning/)
......
# 使用于机器学习的简明英语统计
# 用于机器学习的简明英语统计
> 原文: [https://machinelearningmastery.com/statistics-in-plain-english-for-machine-learning/](https://machinelearningmastery.com/statistics-in-plain-english-for-machine-learning/)
......
# 使用于时间序列预测的 Python 环境
# 用于时间序列预测的 Python 环境
> 原文: [https://machinelearningmastery.com/python-environment-time-series-forecasting/](https://machinelearningmastery.com/python-environment-time-series-forecasting/)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册