Features
Life in Madrid seen through BiciMAD
José María Mateos
发表于
This below is just an image so this looks pretty. The animation I want to publish is available here if you don’t mind going to YouTube, or here hosted on this server.
Top September Stories: Essential Math for Data Science: Why and How; Machine Learning Cheat Sheets
R Packages worth a look
Modern Nonparametric Tools for Two-Sample Quantile and Distribution Comparisons (QDComparison)Allows practitioners to determine (i) if two univariate distributions (which can be continuous, discrete, or even mixed) are equal, (ii) how two distri …
The Golden Rule of Nudge
Nudge unto others as you would have them nudge unto you.
10 Best Mobile Apps for Data Scientist / Data Analysts
By Premjith Purushothaman
Data Mining Book: Chapter Download.
Document worth reading: “Deep Learning for Generic Object Detection: A Survey”
Generic object detection, aiming at locating object instances from a large number of predefined categories in natural images, is one of the most fundamental and challenging problems in computer vision. Deep learning techniques have emerged in recent years as powerful methods for learning feature representations directly from data, and have led to remarkable breakthroughs in the field of generic object detection. Given this time of rapid evolution, the goal of this paper is to provide a comprehensive survey of the recent achievements in this field brought by deep learning techniques. More than 250 key contributions are included in this survey, covering many aspects of generic object detection research: leading detection frameworks and fundamental subproblems including object feature representation, object proposal generation, context information modeling and training strategies; evaluation issues, specifically benchmark datasets, evaluation metrics, and state of the art performance. We finish by identifying promising directions for future research. Deep Learning for Generic Object Detection: A Survey
All About Open Source
While many open source offerings fall outside the domain of data science, everyone knows that there is an open source tool (or twenty) for every data project. That’s why we commissioned 451 Research to explore the top routes to open source data science adoption.
If you did not already know
Neural Network Encapsulation
A capsule is a collection of neurons which represents different variants of a pattern in the network. The routing scheme ensures only certain capsules which resemble lower counterparts in the higher layer should be activated. However, the computational complexity becomes a bottleneck for scaling up to larger networks, as lower capsules need to correspond to each and every higher capsule. To resolve this limitation, we approximate the routing process with two branches: a master branch which collects primary information from its direct contact in the lower layer and an aide branch that replenishes master based on pattern variants encoded in other lower capsules. Compared with previous iterative and unsupervised routing scheme, these two branches are communicated in a fast, supervised and one-time pass fashion. The complexity and runtime of the model are therefore decreased by a large margin. Motivated by the routing to make higher capsule have agreement with lower capsule, we extend the mechanism as a compensation for the rapid loss of information in nearby layers. We devise a feedback agreement unit to send back higher capsules as feedback. It could be regarded as an additional regularization to the network. The feedback agreement is achieved by comparing the optimal transport divergence between two distributions (lower and higher capsules). Such an add-on witnesses a unanimous gain in both capsule and vanilla networks. Our proposed EncapNet performs favorably better against previous state-of-the-arts on CIFAR10/100, SVHN and a subset of ImageNet. …