
DL
slmady
学习记录
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Neural Response Generation via GAN with an Approximate Embedding Layer
1. Goal 用GAN来对dialogue system建模,从而减少safe response(e.g. “我不知道”, “我也是”)。 2. Contribution 提出了一个AEL (Approximate Embedding Layer )来解决seq2seq模型decode阶段由于sampling导致的不可微问题(non-differentiable problem)。 3....原创 2018-08-15 10:35:26 · 559 阅读 · 0 评论 -
tensorflow Estimator train & evaluation & prediction & export model
Estimator实现transition based dependency parsing import numpy as np import math import tensorflow as tf import cjdpy WORD_NUM = 6 def model_fn(features, labels, mode): # word_lookup = tf.truncat...原创 2019-09-18 17:38:58 · 555 阅读 · 0 评论