1. An Empirical Investigation of Pre-Trained Transformer Language Models for Open-Domain Dialogue Generation [PDF] 摘要
2. A Multi-Source Entity-Level Sentiment Corpus for the Financial Domain: The FinLin Corpus [PDF] 摘要
3. Sentence Analogies: Exploring Linguistic Relationships and Regularities in Sentence Embeddings [PDF] 摘要
5. Keeping it simple: Implementation and performance of the proto-principle of adaptation and learning in the language sciences [PDF] 摘要
6. Pseudo Labeling and Negative Feedback Learning for Large-scale Multi-label Domain Classification [PDF] 摘要
8. The growing echo chamber of social media: Measuring temporal and social contagion dynamics for over 150 languages on Twitter for 2009--2020 [PDF] 摘要
10. Discovering linguistic (ir)regularities in word embeddings through max-margin separating hyperplanes [PDF] 摘要
12. General-Purpose Communicative Function Recognition using a Hierarchical Network with Cascading Outputs and Maximum a Posteriori Path Estimation [PDF] 摘要
14. A Post-processing Method for Detecting Unknown Intent of Dialogue System via Pre-trained Deep Neural Network Classifier [PDF] 摘要
【arxiv论文】 Computer Vision and Pattern Recognition 2020-03-09
目录
6. Spherical formulation of moving object geometric constraints for monocular fisheye cameras [PDF] 摘要
8. Automated detection of pitting and stress corrosion cracks in used nuclear fuel dry storage canisters using residual neural networks [PDF] 摘要
10. Can We Read Speech Beyond the Lips? Rethinking RoI Selection for Deep Visual Speech Recognition [PDF] 摘要
12. Generalizable semi-supervised learning method to estimate mass from sparsely annotated images [PDF] 摘要
20. CNN-based Repetitive self-revised learning for photos' aesthetics imbalanced classification [PDF] 摘要
24. DA4AD: End-to-end Deep Attention Aware Features Aided Visual Localization for Autonomous Driving [PDF] 摘要
32. Meta-SVDD: Probabilistic Meta-Learning for One-Class Classification in Cancer Histology Images [PDF] 摘要
33. StereoNeuroBayesSLAM: A Neurobiologically Inspired Stereo Visual SLAM System Based on Direct Sparse Method [PDF] 摘要
34. Toward Adaptive Guidance: Modeling the Variety of User Behaviors in Continuous-Skill-Improving Experiences of Machine Operation Tasks [PDF] 摘要
37. Forgetting Outside the Box: Scrubbing Deep Networks of Information Accessible from Input-Output Observations [PDF] 摘要
【arxiv论文】 Computation and Language 2020-03-09
目录
1. Distributional semantic modeling: a revised technique to train term/word vector space models applying the ontology-related approach [PDF] 摘要
6. Morfessor EM+Prune: Improved Subword Segmentation with Expectation Maximization and Pruning [PDF] 摘要
7. Sensitive Data Detection and Classification in Spanish Clinical Text: Experiments with BERT [PDF] 摘要
10. A Corpus for Detecting High-Context Medical Conditions in Intensive Care Patient Notes Focusing on Frequently Readmitted Patients [PDF] 摘要
13. EmpTransfo: A Multi-head Transformer Architecture for Creating Empathetic Dialog Systems [PDF] 摘要
14. Automatic Compilation of Resources for Academic Writing and Evaluating with Informal Word Identification and Paraphrasing System [PDF] 摘要
15. Neural Cross-Lingual Transfer and Limited Annotated Data for Named Entity Recognition in Danish [PDF] 摘要
17. Distill, Adapt, Distill: Training Small, In-Domain Models for Neural Machine Translation [PDF] 摘要
【算法】基数排序 Radix Sort
【算法】快速排序 Quick Sort
【算法】归并排序 Merge Sort
算法介绍
归并排序,也叫合并排序,中心思想是将已排好序的两个或两个以上(常为两个)数列,合并成一个大的排序数列。为了保证这两个数列是已经排好序的,需要将数列对半分,直到该数列中只包含一个数字。
视频演示
视频地址:https://www.bilibili.com/video/av18980253
python 代码
【算法】希尔排序 Shell Sort
算法介绍
希尔排序,用来解决插入排序的不足:每次只能将数据往后挪动一个位置,不能往后挪动到一个比较远的位置;用gap表示数据挪动的距离,在插入排序中,gap一直等于1,在最坏情况下,将第一个数挪动最后一个位置需要挪动 n-1 次,为方便理解,用“1位插入排序”表示“插入排序”。
希尔排序中先将gap设置为一个比较大的值,进行一次“gap位插入排序”,然后将gap变小,进行一次“gap位插入排序”,不断迭代,直到gap不大于0。
gap变化过程如下:首先将gap设置为 n//meta (meta通常为质数2),然后下次将gap设置为 gap//meta,不断重复直到gap不大于0。gap更多变化方法
【算法】插入排序 Insert Sort
算法介绍
插入排序,依次取数组元素,与已排序的数据进行逐一比较,找到该元素的合适位置,放下该元素,直到完成排序。
视频演示
视频地址:https://www.bilibili.com/video/av18980488
python代码
1 | #-*- coding: utf-8 -*- |