摘要:
最近打算入门对话系统,所以先找了一篇综述看看,需要自取:A Survey on Dialogue Systems: Recent Advances and New Frontiers 1.对话系统分类 目前的对话系统主要分为两类:task-oriented systems(有目的的对话) 和 non 阅读全文
摘要:
1 def candy(ratings): 2 result=[1 for i in range(len(ratings))] 3 for i in range(len(ratings)-1): 4 if ratings[i]>ratings[i+1] and result[i]<=result[i 阅读全文