- Aug 2024
-
www.swissre.com www.swissre.com
-
whichecosystem services are most relevant for the re/insurance industry – for risk assessment,underwriting and investment allocation? Figure 1 shows those services we identified as mostrelevant to re/insurance
for - biodiversity ecosystem services - most relevant for insurance industry
biodiversity ecosystem services - most relevant for insurance industry - Intact habitat - respiratory disease claims are one of the key driver of insurance claims worldwide. Intact forests are a key air purifier - Pollination - stats - global annual economic cost of insect pollinators - 235 to 577 billion USD - OECD 2019 - Air quality and local climate - (see above) - Water security - Water quality - Soil fertility - Erosion control - coastal / river-bordering forests / mangroves provide key erosion protection. - roots build a natural bulwark against waves and can store water during heavy rainfall - where forests (and mangroves) have disappeared, landslides and storm surges are more common and can move further inland, causing property losses covered by insurance - Coastal protection - (see above) - Food provision - Timber provision
question - valuable ecosystem services identified for insurance industry - what about minerals?
-
- Dec 2023
-
stackoverflow.com stackoverflow.com
-
A "piece of code" is worth a thousand words. All the verbosity in the previous answers didn't light the bulb in my head the way this piece of code did. And now that that verbosity makes absolutely perfect sense :)
-
- Jun 2021
-
github.com github.com
-
Forcing people out of the habit to assume this branch would be called master, is a valuable lesson.
-
- Sep 2020
-
github.com github.com
-
Please focus on explaining the motivation so that if this RFC is not accepted, the motivation could be used to develop alternative solutions. In other words, enumerate the constraints you are trying to solve without coupling them too closely to the solution you have in mind.
-
A huge part of the value on an RFC is defining the problem clearly, collecting use cases, showing how others have solved a problem, etc.
-
An RFC can provide tremendous value without the design described in it being accepted.
Tags
- iterative process
- answer the "why?"
- contribution guidelines: should explain motivation for change
- iterative process: building on previous attempts/work
- value
- defining the problem clearly is as valuable coming up with specific implementation/solution
- okay for proposal to not be accepted
- defining the problem clearly
Annotators
URL
-
- Jun 2019
-
mises-media.s3.amazonaws.com mises-media.s3.amazonaws.com
-
valuable
extremely useful or important.
-
- Mar 2019
-
searchworks.stanford.edu searchworks.stanford.edu
-
search stanford thesis
Tags
Annotators
URL
-
-
cjc.ict.ac.cn cjc.ict.ac.cn
-
深度文本匹配综述
-
-
github.com github.com
-
reinforcement-learning code and paper tutorials
-
-
arxiv.org arxiv.org
-
A Comparative Study of Neural Network Models for Sentence Classification
Tags
Annotators
URL
-
-
arxiv.org arxiv.org
-
BACKGROUND: ATTENTIONNETWORKS
Tags
Annotators
URL
-
-
-
LSTM Derivations
-
-
jalammar.github.io jalammar.github.io
-
博客很赞!
-
-
emnlp2014.org emnlp2014.org
-
Learning Phrase Representations using RNN Encoder–Decoder for Statistical Machine Translation
Tags
Annotators
URL
-
-
www.csie.ntu.edu.tw www.csie.ntu.edu.tw寬螢幕簡報1
-
Deep Learning for Dialogue Systems
-
-
www.csie.ntu.edu.tw www.csie.ntu.edu.tw
-
Deep Learning for Dialogue Systems
-
-
arxiv.org arxiv.org
-
BERT for Joint Intent Classification and Slot Filling
Tags
Annotators
URL
-
-
arxiv.org arxiv.org
-
The goal here is explicitly not to improve the state of the art in the narrow domain of restaurantbooking, but to take a narrow domain where traditional handcrafted dialog systems are known toperform well, and use that to gauge the strengths and weaknesses of current end-to-end systemswith no domain knowledge
本文的目标不是来提升在狭窄的酒店预定领域的效果,而是用一个传统的手工系统就有较好系统来对比没有领域知识的end-to-end系统的优劣。
MEMORYNETWORKS
-
LEARNING END-TO-END GOAL-ORIENTED DIALOG
Tags
Annotators
URL
-
-
-
A Network-based End-to-End Trainable Task-oriented Dialogue System
这个end-to-end的系统,在意图识别的阶段用的是cnn+LSTM 在状态管理(belief state tracking)也用的LSTM,在policy的时候自定义了一套算法,将前面的几个输出向量做了个线性模型,输出。
-
-
aclanthology.org aclanthology.org
-
End-to-End Learning of Task-Oriented Dialogs
端到端的task类型对话的鼻祖
Tags
Annotators
URL
-
-
arxiv.org arxiv.org
-
Dialogue Learning with Human Teaching and Feedback in End-to-End Trainable Task-Oriented Dialogue Systems
一个混合学习过程,在人类的指导教育和反馈下增强强化学习的过程
Tags
Annotators
URL
-
-
arxiv.org arxiv.org
-
Attention-Based Recurrent Neural Network Models for Joint Intent Detection and Slot Filling
用一个模型来解决两个不同类型的问题,intent detect是分类,填槽是序列标注。都用基于attention机制的RNN来搞定了
Tags
Annotators
URL
-
-
gitee.com gitee.com
-
CHATBOT: Architecture, Design,& Development
-
-
tcci.ccf.org.cn tcci.ccf.org.cn
-
The Sogou Spoken Language Understanding System for the NLPCC 2018 Evaluation
-
The first step is lexical analysis, i.e. word segmentation and part-of-speech (POS)tagging. The words and POS labels are used as features in the subsequent models. Forthe shared task we used HanLP [1] as our Chinese lexical analyzer.
SLU 模型做法:
1 第一步是词汇分析,也就是分词,然后词性标注。本文用的是HanLP做词性分析。
2 第二步是槽位边界检测。这个任务看成一个用BILOU进行序列标注的。我们用了基于字和词的序列标注。基于字的 版本是用一个window为7的CRF,用此法特征和词典特征,另外基于词的的CRF模型是window size为5的词法特征,词性特征和词典特征。词典特征是指“当前字词是否 prefix/infix/suffix 在实体词典中某个条目关系。”每个CRF输出n(3)个输出,这整个2n个输出用到下一步。用基于字的序列标注是为了弥补分词效果差带来的可能影响。
3 第三部是槽位类型识别。用的是LR+L正则分类器,预测出的slot,上下文的字词,上下文的词性标注作为特征。
4 第四步是槽位纠正。这个是为了解决因为ASR导致的错误识别造成的结果。用的是一个基于搜索的方法。鉴于已经有各种槽位类型的词典,如果一个预测出来的槽位s类型T没有在对应的槽位词典中,那么就用s作为查询词来在根据最小编辑距离来查询槽位词典中的记录。这个操作会进行两次,一个是s作为中文字符,另一个是s作为拼音来查询。最好的结果是从这两个查处的结果中重新排序后得到的。
5 最后一步是意图分类。用的是XGBoost及其默认参数。用到的特征是单词token,query length,以及前面步骤预测出来的槽位。
-
-
gitee.com gitee.com
-
-
TASK-ORIENTED DIALOGUESYSTEMSTask-oriented dialogue systems have been an important branchof spoken dialogue systems. In this section, we will reviewpipeline and end-to-end methods for task-oriented dialoguesystems.
任务型对话系统整体来说可以分为两类:
- 1 pipeline,也就是包含SLU+DST+PL+NLG
- 2 end-to-end
-
- Feb 2019
-
tcci.ccf.org.cn tcci.ccf.org.cn
-
Spoken language understanding (SLU) comprises two tasks, intent identification andslot filling. That is, given the current query along with the previous queries in the samesession, an SLU system predicts the intent of the current query and also all slots (entitiesor labels) associated with the predicted intent. The significance of SLU lies in that eachtype of intent corresponds to a particular service API and the slots correspond to theparameters required by this API. SLU helps the dialog system to decide how to satisfythe user’s need by calling the right service with the right information
SLU有俩事,意图识别+填槽。
实践中的困难:
- 1 意图分类的复杂性
- 2 世界知识
- 3 用户状态
-
-
cjc.ict.ac.cn cjc.ict.ac.cn
-
任务型人机对话系统中的认知技术
-
-
www.aclweb.org www.aclweb.org
-
PyDial: A Multi-domain Statistical Dialogue System Toolkit
一个开源的端到端的统计对话系统工具。
- http://pydial.org
- https://github.com/claycollier/pydial
- https://bitbucket.org/dialoguesystems/pydial.git
其总的架构包含Sematic Decode,Belief Tracker,Policy Reply System,Language generator. 整体来说整个系统都支持了基于规则的判断过程,也融合了模型的支持。源码值得一看的。
Tags
Annotators
URL
-
-
www.iro.umontreal.ca www.iro.umontreal.ca1
-
Using Recurrent Neural Networks for Slot Filling in Spoken Language Understanding
-
-
www.aclweb.org www.aclweb.org
-
Open-Domain Neural Dialogue Systems
Tags
Annotators
URL
-
-
-
From Eliza to XiaoIce: Challenges and Opportunities with Social Chatbots
对话系统的一个综述性paper
- 1 https://www.apple.com/ios/siri/
- 2 https://www.microsoft.com/en-us/cortana/
- 4 https://assistant.google.com/4https://developers.facebook.com/blog/post/2016/04/12/
- 5 https://developer.amazon.com/alexa/
- 6 https://www.msXiaoIce.com/
- https://www.cs.cmu.edu/afs/cs/project/ai-repository/ai/areas/classics/parry/0.html
-
-
-
DocChat: An Information Retrieval Approach for Chatbot EnginesUsing Unstructured Documents
用BM25来获取备选项。
构建了word-level,phrase-level,sentence-level,document-level,relation-level,type-levelandtopic-level的特征来训练排序模型
最有用的是sentence level的特征。
-
- May 2018
-
blackboard.gwu.edu blackboard.gwu.edu
-
The better a designer understands his or her audience and the unique needs of that particular audience, the more efficiently and effectively he or she will be able to develop, design, implement, and evaluate instructional materials in a rapid format.
-