AI Paper English F.o.R.

人工知能(AI)に関する論文を英語リーディング教本のFrame of Reference(F.o.R.)を使いこなして読むブログです。

2019-01-01から1年間の記事一覧

AlphaGo Zero | Abstract 第3文

The tree search in AlphaGo evaluated positions and selected moves using deep neural networks. David Silver, et al., "Mastering the game of Go without human knowledge" Mastering the game of Go without human knowledge | Nature 囲碁AIであるAl…

AlphaGo Zero | Abstract 第2文

Recently, AlphaGo became the first program to defeat a world champion in the game of Go. David Silver, et al., "Mastering the game of Go without human knowledge" Mastering the game of Go without human knowledge | Nature 囲碁AIであるAlphaGo…

AlphaGo Zero | Abstract 第1文

A long-standing goal of artificial intelligence is an algorithm that learns, tabula rasa, superhuman proficiency in challenging domains. David Silver, et al., "Mastering the game of Go without human knowledge" Mastering the game of Go with…

AlphaGo | Abstract 第7文

This is the first time that a computer program has defeated a human professional player in the full-sized game of Go, a feat previously thought to be at least a decade away. David Silver, et al., "Mastering the game of Go with deep neural …

AlphaGo | Abstract 第6文

Using this search algorithm, our program AlphaGo achieved a 99.8% winning rate against other Go programs, and defeated the human European Go champion by 5 games to 0. David Silver, et al., "Mastering the game of Go with deep neural network…

AlphaGo | Abstract 第5文

We also introduce a new search algorithm that combines Monte Carlo simulation with value and policy networks. David Silver, et al., "Mastering the game of Go with deep neural networks and tree search" https://www.nature.com/articles/nature…

AlphaGo | Abstract 第4文

Without any lookahead search, the neural networks play Go at the level of state-of-the-art Monte Carlo tree search programs that simulate thousands of random games of self-play. David Silver, et al., "Mastering the game of Go with deep neu…

AlphaGo | Abstract 第3文

These deep neural networks are trained by a novel combination of supervised learning from human expert games, and reinforcement learning from games of self-play. David Silver, et al., "Mastering the game of Go with deep neural networks and…

AlphaGo | Abstract 第2文

Here we introduce a new approach to computer Go that uses ‘value networks’ to evaluate board positions and ‘policy networks’ to select moves. David Silver, et al., "Mastering the game of Go with deep neural networks and tree search" https:…

AlphaGo | Abstract 第1文

The game of Go has long been viewed as the most challenging of classic games for artificial intelligence owing to its enormous search space and the difficulty of evaluating board positions and moves. David Silver, et al., "Mastering the ga…

Fast R-CNN | Abstract 第6文

Fast R-CNN is implemented in Python and C++ (using Caffe) and is available under the open-source MIT License at https: //github.com/rbgirshick/fast-rcnn. Ross Girshick, "Fast R-CNN" https://arxiv.org/abs/1504.08083 物体検出タスクにおいて、…

Fast R-CNN | Abstract 第5文

Compared to SPPnet, Fast R-CNN trains VGG16 3× faster, tests 10× faster, and is more accurate. Ross Girshick, "Fast R-CNN" https://arxiv.org/abs/1504.08083 物体検出タスクにおいて、特徴マップの再利用によってR-CNNよりも高速化に成功した"Fast …

Fast R-CNN | Abstract 第4文

Fast R-CNN trains the very deep VGG16 network 9× faster than R-CNN, is 213× faster at test-time, and achieves a higher mAP on PASCAL VOC 2012. Ross Girshick, "Fast R-CNN" https://arxiv.org/abs/1504.08083 物体検出タスクにおいて、特徴マップ…

Fast R-CNN | Abstract 第3文

Compared to previous work, Fast R-CNN employs several innovations to improve training and testing speed while also increasing detection accuracy. Ross Girshick, "Fast R-CNN" https://arxiv.org/abs/1504.08083 物体検出タスクにおいて、特徴マッ…

Fast R-CNN | Abstract 第2文

Fast R-CNN builds on previous work to efficiently classify object proposals using deep convolutional networks. Ross Girshick, "Fast R-CNN" https://arxiv.org/abs/1504.08083 物体検出タスクにおいて、特徴マップの再利用によってR-CNNよりも高速化…

Fast R-CNN | Abstract 第1文

This paper proposes a Fast Region-based Convolutional Network method (Fast R-CNN) for object detection. Ross Girshick, "Fast R-CNN" https://arxiv.org/abs/1504.08083 物体検出タスクにおいて、特徴マップの再利用によってR-CNNよりも高速化に成功…

R-CNN | Abstract 第8文

Source code for the complete system is available at http://www.cs.berkeley.edu/~rbg/rcnn. Ross Girshick, et al., "Rich feature hierarchies for accurate object detection and semantic segmentation" https://arxiv.org/abs/1311.2524 物体検出に…

R-CNN | Abstract 第7文

We find that R-CNN outperforms OverFeat by a large margin on the 200-class ILSVRC2013 detection dataset. Ross Girshick, et al., "Rich feature hierarchies for accurate object detection and semantic segmentation" https://arxiv.org/abs/1311.2…

R-CNN | Abstract 第6文

We also compare R-CNN to OverFeat, a recently proposed sliding-window detector based on a similar CNN architecture. Ross Girshick, et al., "Rich feature hierarchies for accurate object detection and semantic segmentation" https://arxiv.org…

R-CNN | Abstract 第5文

Since we combine region proposals with CNNs, we call our method R-CNN: Regions with CNN features. Ross Girshick, et al., "Rich feature hierarchies for accurate object detection and semantic segmentation" https://arxiv.org/abs/1311.2524 物…

R-CNN | Abstract 第4文

Our approach combines two key insights: (1) one can apply high-capacity convolutional neural networks (CNNs) to bottom-up region proposals in order to localize and segment objects and (2) when labeled training data is scarce, supervised pr…

R-CNN | Abstract 第3文

In this paper, we propose a simple and scalable detection algorithm that improves mean average precision (mAP) by more than 30% relative to the previous best result on VOC 2012—achieving a mAP of 53.3%. Ross Girshick, et al., "Rich feature…

R-CNN | Abstract 第2文

The best-performing methods are complex ensemble systems that typically combine multiple low-level image features with high-level context. Ross Girshick, et al., "Rich feature hierarchies for accurate object detection and semantic segmenta…

R-CNN | Abstract 第1文

Object detection performance, as measured on the canonical PASCAL VOC dataset, has plateaued in the last few years. Ross Girshick, et al., "Rich feature hierarchies for accurate object detection and semantic segmentation" https://arxiv.org…

Transformer | Title "Attention is all you need."

Attention is all you need. Ashish Vaswani, et al., "Attention Is All You Need" https://arxiv.org/abs/1706.03762 RNNやCNNを使わず、Attentionのみを使用した機械翻訳モデルであるTransformerの論文の"Attention Is All You Need"のTitleについて、英…

Haar-like | Abstract 第8文

Used in real-time applications, the detector runs at 15 frames per second without resorting to image differencing or skin color detection. Paul Viola and Michael Jones, "Rapid Object Detection using a Boosted Cascade of Simple Features" ht…

Haar-like | Abstract 第7文

In the domain of face detection the system yields detection rates comparable to the best previous systems. Paul Viola and Michael Jones, "Rapid Object Detection using a Boosted Cascade of Simple Features" https://www.cs.cmu.edu/~efros/cour…

Haar-like | Abstract 第6文

The cascade can be viewed as an object specific focus-of-attention mechanism which unlike previous approaches provides statistical guarantees that discarded regions are unlikely to contain the object of interest. Paul Viola and Michael Jon…

Haar-like | Abstract 第5文

The third contribution is a method for combining increasingly more complex classifiers in a “cascade” which allows background regions of the image to be quickly discarded while spending more computation on promising object-like regions. Pa…

Haar-like | Abstract 第4文

The second is a learning algorithm, based on AdaBoost, which selects a small number of critical visual features from a larger set and yields extremely efficient classifiers. Paul Viola and Michael Jones, "Rapid Object Detection using a Boo…