博碩士論文 105522092 詳細資訊




以作者查詢圖書館館藏 以作者查詢臺灣博碩士 以作者查詢全國書目 勘誤回報 、線上人數:175 、訪客IP:13.59.100.42
姓名 許國信(Kuo-Hsin Hsu)  查詢紙本館藏   畢業系所 資訊工程學系
論文名稱 基於序列生成對抗網路之問答系統及智慧客服應用
(Question Answering based on Sequence Generative Adversarial Nets and Implementation of Customer Service)
相關論文
★ 行程邀約郵件的辨識與不規則時間擷取之研究★ NCUFree校園無線網路平台設計及應用服務開發
★ 網際網路半結構性資料擷取系統之設計與實作★ 非簡單瀏覽路徑之探勘與應用
★ 遞增資料關聯式規則探勘之改進★ 應用卡方獨立性檢定於關連式分類問題
★ 中文資料擷取系統之設計與研究★ 非數值型資料視覺化與兼具主客觀的分群
★ 關聯性字組在文件摘要上的探討★ 淨化網頁:網頁區塊化以及資料區域擷取
★ 問題答覆系統使用語句分類排序方式之設計與研究★ 時序資料庫中緊密頻繁連續事件型樣之有效探勘
★ 星狀座標之軸排列於群聚視覺化之應用★ 由瀏覽歷程自動產生網頁抓取程式之研究
★ 動態網頁之樣版與資料分析研究★ 同性質網頁資料整合之自動化研究
檔案 [Endnote RIS 格式]    [Bibtex 格式]    [相關文章]   [文章引用]   [完整記錄]   [館藏目錄]   [檢視]  [下載]
  1. 本電子論文使用權限為同意立即開放。
  2. 已達開放權限電子全文僅授權使用者為學術研究之目的,進行個人非營利性質之檢索、閱讀、列印。
  3. 請遵守中華民國著作權法之相關規定,切勿任意重製、散佈、改作、轉貼、播送,以免觸法。

摘要(中) 近來序列生成對抗網路火紅,在文字生成與對話生成領域都有好成果。因此,我們希望透過序列生成對抗網路建立問答系統,教導機器人如何閱讀相關文章,產生適當且擬人的答案。同時,智慧客服需求日漸增加,市面上的系統多以模板導向為主,過度倚賴訂立的規則和資料,易有無法回應用戶的窘境,且多侷限於特定的任務。因此我們嘗試使用序列生成對抗網路建立智慧客服問答系統。
在本論文中共有三個目標。第一部份為生成器與辨別器之事先訓練。生成器屬於序列對序列模型,使用長短期記憶網路進行訓練,有別於其他研究多採取固定字典之方法,我們通過動態字典降低解碼器選擇錯誤字詞的機率,藉此產生更好的結果。辨別器使用卷積式網路進行文字分類訓練,能對完整或部分序列進行評分。第二部份開始序列生成對抗網路,由於生成的答案和實際答案可能長度差異極大,因此在計算回饋時將長度納入考量,實驗結果證明的確能提升效能。最終我們替企業建立智慧客服問答系統,用以回答產品的相關問題。因此我們以企業網站上的產品介紹、使用手冊等資訊做為知識背景,並使用企業提供的FAQ進行訓練。
摘要(英) Recently, Sequence Generative Adversarial Nets is very popular. It has achieved good results in both text generation and dialog generation. Therefore, we planned to build a question answering system via SeqGAN to teach machine reading question-related documents and generate answers like human responses. The demands for smart customer service is increasing day by day. Most of the systems built by template-based method failed to response users easily whenever the question asked by user does not follow the established rule or does not exist in the database, hence they are often limited on specific tasks. To resolve the weaknesses of the template-based customer service, we try to build a customer service with question answering system based on SeqGAN.
This thesis involves three parts. The first part is the pre-training of the generator and the discriminator. The generator is a seq2seq model with GRU. Besides, we use dynamic dictionary to decrease the probability that the decoder generates wrong words. The discriminator, which is a CNN model to classify the QA pair generated by human or machine, could give reward for both fully and partially QA pairs. The second part is SeqGAN. Different from general generative adversarial training, we consider the length difference between actual answer and generated answer when calculating the reward. Experimental results proved that the proposed system improved the performance successfully. In the last part we try to build a customer service system. We crawl the information such as product information and user manuals on the company website and use FAQ provided by the company to train our model.
關鍵字(中) ★ 序列生成對抗網路
★ 動態字典
★ 問答系統
★ 智慧客服
關鍵字(英) ★ Sequence Generative Adversarial Nets
★ Dynamic dictionary
★ Question Answering
★ Customer Service
論文目次 摘要 i
Abstract ii
目錄 iii
圖目錄 iv
表目錄 v
1. 緒論 1
2. 相關研究 6
2.1. 問答系統 6
2.1.1. 模板導向 7
2.1.2. 檢索導向 7
2.1.3. 生成導向 8
2.2. 增強式學習 9
2.2.1. Monte-Carlo update vs Temporal-Difference update 10
2.2.2. Model-based vs Model-free 10
2.2.3. Policy-based vs Value-based 10
2.3. 生成對抗網路 11
2.4. 智慧客服 13
3. 系統架構 15
3.1. 生成器 15
3.2. 辨別器 17
3.3. 序列生成對抗網路 18
4. 實驗 20
4.1. 資料準備 20
4.2. 詞嵌入 21
4.3. 評估標準 22
4.4. 生成器實驗結果 22
4.5. 辨別器實驗結果 25
4.6. 序列生成對抗網路實驗結果 26
5. 智慧客服問答應用 29
6. 結論 31
7. 未來工作 32
參考文獻 33
參考文獻 [1] UNGER, Christina, et al. Template-based question answering over RDF data. In: Proceedings of the 21st international conference on World Wide Web. ACM, 2012. p. 639-648.
[2] FENG, Minwei, et al. Applying deep learning to answer selection: A study and an open task. In: Automatic Speech Recognition and Understanding (ASRU), 2015 IEEE Workshop on. IEEE, 2015. p. 813-820.
[3] TAN, Ming, et al. LSTM-based deep learning models for non-factoid answer selection. arXiv preprint arXiv:1511.04108, 2015.
[4] MIKOLOV, Tomas, et al. Distributed representations of words and phrases and their compositionality. In: Advances in neural information processing systems. 2013. p. 3111-3119.
[5] SUTSKEVER, Ilya; VINYALS, Oriol; LE, Quoc V. Sequence to sequence learning with neural networks. In: Advances in neural information processing systems. 2014. p. 3104-3112.
[6] YIN, Jun, et al. Neural generative question answering. arXiv preprint arXiv:1512.01337, 2015.
[7] MITRA, Rajarshee. An Abstractive approach to Question Answering. arXiv preprint arXiv:1711.06238, 2017.
[8] YU, Lantao, et al. SeqGAN: Sequence Generative Adversarial Nets with Policy Gradient. In: AAAI. 2017. p. 2852-2858.
[9] LI, Jiwei, et al. Adversarial learning for neural dialogue generation. arXiv preprint arXiv:1701.06547, 2017.
[10] GUYEN, Tri, et al. MS MARCO: A human generated machine reading comprehension dataset. arXiv preprint arXiv:1611.09268, 2016.
[11] MNIH, Volodymyr, et al. Asynchronous methods for deep reinforcement learning. In: International Conference on Machine Learning. 2016. p. 1928-1937.
[12] GOODFELLOW, Ian, et al. Generative adversarial nets. In: Advances in neural information processing systems. 2014. p. 2672-2680.
[13] LEDIG, Christian, et al. Photo-realistic single image super-resolution using a generative adversarial network. arXiv preprint, 2016.
[14] SHRIVASTAVA, Ashish, et al. Learning from simulated and unsupervised images through adversarial training. In: The IEEE Conference on Computer Vision and Pattern Recognition (CVPR). 2017. p. 6.
[15] ZHU, Jun-Yan, et al. Unpaired image-to-image translation using cycle-consistent adversarial networks. arXiv preprint arXiv:1703.10593, 2017.
[16] YU, Lantao, et al. SeqGAN: Sequence Generative Adversarial Nets with Policy Gradient. In: AAAI. 2017. p. 2852-2858.
[17] LI, Jiwei, et al. Adversarial learning for neural dialogue generation. arXiv preprint arXiv:1701.06547, 2017.
指導教授 張嘉惠 審核日期 2018-7-23
推文 facebook   plurk   twitter   funp   google   live   udn   HD   myshare   reddit   netvibes   friend   youpush   delicious   baidu   
網路書籤 Google bookmarks   del.icio.us   hemidemi   myshare   

若有論文相關問題,請聯絡國立中央大學圖書館推廣服務組 TEL:(03)422-7151轉57407,或E-mail聯絡  - 隱私權政策聲明